Makefile revision 151350
12834Swollman# $FreeBSD: head/sys/modules/en/Makefile 151350 2005-10-14 23:30:17Z yar $
22834Swollman
32834Swollman.PATH: ${.CURDIR}/../../dev/en
42834Swollman
52834SwollmanKMOD=	if_en
62834SwollmanSRCS=	if_en_pci.c midway.c device_if.h bus_if.h pci_if.h
72834SwollmanSRCS+=	opt_inet.h opt_natm.h opt_ddb.h
82834SwollmanCFLAGS+= -DENABLE_BPF
92834Swollman# CFLAGS+= -DINVARIANT_SUPPORT -DINVARIANTS -DEN_DEBUG=0
10
11.if !defined(KERNBUILDDIR)
12opt_inet.h:
13	echo "#define INET 1" > ${.TARGET}
14
15opt_natm.h:
16	echo "#define NATM 1" > ${.TARGET}
17
18# opt_ddb.h:
19# 	echo "#define DDB 1" > ${.TARGET}
20.endif
21
22.include <bsd.kmod.mk>
23