1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6 4 5KMOD= if_gif 6SRCS= if_gif.c in_gif.c in6_gif.c opt_inet.h opt_inet6.h opt_mrouting.h 7 8opt_inet.h: 9 echo "#define INET 1" > ${.TARGET} 10 11opt_inet6.h: 12 echo "#define INET6 1" > ${.TARGET} 13 14opt_mrouting.h: 15 echo "#define MROUTING 1" > ${.TARGET} 16 17.include <bsd.kmod.mk> 18