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