xref: /freebsd/usr.sbin/mtest/Makefile (revision 7899f917b1c0ea178f1d2be0cfb452086d079d23)
1.include <src.opts.mk>
2
3PROG=	mtest
4MAN=	mtest.8
5
6BINMODE= 555
7WARNS?=	3
8
9# XXX This assumes INET support in the base system.
10CFLAGS+=-DINET
11
12.if ${MK_INET6_SUPPORT} != "no"
13CFLAGS+=-DINET6
14.endif
15
16.include <bsd.prog.mk>
17