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