summaryrefslogtreecommitdiff
path: root/sys/modules/spe/Makefile
blob: da4035620bbfcf8a4e85c28dc213cc6a4737b1c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $FreeBSD$

.PATH:  ${SRCTOP}/sys/arm64/spe

KMOD   = spe
SRCS   = \
	arm_spe_dev.c \
	arm_spe_backend.c \
	arm_spe.h \
	arm_spe_dev.h

SRCS+= opt_platform.h

SRCS.DEV_ACPI= \
	arm_spe_acpi.c

.if !empty(OPT_FDT)
SRCS+= \
	arm_spe_fdt.c
.endif

EXPORT_SYMS=   YES

.include <bsd.kmod.mk>