Makefile revision 114018
1# $FreeBSD: head/sys/modules/en/Makefile 114018 2003-04-25 16:14:03Z harti $
2
3.PATH: ${.CURDIR}/../../pci ${.CURDIR}/../../dev/en
4
5KMOD=	if_en
6SRCS=	if_en_pci.c midway.c device_if.h bus_if.h pci_if.h
7SRCS+=	opt_inet.h opt_natm.h opt_ddb.h
8CFLAGS+= -DENABLE_BPF
9# CFLAGS+= -DINVARIANTS -DEN_DEBUG=0
10
11opt_inet.h:
12	echo "#define INET 1" > ${.TARGET}
13
14opt_natm.h:
15	echo "#define NATM 1" > ${.TARGET}
16
17# opt_ddb.h:
18# 	echo "#define DDB 1" > ${.TARGET}
19
20.include <bsd.kmod.mk>
21