xref: /freebsd/usr.sbin/ifmcstat/Makefile (revision 39beb93c3f8bdbf72a61fda42300b5ebed7390c8)
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD$
3
4.include <bsd.own.mk>
5
6PROG=	ifmcstat
7MAN=	ifmcstat.8
8BINMODE= 550
9
10WARNS?=	2
11
12.if ${MK_INET6_SUPPORT} != "no"
13CFLAGS+=-DINET6
14.endif
15
16.if ${MK_KVM_SUPPORT} != "no"
17CFLAGS+=-DWITH_KVM
18DPADD=	${LIBKVM}
19LDADD=	-lkvm
20.endif
21
22.include <bsd.prog.mk>
23