Resurrect code mistakenly #ifdef'd out before.
[dragonfly.git] / sys / net / gre / Makefile
blob8f19ed1ad86e9f77cefab5a07889f4e5b154f5d6
1 # $FreeBSD$
2 # $DragonFly: src/sys/net/gre/Makefile,v 1.3 2006/10/25 20:56:03 dillon Exp $
4 .PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet
6 KMOD= if_gre
7 SRCS= if_gre.c ip_gre.c opt_inet.h opt_ns.h opt_atalk.h
8 SRCS+= device_if.h bus_if.h
10 .if !defined(BUILDING_WITH_KERNEL)
11 opt_inet.h:
12 echo "#define INET 1" > ${.TARGET}
14 opt_ns.h:
15 echo "#define NS 1" > ${.TARGET}
17 opt_atalk.h:
18 echo "#define NETATALK 1" > ${.TARGET}
19 .endif
21 .include <bsd.kmod.mk>