- Fix make in sys/modules

Reviewed by:	gonzo, landonf, br
Differential Revision:	https://reviews.freebsd.org/D13856
This commit is contained in:
Li-Wen Hsu 2018-01-12 12:14:14 +00:00
parent ac9b43252a
commit 4f23702a7a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327872
4 changed files with 5 additions and 1 deletions

View File

@ -18,6 +18,7 @@ SRCS+= chipc.c chipc_subr.c
SRCS+= chipc_gpio.c
SRCS+= gpio_if.h ofw_bus_if.h
SRCS+= opt_platform.h
SRCS+= bhnd_sprom_chipc.c \
bhnd_pmu_chipc.c

View File

@ -4,6 +4,7 @@
KMOD= sdhci_acpi
SRCS= sdhci_acpi.c sdhci.h sdhci_if.h
SRCS+= acpi_if.h device_if.h bus_if.h opt_acpi.h pci_if.h mmcbr_if.h
SRCS+= acpi_if.h device_if.h bus_if.h pci_if.h mmcbr_if.h
SRCS+= opt_acpi.h opt_mmccam.h
.include <bsd.kmod.mk>

View File

@ -4,5 +4,6 @@
KMOD= sdhci_pci
SRCS= sdhci_pci.c sdhci.h sdhci_if.h device_if.h bus_if.h pci_if.h mmcbr_if.h
SRCS+= opt_mmccam.h
.include <bsd.kmod.mk>

View File

@ -4,6 +4,7 @@
KMOD= sgx
SRCS= sgx.c sgxvar.h assym.s sgx_support.S
SRCS+= opt_compat.h opt_hwpmc_hooks.h opt_kstack_pages.h
sgx_support.o: assym.s
${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \