xref: /freebsd/usr.sbin/ifmcstat/Makefile (revision 7a0c41d5d7d4e9770ef6f5d56f893efc8f18ab7c)
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6PROG=	ifmcstat
7SRCS=	ifmcstat.c printb.c
8
9MAN=	ifmcstat.8
10BINMODE= 555
11
12WARNS?=	2
13
14.if ${MK_INET6_SUPPORT} != "no"
15CFLAGS+=-DINET6
16.endif
17
18.include <bsd.prog.mk>
19