mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
14 lines
336 B
Makefile
14 lines
336 B
Makefile
# $FreeBSD$
|
|
PROG= ministat
|
|
NOMAN= yes
|
|
DPADD= ${LIBM}
|
|
LDADD= -lm
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
test: ${PROG}
|
|
./${PROG} < ${.CURDIR}/chameleon
|
|
./${PROG} ${.CURDIR}/chameleon
|
|
./${PROG} ${.CURDIR}/chameleon ${.CURDIR}/iguana
|
|
./${PROG} -c 80 ${.CURDIR}/chameleon ${.CURDIR}/iguana
|
|
./${PROG} -s -c 80 ${.CURDIR}/chameleon ${.CURDIR}/iguana
|