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