freebsd-skq/sys/modules/if_gif/Makefile
2014-12-26 00:01:00 +00:00

20 lines
324 B
Makefile

# $FreeBSD$
SYSDIR?=${.CURDIR}/../..
.include "${SYSDIR}/conf/kern.opts.mk"
.PATH: ${SYSDIR}/net ${SYSDIR}/netinet ${SYSDIR}/netinet6
KMOD= if_gif
SRCS= if_gif.c opt_inet.h opt_inet6.h
.if ${MK_INET_SUPPORT} != "no"
SRCS+= in_gif.c
.endif
.if ${MK_INET6_SUPPORT} != "no"
SRCS+= in6_gif.c
.endif
.include <bsd.kmod.mk>