diff options
Diffstat (limited to 'sys/modules/thunderbolt/Makefile')
-rw-r--r-- | sys/modules/thunderbolt/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/modules/thunderbolt/Makefile b/sys/modules/thunderbolt/Makefile new file mode 100644 index 000000000000..3b279f4352d4 --- /dev/null +++ b/sys/modules/thunderbolt/Makefile @@ -0,0 +1,13 @@ +.PATH: ${SRCTOP}/sys/dev/thunderbolt + +KMOD= tb +SRCS= nhi_pci.c nhi.c tb_pcib.c tb_acpi_pcib.c tb_debug.c nhi_wmi.c +SRCS+= router.c hcm.c tb_dev.c +SRCS+= opt_thunderbolt.h +SRCS+= device_if.h bus_if.h pci_if.h pcib_if.h tb_if.c tb_if.h +SRCS+= opt_acpi.h opt_acpi_wmi.h acpi_if.h acpi_wmi_if.h + +opt_thunderbolt.h: + echo "#define THUNDERBOLT_DEBUG 1" > ${.TARGET} + +.include <bsd.kmod.mk> |