diff options
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/Makefile | 6 | ||||
-rw-r--r-- | sys/modules/dtb/mv/Makefile | 7 | ||||
-rw-r--r-- | sys/modules/hyperv/vmbus/Makefile | 1 | ||||
-rw-r--r-- | sys/modules/iwm/Makefile | 4 | ||||
-rw-r--r-- | sys/modules/mmcsd/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/tests/Makefile | 9 |
6 files changed, 24 insertions, 5 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 73c35f6bac80..ce843a51adaa 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -356,8 +356,6 @@ SUBDIR= \ sysvipc \ tcp \ ${_ti} \ - tests/framework \ - tests/callout_test \ tl \ tmpfs \ ${_toecore} \ @@ -516,6 +514,10 @@ _rtwnfw= rtwnfw _cxgbe= cxgbe .endif +.if ${MK_TESTS} != "no" || defined(ALL_MODULES) +SUBDIR+= tests +.endif + .if ${MK_ZFS} != "no" || defined(ALL_MODULES) SUBDIR+= zfs .endif diff --git a/sys/modules/dtb/mv/Makefile b/sys/modules/dtb/mv/Makefile new file mode 100644 index 000000000000..8086f3397ade --- /dev/null +++ b/sys/modules/dtb/mv/Makefile @@ -0,0 +1,7 @@ +# $FreeBSD$ +# All the dts files for Marvell systems we support. +DTS= \ + armada-388-clearfog.dts \ + armada-388-gp.dts + +.include <bsd.dtb.mk> diff --git a/sys/modules/hyperv/vmbus/Makefile b/sys/modules/hyperv/vmbus/Makefile index e05ce851a4f8..944bf75b0e7b 100644 --- a/sys/modules/hyperv/vmbus/Makefile +++ b/sys/modules/hyperv/vmbus/Makefile @@ -12,6 +12,7 @@ SRCS= hyperv.c \ vmbus_chan.c \ vmbus_et.c \ vmbus_if.c \ + vmbus_res.c \ vmbus_xact.c SRCS+= acpi_if.h bus_if.h device_if.h opt_acpi.h pci_if.h pcib_if.h vmbus_if.h diff --git a/sys/modules/iwm/Makefile b/sys/modules/iwm/Makefile index 2952af086e1b..264580b14851 100644 --- a/sys/modules/iwm/Makefile +++ b/sys/modules/iwm/Makefile @@ -7,10 +7,10 @@ KMOD= if_iwm SRCS= if_iwm.c if_iwm_binding.c if_iwm_util.c if_iwm_phy_db.c SRCS+= if_iwm_mac_ctxt.c if_iwm_phy_ctxt.c if_iwm_time_event.c SRCS+= if_iwm_power.c if_iwm_scan.c if_iwm_led.c if_iwm_notif_wait.c -SRCS+= if_iwm_7000.c if_iwm_8000.c if_iwm_fw.c +SRCS+= if_iwm_7000.c if_iwm_8000.c if_iwm_fw.c if_iwm_sta.c # bus layer SRCS+= if_iwm_pcie_trans.c -SRCS+= device_if.h bus_if.h pci_if.h opt_wlan.h +SRCS+= device_if.h bus_if.h pci_if.h opt_wlan.h opt_iwm.h CFLAGS+= -DIWM_DEBUG diff --git a/sys/modules/mmcsd/Makefile b/sys/modules/mmcsd/Makefile index 4573fc37dc22..4294c593b755 100644 --- a/sys/modules/mmcsd/Makefile +++ b/sys/modules/mmcsd/Makefile @@ -3,6 +3,6 @@ .PATH: ${SRCTOP}/sys/dev/mmc KMOD= mmcsd -SRCS= bus_if.h device_if.h mmc_subr.c mmcbr_if.h mmcbus_if.h mmcsd.c +SRCS= bus_if.h device_if.h mmcbr_if.h mmcbus_if.h mmcsd.c .include <bsd.kmod.mk> diff --git a/sys/modules/tests/Makefile b/sys/modules/tests/Makefile new file mode 100644 index 000000000000..8b5bf36f63fc --- /dev/null +++ b/sys/modules/tests/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +SUBDIR+= framework +SUBDIR+= .WAIT +SUBDIR+= callout_test + +SUBDIR_PARALLEL= + +.include <bsd.subdir.mk> |