11.14Smrg# $NetBSD: Makefile,v 1.14 2021/02/11 09:23:55 mrg Exp $ 21.4Smrg# $eterna: Makefile,v 1.14 2009/05/22 21:51:39 mrg Exp $ 31.1Stls 41.14SmrgSIMPLETESTS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t12 t13 t14 t15 t16 t17 t18 51.7SmrgCGITESTS= t11 61.4SmrgBIGFILETESTS= partial4000 partial8000 71.4Smrg 81.1StlsBOZOHTTPD?= ../bozohttpd 91.4SmrgBOZOHTTPD?= ../debug/bozohttpd-debug 101.4SmrgWGET?= wget 111.5SmrgDATA?= $(.CURDIR)/data 121.6SschmonzVERBOSE?= yes 131.6Sschmonz 141.6Sschmonz.if ${VERBOSE} != "yes" 151.6SschmonzSILENT= @ 161.6Sschmonz.else 171.6SschmonzSILENT= 181.6Sschmonz.endif 191.6Sschmonz 201.1Stlsall: 211.1Stls 221.1Stlsclean: 231.6Sschmonz for a in $(SIMPLETESTS) $(BIGFILETESTS); do \ 241.6Sschmonz rm -f tmp.$$a.out tmp.$$a.err; \ 251.1Stls done 261.1Stls 271.7Smrgcheck: check-simple check-cgi check-bigfile 281.4Smrg 291.4Smrgcheck-simple: 301.1Stls.for a in $(SIMPLETESTS) 311.12Smaya ${SILENT}$(.CURDIR)/test-simple "$a" "${BOZOHTTPD}" "${DATA}" "${.CURDIR}" "${VERBOSE}" 321.7Smrg.endfor 331.7Smrg 341.7Smrgcheck-cgi: 351.7Smrg.for a in $(CGITESTS) 361.12Smaya ${SILENT}$(.CURDIR)/test-simple "$a" "${BOZOHTTPD}" "${DATA}" "${.CURDIR}" "${VERBOSE}" -c "${.CURDIR}/cgi-bin" 371.1Stls.endfor 381.1Stls 391.4Smrgcheck-bigfile: 401.4Smrg.for a in $(BIGFILETESTS) 411.12Smaya ${SILENT}$(.CURDIR)/test-bigfile "$a" "${BOZOHTTPD}" "${WGET}" "${DATA}" "${VERBOSE}" 421.4Smrg.endfor 431.4Smrg 441.1Stls.include <bsd.obj.mk> 45