From: bluhm Date: Thu, 24 Mar 2022 22:11:11 +0000 (+0000) Subject: Link libz into regress build. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=5146bfd8d13864d02098d2b444614a812a58c407;p=openbsd Link libz into regress build. --- diff --git a/regress/lib/Makefile b/regress/lib/Makefile index 9bc5227ec09..89b6510ee2a 100644 --- a/regress/lib/Makefile +++ b/regress/lib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.24 2021/09/12 07:06:08 anton Exp $ +# $OpenBSD: Makefile,v 1.25 2022/03/24 22:11:11 bluhm Exp $ SUBDIR+= csu SUBDIR+= libagentx @@ -17,6 +17,7 @@ SUBDIR+= libssl SUBDIR+= libtls SUBDIR+= libusbhid SUBDIR+= libutil +SUBDIR+= libz install: diff --git a/regress/lib/libz/Makefile b/regress/lib/libz/Makefile index b16408af894..b912266130b 100644 --- a/regress/lib/libz/Makefile +++ b/regress/lib/libz/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1.1.1 2022/03/24 19:41:06 bluhm Exp $ +# $OpenBSD: Makefile,v 1.2 2022/03/24 22:11:11 bluhm Exp $ # compile and run zlib test files from upstream # https://github.com/madler/zlib/tree/master/test @@ -8,13 +8,13 @@ LDADD= -lz DPADD= ${LIBZ} CPPFLAGS= -I${.CURDIR}/../../../lib/libz WARNINGS= Yes -CLEANFILES= in out out.gz +CLEANFILES= foo.gz in out out.gz REGRESS_TARGETS= run-regress-example run-regress-infcover .for stategy in default filtered huffman rle .for level in 0 1 2 3 4 5 6 7 8 9 -.for zero rand in 0 0 0 1 1 0 0 10 5 5 10 0 +.for zero rand in 0 0 0 1 1 0 0 10 5 5 10 0 REGRESS_TARGETS+= run-${stategy}-level${level}-zero${zero}-rand${rand}