57112b8d4a
so that all of the driver sources are in one place. Adjust the configuration files and the module build.
21 lines
385 B
Makefile
21 lines
385 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/en
|
|
|
|
KMOD= if_en
|
|
SRCS= if_en_pci.c midway.c device_if.h bus_if.h pci_if.h
|
|
SRCS+= opt_inet.h opt_natm.h opt_ddb.h
|
|
CFLAGS+= -DENABLE_BPF
|
|
# CFLAGS+= -DINVARIANTS -DEN_DEBUG=0
|
|
|
|
opt_inet.h:
|
|
echo "#define INET 1" > ${.TARGET}
|
|
|
|
opt_natm.h:
|
|
echo "#define NATM 1" > ${.TARGET}
|
|
|
|
# opt_ddb.h:
|
|
# echo "#define DDB 1" > ${.TARGET}
|
|
|
|
.include <bsd.kmod.mk>
|