2009-10-10 14:15:09 +00:00
|
|
|
# --- Required interface definitions ---
|
|
|
|
|
2012-06-20 12:38:10 +00:00
|
|
|
# LIBTOOL needs bash
|
|
|
|
SHELL=/bin/bash
|
|
|
|
|
2009-10-10 14:15:09 +00:00
|
|
|
OBJ=o
|
|
|
|
LOBJ=lo
|
|
|
|
|
|
|
|
# Usage: $(call libname,base)
|
|
|
|
define libname
|
|
|
|
lib$(1).la
|
|
|
|
endef
|
|
|
|
|
|
|
|
# Usage: $(call binname,base)
|
|
|
|
define binname
|
|
|
|
$(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
# --- Private definitions ---
|
|
|
|
|
2012-06-20 16:48:27 +00:00
|
|
|
ifeq ($(HAVE_LD_VERSION_SCRIPT), 1)
|
|
|
|
LD_VERSION_FLAGS=-Wl,--version-script=libqpdf.map
|
|
|
|
else
|
|
|
|
LD_VERSION_FLAGS=
|
|
|
|
endif
|
|
|
|
|
2009-10-10 14:15:09 +00:00
|
|
|
# Usage: $(call libdepflags,$(basename obj))
|
|
|
|
# Usage: $(call fixdeps,$(basename obj))
|
|
|
|
ifeq ($(GENDEPS),1)
|
|
|
|
libdepflags=-MD -MF $(1).tdep -MP
|
|
|
|
fixdeps=sed -e 's/\.o:/.lo:/' < $(1).tdep > $(1).dep
|
|
|
|
|
|
|
|
else
|
|
|
|
libdepflags=
|
|
|
|
fixdeps=
|
|
|
|
endif
|
|
|
|
|
|
|
|
# --- Required rule definitions ---
|
|
|
|
|
|
|
|
# 1 2
|
|
|
|
# Usage: $(call compile,src,includes)
|
|
|
|
define compile
|
2012-06-22 01:20:35 +00:00
|
|
|
$(CXX) $(CXXFLAGS) \
|
2009-10-10 14:15:09 +00:00
|
|
|
$(call depflags,$(basename $(call src_to_obj,$(1)))) \
|
|
|
|
$(foreach I,$(2),-I$(I)) \
|
2012-06-22 01:20:35 +00:00
|
|
|
$(CPPFLAGS) \
|
2009-10-10 14:15:09 +00:00
|
|
|
-c $(1) -o $(call src_to_obj,$(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
# 1 2
|
|
|
|
# Usage: $(call c_compile,src,includes)
|
|
|
|
define c_compile
|
2012-06-22 01:20:35 +00:00
|
|
|
$(CC) $(CFLAGS) \
|
2009-10-10 17:03:52 +00:00
|
|
|
$(call depflags,$(basename $(call c_src_to_obj,$(1)))) \
|
2009-10-10 14:15:09 +00:00
|
|
|
$(foreach I,$(2),-I$(I)) \
|
2012-06-22 01:20:35 +00:00
|
|
|
$(CPPFLAGS) \
|
2009-10-10 14:15:09 +00:00
|
|
|
-c $(1) -o $(call c_src_to_obj,$(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
# 1 2
|
|
|
|
# Usage: $(call libcompile,src,includes)
|
|
|
|
define libcompile
|
|
|
|
$(LIBTOOL) --quiet --mode=compile \
|
2012-06-22 01:20:35 +00:00
|
|
|
$(CXX) $(CXXFLAGS) \
|
2009-10-10 14:15:09 +00:00
|
|
|
$(call libdepflags,$(basename $(call src_to_obj,$(1)))) \
|
|
|
|
$(foreach I,$(2),-I$(I)) \
|
2012-06-22 01:20:35 +00:00
|
|
|
$(CPPFLAGS) \
|
2009-10-10 14:15:09 +00:00
|
|
|
-c $(1) -o $(call src_to_obj,$(1)); \
|
|
|
|
$(call fixdeps,$(basename $(call src_to_obj,$(1))))
|
|
|
|
endef
|
|
|
|
|
2009-10-10 17:03:52 +00:00
|
|
|
# 1 2
|
|
|
|
# Usage: $(call libcompile,src,includes)
|
|
|
|
define c_libcompile
|
|
|
|
$(LIBTOOL) --quiet --mode=compile \
|
2013-02-24 20:29:17 +00:00
|
|
|
$(CC) $(CFLAGS) \
|
2009-10-10 17:03:52 +00:00
|
|
|
$(call libdepflags,$(basename $(call c_src_to_obj,$(1)))) \
|
|
|
|
$(foreach I,$(2),-I$(I)) \
|
2012-06-22 01:20:35 +00:00
|
|
|
$(CPPFLAGS) \
|
2009-10-10 17:03:52 +00:00
|
|
|
-c $(1) -o $(call c_src_to_obj,$(1)); \
|
|
|
|
$(call fixdeps,$(basename $(call src_to_obj,$(1))))
|
|
|
|
endef
|
|
|
|
|
2009-10-10 15:28:33 +00:00
|
|
|
# 1 2
|
|
|
|
# Usage: $(call makeslib,objs,library)
|
|
|
|
define makeslib
|
|
|
|
$(RM) $2
|
2009-10-10 15:32:59 +00:00
|
|
|
$(AR) cru $(2) $(1)
|
|
|
|
$(RANLIB) $(2)
|
2009-10-10 15:28:33 +00:00
|
|
|
endef
|
|
|
|
|
2009-10-11 00:24:22 +00:00
|
|
|
# 1 2 3 4 5 6 7
|
|
|
|
# Usage: $(call makelib,objs,library,ldflags,libs,current,revision,age)
|
2009-10-10 14:15:09 +00:00
|
|
|
define makelib
|
|
|
|
$(LIBTOOL) --mode=link \
|
2012-06-20 16:48:27 +00:00
|
|
|
$(CXX) $(CXXFLAGS) $(LD_VERSION_FLAGS) \
|
2018-02-04 19:01:57 +00:00
|
|
|
-o $(2) $(1) $(3) $(4) \
|
2017-08-24 21:41:30 +00:00
|
|
|
-rpath $(libdir) -version-info $(5):$(6):$(7) -no-undefined
|
2009-10-10 14:15:09 +00:00
|
|
|
endef
|
|
|
|
|
2009-10-11 00:24:22 +00:00
|
|
|
# 1 2 3 4
|
|
|
|
# Usage: $(call makebin,objs,binary,ldflags,libs)
|
2009-10-10 14:15:09 +00:00
|
|
|
define makebin
|
2018-02-04 19:01:57 +00:00
|
|
|
$(LIBTOOL) --mode=link $(CXX) $(CXXFLAGS) $(1) -o $(2) $(3) $(4)
|
2009-10-10 14:15:09 +00:00
|
|
|
endef
|
2009-10-22 15:20:41 +00:00
|
|
|
|
|
|
|
# Install target
|
|
|
|
|
|
|
|
install: all
|
2012-06-21 20:30:08 +00:00
|
|
|
./mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig
|
2009-10-22 15:20:41 +00:00
|
|
|
./mkinstalldirs $(DESTDIR)$(bindir)
|
|
|
|
./mkinstalldirs $(DESTDIR)$(includedir)/qpdf
|
|
|
|
./mkinstalldirs $(DESTDIR)$(docdir)
|
|
|
|
./mkinstalldirs $(DESTDIR)$(mandir)/man1
|
2013-03-07 16:28:06 +00:00
|
|
|
$(LIBTOOL) --mode=install ./install-sh \
|
2009-10-22 15:20:41 +00:00
|
|
|
libqpdf/$(OUTPUT_DIR)/libqpdf.la \
|
|
|
|
$(DESTDIR)$(libdir)/libqpdf.la
|
|
|
|
$(LIBTOOL) --finish $(DESTDIR)$(libdir)
|
2013-03-07 16:28:06 +00:00
|
|
|
$(LIBTOOL) --mode=install ./install-sh \
|
2009-10-22 15:20:41 +00:00
|
|
|
qpdf/$(OUTPUT_DIR)/qpdf \
|
|
|
|
$(DESTDIR)$(bindir)/qpdf
|
2013-03-07 16:28:06 +00:00
|
|
|
$(LIBTOOL) --mode=install ./install-sh \
|
2009-10-22 15:20:41 +00:00
|
|
|
zlib-flate/$(OUTPUT_DIR)/zlib-flate \
|
|
|
|
$(DESTDIR)$(bindir)/zlib-flate
|
|
|
|
cp qpdf/fix-qdf $(DESTDIR)$(bindir)
|
|
|
|
cp include/qpdf/*.h $(DESTDIR)$(includedir)/qpdf
|
|
|
|
cp include/qpdf/*.hh $(DESTDIR)$(includedir)/qpdf
|
|
|
|
cp doc/stylesheet.css $(DESTDIR)$(docdir)
|
2012-06-21 20:30:08 +00:00
|
|
|
cp libqpdf.pc $(DESTDIR)$(libdir)/pkgconfig
|
2017-08-22 20:50:41 +00:00
|
|
|
if [ -f doc/qpdf-manual.html ]; then \
|
2016-09-10 18:30:07 +00:00
|
|
|
cp doc/qpdf-manual.html $(DESTDIR)$(docdir); \
|
|
|
|
fi
|
2017-08-22 20:50:41 +00:00
|
|
|
if [ -f doc/qpdf-manual.pdf ]; then \
|
2016-09-10 18:30:07 +00:00
|
|
|
cp doc/qpdf-manual.pdf $(DESTDIR)$(docdir); \
|
|
|
|
fi
|
|
|
|
cp doc/*.1 $(DESTDIR)$(mandir)/man1
|