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