]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/modules/netgraph/netflow/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.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>