0873022e14933e87bec11e5f6eb3b45c975965f8
[dragonfly.git] / sys / netgraph7 / iface / Makefile
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
4 KMOD=           ng_iface
5 SRCS=           ng_iface.c opt_inet.h opt_inet6.h opt_ipx.h
6 KMODDEPS=       netgraph
7
8 .if !defined(BUILDING_WITH_KERNEL)
9 opt_inet.h:
10         echo "#define INET 1" > opt_inet.h
11
12 opt_inet6.h:
13         echo "#define INET6 1" > opt_inet6.h
14
15 opt_ipx.h:
16         echo "#define IPX 1" > opt_ipx.h
17 .endif
18
19 .include <bsd.kmod.mk>