]> mj.ucw.cz Git - leo.git/blob - build/Makebottom
Labelling: Bugfixes in get_closure
[leo.git] / build / Makebottom
1 # Bottom part of Makefile for the UCW Libraries
2 # (c) 1997--2008 Martin Mares <mj@ucw.cz>
3
4 # The run tree
5
6 DOCDIR=doc
7
8 runtree: run/.tree-stamp $(addsuffix /.dir-stamp,$(addprefix $(o)/,$(DIRS)) $(addprefix run/$(DOCDIR)/,$(DOC_MODULES)))
9
10 run/.tree-stamp: $(o)/config.mk
11         $(M)Creating runtree
12         $(Q)mkdir -p run $(addprefix run/, $(CONFIG_DIR) $(EXTRA_RUNDIRS) $(INSTALL_RUNDIRS))
13         $(Q)touch run/.tree-stamp
14
15 # Miscellaneous targets
16
17 programs: $(PROGS)
18 datafiles: $(DATAFILES)
19 tests: $(TESTS)
20 configs: $(addprefix run/$(CONFIG_DIR)/,$(CONFIGS))
21 docs: runtree $(DOCS) $(DOC_INDICES)
22
23 tags:
24         etags `find . -name "*.[ch]"`
25
26 # Black magic with dependencies. It would be more correct to make "depend.new"
27 # a prerequisite for "depend", but "depend.new" often has the same timestamp
28 # as "depend" which would confuse make a lot and either force remaking anyway
29 # or (as in current versions of GNU make) erroneously skipping the remaking.
30
31 -include $(o)/depend
32
33 $(o)/depend: force
34         $(Q)if [ -s $(o)/depend.new ] ; then $(BUILDSYS)/mergedeps $(o)/depend $(o)/depend.new ; >$(o)/depend.new ; fi
35
36 force:
37
38 # Rules for directories
39
40 %.dir-stamp:
41         $(Q)mkdir -p $(@D) && touch $@
42
43 # Rules for configuration files
44
45 run/$(CONFIG_DIR)/%: $(s)/$(CONFIG_SRC_DIR)/% $(o)/config.mk $(BUILDSYS)/genconf
46         $(M)CF $<
47         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
48
49 $(o)/%.cf: $(s)/%.cf $(o)/config.mk $(BUILDSYS)/genconf
50         $(M)CF $<
51         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
52         $(Q)cp $@ run/$(CONFIG_DIR)/$(basename $(@F))
53
54 # Rules for libraries
55
56 %.a:
57         $(M)AR $@
58         $(Q)rm -f $@
59         $(Q)ar rcs $@ $^
60 ifdef CONFIG_INSTALL_API
61         $(Q)$(call symlink-alias,$@,run/lib,$(*F)$(LIBNAME_INFIX).a)
62 endif
63
64 %.so:
65         $(M)LD $@
66         $(Q)$(CC) $(LSHARED) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" PKG_CONFIG_OPTS="$(PKG_CONFIG_OPTS)" $(BUILDSYS)/lib-flags $^) $(LIBS)
67         $(Q)$(call symlink-alias,$@,run/$(SO_RUNDIR),$(*F)$(SONAME_INFIX).so$(SONAME_SUFFIX))
68         $(Q)ln -fs $(*F)$(SONAME_INFIX).so$(SONAME_SUFFIX) run/$(SO_RUNDIR)/$(*F)$(SONAME_INFIX).so
69
70 # On Darwin, gcc expects shared libraries in *.dylib instead of *.so.
71 # Surprisingly, when a program is run, it suffices to have *.so files.
72 # We don't want to mess up the whole build system with configurable
73 # suffices and we also don't want to incur an overhead on Linux, so we
74 # just create symbolic links on Darwin, if requested.
75 %.dylib: %.so
76         cd $(dir $<) && ln -fs $(notdir $<) $(notdir $@)
77
78 $(o)/%.pc: $(s)/%.pc $(o)/%$(LV).$(LS)
79         $(M)PC $<
80         $(Q)DEPS="$(shell $(BUILDSYS)/lib-deps $^)" LIBDIR=$(@D) $(BUILDSYS)/genconf $< $@ $(o)/config.mk
81         $(Q)mkdir -p $(o)/pkgconfig
82         $(Q)$(call symlink,$@,$(o)/pkgconfig)
83
84 # Rules for public API
85
86 ifdef CONFIG_INSTALL_API
87
88 ifdef CONFIG_LOCAL
89 # Need an absolute path
90 API_ROOT:=$(shell pwd)/run
91 API_LIBDIR=$(API_ROOT)/lib
92 API_INCDIR=$(API_ROOT)/include
93 else
94 API_LIBDIR=$(INSTALL_LIB_DIR)
95 API_INCDIR=$(INSTALL_INCLUDE_DIR)
96 endif
97 INSTALL_RUNDIRS+=include lib/pkgconfig
98 api: $(API_INCLUDES) $(addprefix run/lib/pkgconfig/,$(addsuffix .pc,$(API_LIBS)))
99
100 $(o)/%/.include-stamp:
101         $(Q)$(BUILDSYS)/install-includes $(<D) run/include/$(IDST) $(?F)
102         $(Q)touch $@
103
104 run/lib/pkgconfig/%.pc:         # RHS supplied in the sub-makefile
105         $(M)PC-API $@
106         $(Q)sed <$< >$@ "s@^libdir=.*@libdir=$(API_LIBDIR)@;s@^incdir=.*@incdir=$(API_INCDIR)@"
107
108 else
109 api:
110 endif
111
112 # Rules for compiling C
113
114 $(o)/%.o: $(s)/%.c $(o)/autoconf.h
115         $(M)CC $<
116         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
117
118 $(o)/%.o: %.c $(o)/autoconf.h
119         $(M)CC $<
120         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
121
122 %.o: %.c $(o)/autoconf.h
123         $(M)CC $<
124         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
125
126 $(o)/%.oo: $(s)/%.c $(o)/autoconf.h
127         $(M)CC-SO $<
128         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
129
130 $(o)/%.oo: %.c $(o)/autoconf.h
131         $(M)CC-SO $<
132         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
133
134 %.oo: %.c $(o)/autoconf.h
135         $(M)CC-SO $<
136         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
137
138 $(o)/%-tt.o: $(s)/%.c $(o)/autoconf.h
139         $(M)CC-TEST $<
140         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -DTEST -c -o $@ $<
141
142 # Rules for testing
143
144 $(o)/%-t: $(o)/%-tt.o $(TESTING_DEPS)
145         $(M)LD-TEST $@
146         $(Q)$(CC) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" PKG_CONFIG_OPTS="$(PKG_CONFIG_OPTS)" $(BUILDSYS)/lib-flags $^) $(LIBS)
147
148 $(o)/%.test: $(s)/%.t $(BUILDSYS)/tester
149         $(M)TEST $@
150         $(Q)$(BUILDSYS)/tester --rundir=run $(TESTERFLAGS) $< && touch $@
151
152 # Rules for binaries
153
154 BINDIR=bin
155
156 $(o)/%: $(o)/%.o
157         $(M)LD $@
158         $(Q)$(CC) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" PKG_CONFIG_OPTS="$(PKG_CONFIG_OPTS)" $(BUILDSYS)/lib-flags $^) $(LIBS)
159         $(Q)$(call symlink,$@,run/$(BINDIR))
160
161 $(o)/%: $(s)/%.sh $(o)/config.mk $(BUILDSYS)/genconf
162         $(M)PP $<
163         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
164         $(Q)chmod +x $@
165         $(Q)$(call symlink,$@,run/$(BINDIR))
166
167 $(o)/%: %.sh $(o)/config.mk $(BUILDSYS)/genconf
168         $(M)PP $<
169         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
170         $(Q)chmod +x $@
171         $(Q)$(call symlink,$@,run/$(BINDIR))
172
173 $(o)/%: $(s)/%.pl $(o)/config.mk $(BUILDSYS)/genconf
174         $(M)PP $<
175         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
176         $(Q)chmod +x $@
177         $(Q)$(call symlink,$@,run/$(BINDIR))
178
179 $(o)/%: %.pl $(o)/config.mk $(BUILDSYS)/genconf
180         $(M)PP $<
181         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
182         $(Q)chmod +x $@
183         $(Q)$(call symlink,$@,run/$(BINDIR))
184
185 PERL_MODULE_DIR=UCW
186
187 $(o)/%.pm: $(s)/%.pm
188         $(M)"PM $< -> run/lib/perl5/$(PERL_MODULE_DIR)/$(@F)"
189         $(Q)cp $^ $@
190         $(Q)$(call symlink,$@,run/lib/perl5/$(PERL_MODULE_DIR))
191
192 $(o)/%.pm: %.pm
193         $(M)"PM $< -> run/lib/perl/$(PERL_MODULE_DIR)/$(@F)"
194         $(Q)cp $^ $@
195         $(Q)$(call symlink,$@,run/lib/perl5/$(PERL_MODULE_DIR))
196
197 # Rules for data files
198
199 DATADIR=lib
200
201 $(DATAFILES): $(o)/%: $(s)/%
202         $(M)DATA $<
203         $(Q)cp $^ $@
204         $(Q)$(call symlink,$@,run/$(DATADIR))
205
206 # Rules for documentation
207
208 $(o)/%.html: $(o)/%.txt $(BUILDSYS)/asciidoc.conf $(BUILDSYS)/asciidoc-xhtml.conf run/$(DOCDIR)/$(DOC_MODULE)/.dir-stamp
209         $(M)"DOC-HTML $<"
210         $(Q)asciidoc -e -f $(BUILDSYS)/asciidoc.conf -f $(BUILDSYS)/asciidoc-xhtml.conf -f $(HOST_PREFIX)/etc/asciidoc/asciidoc.conf -f $(HOST_PREFIX)/etc/asciidoc/xhtml11.conf $<
211         $(Q)$(call symlink,$@,run/$(DOCDIR)/$(DOC_MODULE))
212
213 # In reality, we do not depend on the .txt files, but on the corresponding .deflist's.
214 # However, the Makefile language cannot express that doc-extract generates both .txt
215 # and .deflist, so we always use the .txt's in dependencies.
216 $(patsubst %.html,%.txt,$(DOC_INDICES)): $(o)/%.txt: $(patsubst %.html,%.txt,$(DOCS)) $(BUILDSYS)/doc-defs
217         $(M)"DOC-DEFS $@"
218         $(Q)echo $@: $(DOC_HEAD) $(DOC_LIST) >> $(o)/depend.new
219         $(Q)$(BUILDSYS)/doc-defs $(DOC_HEAD) $@ $(DOC_LIST)
220
221 $(patsubst %.html,%.txt,$(DOCS)): $(o)/%.txt: $(s)/%.txt $(BUILDSYS)/doc-extract
222         $(M)"DOC-EXT $<"
223         $(Q)$(BUILDSYS)/doc-extract $< $@ $(o)/depend.new $(s) $(patsubst %.txt,%.deflist,$@)
224
225 # Don't delete intermediate targets. There shouldn't be any, but due to bugs
226 # in GNU Make rules with targets in not-yet-existing directories are ignored
227 # when searching for implicit rules and thence targets considered intermediate.
228 .SECONDARY:
229
230 .PHONY: all clean distclean runtree programs api datafiles force tags configs dust install docs tests