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