Makefile revision 104366
1# $FreeBSD: head/sys/modules/if_gre/Makefile 104366 2002-10-02 09:38:17Z sobomax $
2
3.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet 
4
5KMOD=	if_gre
6SRCS=	if_gre.c ip_gre.c opt_inet.h opt_ns.h opt_atalk.h
7
8opt_inet.h:
9	echo "#define INET 1" > ${.TARGET}
10
11opt_ns.h:
12	echo "#define NS 1" > ${.TARGET}
13
14opt_atalk.h:
15	echo "#define NETATALK 1" > ${.TARGET}
16
17.include <bsd.kmod.mk>
18