Deleted Added
full compact
Makefile (112008) Makefile (151350)
1# $FreeBSD: head/sys/modules/netgraph/iface/Makefile 112008 2003-03-08 21:54:32Z jlemon $
1# $FreeBSD: head/sys/modules/netgraph/iface/Makefile 151350 2005-10-14 23:30:17Z yar $
2# $Whistle: Makefile,v 1.2 1999/01/19 19:39:21 archie Exp $
3
4KMOD= ng_iface
5SRCS= ng_iface.c opt_atalk.h opt_inet.h opt_inet6.h opt_ipx.h
6
2# $Whistle: Makefile,v 1.2 1999/01/19 19:39:21 archie Exp $
3
4KMOD= ng_iface
5SRCS= ng_iface.c opt_atalk.h opt_inet.h opt_inet6.h opt_ipx.h
6
7.if !defined(KERNBUILDDIR)
7opt_atalk.h:
8 echo "#define NETATALK 1" > ${.TARGET}
9
10opt_inet.h:
11 echo "#define INET 1" > ${.TARGET}
12
13opt_inet6.h:
14 echo "#define INET6 1" > ${.TARGET}
15
16opt_ipx.h:
17 echo "#define IPX 1" > ${.TARGET}
8opt_atalk.h:
9 echo "#define NETATALK 1" > ${.TARGET}
10
11opt_inet.h:
12 echo "#define INET 1" > ${.TARGET}
13
14opt_inet6.h:
15 echo "#define INET6 1" > ${.TARGET}
16
17opt_ipx.h:
18 echo "#define IPX 1" > ${.TARGET}
19.endif
18
19.include <bsd.kmod.mk>
20
21.include <bsd.kmod.mk>