linprocfs - Introduce /proc/mounts
[dragonfly.git] / sys / net / gif / Makefile
blob901118349e021fa8125451c25591b46a21d43dae
1 # $FreeBSD: src/sys/modules/if_gif/Makefile,v 1.1.2.1 2001/07/24 19:10:17 brooks Exp $
2 # $DragonFly: src/sys/net/gif/Makefile,v 1.4 2006/10/25 20:56:02 dillon Exp $
4 .PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
6 KMOD= if_gif
7 SRCS= if_gif.c in_gif.c in6_gif.c opt_inet.h opt_inet6.h opt_mrouting.h
8 SRCS+= device_if.h bus_if.h
10 .if !defined(BUILDING_WITH_KERNEL)
11 opt_inet.h:
12 echo "#define INET 1" > ${.TARGET}
14 opt_inet6.h:
15 echo "#define INET6 1" > ${.TARGET}
17 opt_mrouting.h:
18 echo "#define MROUTING 1" > ${.TARGET}
19 .endif
21 .include <bsd.kmod.mk>