3161c603a6
for bin/, commands/, libexec/, sbin/, test/, usr.bin/ and usr.sbin/. Change-Id: I8fa12c3cd86865311cef71b7faa7cf4fa785174f
17 lines
417 B
Makefile
17 lines
417 B
Makefile
# $FreeBSD$
|
|
PROG= ministat
|
|
DPADD= ${LIBM}
|
|
LDADD= -lm
|
|
|
|
# BJG
|
|
WARNS=3
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
test: ${PROG}
|
|
./${PROG} < ${.CURDIR}/chameleon
|
|
./${PROG} ${.CURDIR}/chameleon
|
|
./${PROG} ${.CURDIR}/iguana ${.CURDIR}/chameleon
|
|
./${PROG} -c 80 ${.CURDIR}/iguana ${.CURDIR}/chameleon
|
|
./${PROG} -s -c 80 ${.CURDIR}/chameleon ${.CURDIR}/iguana
|
|
./${PROG} -s -c 80 ${.CURDIR}/chameleon ${.CURDIR}/iguana ${.CURDIR}/iguana
|