ad560dee55
A module makefile must list all the header files it uses which are generated at build time from interface definitions (.m files) in its SRCS list. Fixes: 5ad6d28cbe6b ("enetc: Support building the driver as a loadable module.")
10 lines
188 B
Makefile
10 lines
188 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/enetc
|
|
|
|
KMOD = if_enetc
|
|
SRCS = if_enetc.c enetc_mdio.c
|
|
SRCS += bus_if.h device_if.h ifdi_if.h miibus_if.h ofw_bus_if.h pci_if.h
|
|
|
|
.include <bsd.kmod.mk>
|