Makefile revision 1.2
1# $NetBSD: Makefile,v 1.2 1998/01/07 23:38:53 thorpej Exp $ 2 3PROG= unfdpass 4NOMAN= noman, no way, man 5LDSTATIC=-static 6 7CLEANFILES+=file1 file2 output test-sock 8 9regress: 10 @./unfdpass > output 11 @if ! cmp -s ${.CURDIR}/expected output; then \ 12 echo "FAILED"; \ 13 else \ 14 echo "PASSED"; \ 15 fi 16 17.include <bsd.prog.mk> 18