Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / sys / net / gif / Makefile
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.2 2003/06/17 04:28:44 dillon Exp $
3
4 .PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
5
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 NOMAN=
9
10 opt_inet.h:
11         echo "#define INET 1" > ${.TARGET}
12
13 opt_inet6.h:
14         echo "#define INET6 1" > ${.TARGET}
15
16 opt_mrouting.h:
17         echo "#define MROUTING 1" > ${.TARGET}
18
19 .include <bsd.kmod.mk>