e43b65f951
going by example.
20 lines
324 B
Makefile
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>
|