c8f3b10909
. also disable stack protection feature for gcc, causes build errors for pkgsrc gcc on minix Change-Id: I1c6e2bcb4d948098d642543d7b2711284ee55c72
17 lines
416 B
Makefile
17 lines
416 B
Makefile
# $FreeBSD$
|
|
PROG= ministat
|
|
DPADD= ${LIBM}
|
|
LDADD= -lm
|
|
|
|
# BJG
|
|
WARNS=
|
|
|
|
.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
|