70b3eda27c
Remove non-FreeBSD code. Sort includes.
18 lines
246 B
Makefile
18 lines
246 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
PROG= ifmcstat
|
|
MAN= ifmcstat.8
|
|
BINMODE= 550
|
|
|
|
WARNS?= 2
|
|
|
|
.if !defined(MK_INET6_SUPPORT) || ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
DPADD= ${LIBKVM}
|
|
LDADD= -lkvm
|
|
|
|
.include <bsd.prog.mk>
|