xref: /freebsd/usr.sbin/mtest/Makefile (revision ae316d1d1cffd71ab7751f94e10118777a88e027)
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