xref: /dragonfly/sys/netgraph/iface/Makefile (revision e65bc1c3)
1# $FreeBSD: src/sys/modules/netgraph/iface/Makefile,v 1.5.2.4 2001/12/21 09:00:48 ru Exp $
2# $Whistle: Makefile,v 1.2 1999/01/19 19:39:21 archie Exp $
3
4KMOD=		ng_iface
5SRCS= 		ng_iface.c opt_inet.h opt_inet6.h opt_ipx.h
6
7.if !defined(BUILDING_WITH_KERNEL)
8opt_inet.h:
9	echo "#define INET 1" > ${.TARGET}
10
11opt_inet6.h:
12	echo "#define INET6 1" > ${.TARGET}
13
14opt_ipx.h:
15	echo "#define IPX 1" > ${.TARGET}
16.endif
17
18.include <bsd.kmod.mk>
19