]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/modules/netgraph/netflow/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / sys / modules / netgraph / netflow / Makefile
1 # $FreeBSD$
2 #
3 # Author: Gleb Smirnoff <glebius@freebsd.org>
4 #
5
6 .include <bsd.own.mk>
7
8 .PATH: ${.CURDIR}/../../../netgraph/netflow
9
10 KMOD=   ng_netflow
11 SRCS=   ng_netflow.c netflow.c netflow_v9.c opt_inet6.h opt_route.h
12
13 .if !defined(KERNBUILDDIR)
14
15 .if ${MK_INET6_SUPPORT} != "no"
16 opt_inet6.h:
17         echo "#define INET6 1" > ${.TARGET}
18 .endif
19
20 .endif
21
22 .include <bsd.kmod.mk>