mirror of
https://github.com/opnsense/src.git
synced 2026-07-15 04:01:09 -04:00
Multiple Makefile miss opt_*.h and *_if.h header file. We fix it by running make in sys/modules to build all modules. Approved by: lwhsu (mentor), markj (mentor) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D52062
9 lines
231 B
Makefile
9 lines
231 B
Makefile
.PATH: ${SRCTOP}/sys/dev/etherswitch
|
|
|
|
KMOD = etherswitch
|
|
|
|
SRCS= etherswitch.c
|
|
SRCS+= bus_if.h device_if.h mdio_if.h miibus_if.h etherswitch_if.h etherswitch_if.c
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/etherswitch
|
|
|
|
.include <bsd.kmod.mk>
|