xref: /freebsd/sys/modules/if_gre/Makefile (revision 81d1ffee089aab2652954909acbe6aadd8a1a72c)
1# $FreeBSD$
2
3.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet
4
5KMOD=	if_gre
6SRCS=	if_gre.c ip_gre.c opt_inet.h opt_atalk.h
7
8opt_inet.h:
9	echo "#define INET 1" > ${.TARGET}
10
11opt_atalk.h:
12	echo "#define NETATALK 1" > ${.TARGET}
13
14.include <bsd.kmod.mk>
15