Commit 026330ebcdbef825a340eb04915483573b3c8be2

Authored by Jay Berkenbilt
1 parent fd13fe74

Make libtests depend on qpdf

We need to run qpdf --show-crypto.
Showing 2 changed files with 2 additions and 2 deletions
Makefile
@@ -35,7 +35,7 @@ @@ -35,7 +35,7 @@
35 # install to install in a separate location. This is useful for 35 # install to install in a separate location. This is useful for
36 # packagers. 36 # packagers.
37 37
38 -BUILD_ITEMS := manual libqpdf zlib-flate libtests qpdf fuzz examples 38 +BUILD_ITEMS := manual libqpdf qpdf zlib-flate libtests fuzz examples
39 OUTPUT_DIR = build 39 OUTPUT_DIR = build
40 ALL_TARGETS = 40 ALL_TARGETS =
41 41
libtests/build.mk
@@ -29,7 +29,7 @@ BINS_libtests = \ @@ -29,7 +29,7 @@ BINS_libtests = \
29 29
30 TARGETS_libtests = $(foreach B,$(BINS_libtests),libtests/$(OUTPUT_DIR)/$(call binname,$(B))) 30 TARGETS_libtests = $(foreach B,$(BINS_libtests),libtests/$(OUTPUT_DIR)/$(call binname,$(B)))
31 31
32 -$(TARGETS_libtests): $(TARGETS_libqpdf) 32 +$(TARGETS_libtests): $(TARGETS_libqpdf) $(TARGETS_qpdf)
33 33
34 INCLUDES_libtests = include libqpdf 34 INCLUDES_libtests = include libqpdf
35 35