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