aboutsummaryrefslogtreecommitdiffstats
path: root/make/libtool.mk
blob: e023bc6038e5fc1b8d3c4a8c40076c1557bea606 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# --- Required interface definitions ---

# LIBTOOL needs bash
SHELL=/bin/bash

OBJ=o
LOBJ=lo

# Usage: $(call libname,base)
define libname
lib$(1).la
endef

# Usage: $(call binname,base)
define binname
$(1)
endef

# --- Private definitions ---

ifeq ($(HAVE_LD_VERSION_SCRIPT), 1)
LD_VERSION_FLAGS=-Wl,--version-script=libqpdf.map
else
LD_VERSION_FLAGS=
endif

# 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        3
# Usage: $(call compile,src,includes,xflags)
define compile
	$(CXX) $(CXXFLAGS) $(3) \
		$(call depflags,$(basename $(call src_to_obj,$(1)))) \
		$(foreach I,$(2),-I$(I)) \
		$(CPPFLAGS) \
		-c $(1) -o $(call src_to_obj,$(1))
endef

#                         1   2        3
# Usage: $(call c_compile,src,includes,xflags)
define c_compile
	$(CC) $(CFLAGS) $(3) \
		$(call depflags,$(basename $(call c_src_to_obj,$(1)))) \
		$(foreach I,$(2),-I$(I)) \
		$(CPPFLAGS) \
		-c $(1) -o $(call c_src_to_obj,$(1))
endef

#                          1   2
# Usage: $(call libcompile,src,includes)
define libcompile
	$(LIBTOOL) --quiet --mode=compile --tag=CXX \
		$(CXX) $(CXXFLAGS) \
		$(call libdepflags,$(basename $(call src_to_obj,$(1)))) \
		$(foreach I,$(2),-I$(I)) \
		$(CPPFLAGS) \
		-c $(1) -o $(call src_to_obj,$(1)); \
	$(call fixdeps,$(basename $(call src_to_obj,$(1))))
endef

#                          1   2
# Usage: $(call libcompile,src,includes)
define c_libcompile
	$(LIBTOOL) --quiet --mode=compile --tag=CC \
		$(CC) $(CFLAGS) \
		$(call libdepflags,$(basename $(call c_src_to_obj,$(1)))) \
		$(foreach I,$(2),-I$(I)) \
		$(CPPFLAGS) \
		-c $(1) -o $(call c_src_to_obj,$(1)); \
	$(call fixdeps,$(basename $(call src_to_obj,$(1))))
endef

#                        1    2
# Usage: $(call makeslib,objs,library)
define makeslib
	$(RM) $2
	$(AR) cru $(2) $(1)
	$(RANLIB) $(2)
endef

#                       1    2       3       4    5       6        7
# Usage: $(call makelib,objs,library,ldflags,libs,current,revision,age)
define makelib
	$(LIBTOOL) --mode=link --tag=CXX \
		$(CXX) $(CXXFLAGS) $(LD_VERSION_FLAGS) \
		 -o $(2) $(1) $(3) $(4) \
		 $(RPATH) -version-info $(5):$(6):$(7) -no-undefined
endef

#                       1    2      3       4    5
# Usage: $(call makebin,objs,binary,ldflags,libs,xlinkflags)
define makebin
	$(LIBTOOL) --mode=link --tag=CXX \
		$(CXX) $(CXXFLAGS) $(5) $(1) -o $(2) $(3) $(4)
endef

install-libs: build_libqpdf
	./mkinstalldirs -m 0755 $(DESTDIR)$(libdir)/pkgconfig
	./mkinstalldirs -m 0755 $(DESTDIR)$(includedir)/qpdf
	$(LIBTOOL) --mode=install ./install-sh \
		libqpdf/$(OUTPUT_DIR)/libqpdf.la \
		$(DESTDIR)$(libdir)/libqpdf.la
	$(LIBTOOL) --finish $(DESTDIR)$(libdir)
	./install-sh -m 0644 include/qpdf/*.h $(DESTDIR)$(includedir)/qpdf
	./install-sh -m 0644 include/qpdf/*.hh $(DESTDIR)$(includedir)/qpdf
	./install-sh -m 0644 libqpdf.pc $(DESTDIR)$(libdir)/pkgconfig

# Install target

# NOTE: If installing any new executables, remember to update the
# lambda layer code in build-scripts/build-appimage.

# Ensure that installwin in make/installwin.mk is consistent with
# this.

install: all install-libs
	./mkinstalldirs -m 0755 $(DESTDIR)$(bindir)
	./mkinstalldirs -m 0755 $(DESTDIR)$(docdir)
	./mkinstalldirs -m 0755 $(DESTDIR)$(mandir)/man1
	$(LIBTOOL) --mode=install ./install-sh \
		qpdf/$(OUTPUT_DIR)/qpdf \
		$(DESTDIR)$(bindir)/qpdf
	$(LIBTOOL) --mode=install ./install-sh \
		zlib-flate/$(OUTPUT_DIR)/zlib-flate \
		$(DESTDIR)$(bindir)/zlib-flate
	$(LIBTOOL) --mode=install ./install-sh \
		qpdf/$(OUTPUT_DIR)/fix-qdf \
		$(DESTDIR)$(bindir)/fix-qdf
	if [ -f doc/qpdf-manual.pdf ]; then \
		./install-sh -m 0644 doc/qpdf-manual.pdf $(DESTDIR)$(docdir); \
	fi
	if [ -d doc/html ]; then \
		cp -r doc/html $(DESTDIR)/$(docdir); \
	fi
	if [ -d doc/singlehtml ]; then \
		cp -r doc/singlehtml $(DESTDIR)/$(docdir); \
	fi
	./install-sh -m 0644 doc/*.1 $(DESTDIR)$(mandir)/man1