xref: /freebsd/sys/modules/spe/Makefile (revision 68f185ccc9f8f9498d536f4737d888b37cf11882)
1# $FreeBSD$
2
3.PATH:  ${SRCTOP}/sys/arm64/spe
4
5KMOD   = spe
6SRCS   = \
7	arm_spe_dev.c \
8	arm_spe_backend.c \
9	arm_spe.h \
10	arm_spe_dev.h
11
12SRCS+= opt_platform.h
13
14SRCS.DEV_ACPI= \
15	arm_spe_acpi.c
16
17.if !empty(OPT_FDT)
18SRCS+= \
19	arm_spe_fdt.c
20.endif
21
22EXPORT_SYMS=   YES
23
24.include <bsd.kmod.mk>
25