23 lines
295 B
Makefile
Raw Normal View History

# @(#)Makefile 8.1 (Berkeley) 6/5/93
# $FreeBSD$
.include <bsd.own.mk>
PROG= ifmcstat
MAN= ifmcstat.8
BINMODE= 550
WARNS?= 2
.if ${MK_INET6_SUPPORT} != "no"
CFLAGS+=-DINET6
.endif
.if ${MK_KVM_SUPPORT} != "no"
CFLAGS+=-DWITH_KVM
DPADD= ${LIBKVM}
2003-04-04 17:49:21 +00:00
LDADD= -lkvm
.endif
.include <bsd.prog.mk>