mirror of
https://github.com/opnsense/src.git
synced 2026-06-22 23:19:17 -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
194 B
Makefile
9 lines
194 B
Makefile
.PATH: ${SRCTOP}/sys/dev/etherswitch
|
|
|
|
KMOD = miiproxy
|
|
|
|
SRCS= miiproxy.c
|
|
SRCS+= bus_if.h mdio_if.h miibus_if.h opt_platform.h
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/etherswitch
|
|
|
|
.include <bsd.kmod.mk>
|