mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 13:20:37 -05:00
17 lines
222 B
Makefile
17 lines
222 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
PROG= mtest
|
|
MAN= mtest.8
|
|
|
|
BINMODE= 555
|
|
WARNS?= 3
|
|
|
|
# XXX This assumes INET support in the base system.
|
|
CFLAGS+=-DINET
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|