aboutsummaryrefslogtreecommitdiffstats
path: root/external-libs
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-10-10 19:32:34 +0200
committerJay Berkenbilt <ejb@ql.org>2009-10-10 19:32:34 +0200
commit3d5a7a26e2f7aaddb888fdaa8a01711d69722885 (patch)
tree374b20bebd137ffd6cc311f5eb920d76a385ee12 /external-libs
parentec20e494503d08aeccc13f2e3e5aead08092b33d (diff)
downloadqpdf-3d5a7a26e2f7aaddb888fdaa8a01711d69722885.tar.zst
handle external libs in autoconf
git-svn-id: svn+q:///qpdf/trunk@764 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'external-libs')
-rw-r--r--external-libs/build.mk5
1 files changed, 2 insertions, 3 deletions
diff --git a/external-libs/build.mk b/external-libs/build.mk
index 5b092481..7c694bbb 100644
--- a/external-libs/build.mk
+++ b/external-libs/build.mk
@@ -1,6 +1,5 @@
TARGETS_external-libs = external-libs/$(OUTPUT_DIR)/libexternal.a
-INCLUDES_external-libs = external-libs/zlib external-libs/pcre \
- external-libs/$(OUTPUT_DIR)
+INCLUDES_external-libs = external-libs/zlib external-libs/pcre
SRCS_external-libs_zlib = \
external-libs/zlib/adler32.c \
@@ -51,7 +50,7 @@ $(OBJS_external-libs_zlib): external-libs/$(OUTPUT_DIR)/%.$(LOBJ): external-libs
$(call c_libcompile,$<,$(INCLUDES_external-libs))
$(OBJS_external-libs_pcre): external-libs/$(OUTPUT_DIR)/%.$(LOBJ): external-libs/pcre/%.c
- $(call c_libcompile,$<,$(INCLUDES_external-libs))
+ $(call c_libcompile,$<,$(INCLUDES_external-libs) external-libs/$(OUTPUT_DIR))
$(TARGETS_external-libs): $(OBJS_external-libs)
$(call makeslib,$(OBJS_external-libs),$(TARGETS_external-libs))