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