04031e9ae2
- Add and document the KVM and KVM_SUPPORT options that are needed for the ifmcstats(3) makefile - Garbage collect unused variables - Add missing inclusion of bsd.own.mk where needed Approved by: kan (mentor) Reviewed by: ru
23 lines
295 B
Makefile
23 lines
295 B
Makefile
# @(#)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}
|
|
LDADD= -lkvm
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|