Link libz into regress build.
authorbluhm <bluhm@openbsd.org>
Thu, 24 Mar 2022 22:11:11 +0000 (22:11 +0000)
committerbluhm <bluhm@openbsd.org>
Thu, 24 Mar 2022 22:11:11 +0000 (22:11 +0000)
regress/lib/Makefile
regress/lib/libz/Makefile

index 9bc5227..89b6510 100644 (file)
@@ -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:
 
index b16408a..b912266 100644 (file)
@@ -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}