]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/ifmcstat/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / usr.sbin / ifmcstat / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/5/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   ifmcstat
7 SRCS=   ifmcstat.c printb.c
8
9 MAN=    ifmcstat.8
10 BINMODE= 555
11
12 WARNS?= 2
13
14 .if ${MK_INET6_SUPPORT} != "no"
15 CFLAGS+=-DINET6
16 .endif
17
18 .if ${MK_KVM_SUPPORT} != "no"
19 CFLAGS+=-DWITH_KVM
20 DPADD=  ${LIBKVM}
21 LDADD=  -lkvm
22 .endif
23
24 .include <bsd.prog.mk>