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