c6063d0da8
from the latter.
19 lines
234 B
Makefile
19 lines
234 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= mtest
|
|
MAN= mtest.8
|
|
|
|
BINMODE= 555
|
|
WARNS?= 2
|
|
|
|
# XXX This assumes INET support in the base system.
|
|
CFLAGS+=-DINET
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|