mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
18 lines
233 B
Makefile
18 lines
233 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.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>
|