xref: /freebsd/sys/modules/netgraph/gif/Makefile (revision aa0a1e58)
1# $FreeBSD$
2
3KMOD=	ng_gif
4SRCS= 	ng_gif.c opt_inet.h opt_inet6.h
5
6.if !defined(KERNBUILDDIR)
7opt_inet.h:
8	echo "#define INET 1" > ${.TARGET}
9
10opt_inet6.h:
11	echo "#define INET6 1" > ${.TARGET}
12.endif
13
14.include <bsd.kmod.mk>
15