14 lines
263 B
Makefile
14 lines
263 B
Makefile
|
# $FreeBSD$
|
||
|
PROG= ministat
|
||
|
NOMAN= yes
|
||
|
|
||
|
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
|