1 # Bottom part of Makefile for the UCW Libraries
2 # (c) 1997--2008 Martin Mares <mj@ucw.cz>
8 runtree: run/.tree-stamp $(addsuffix /.dir-stamp,$(addprefix $(o)/,$(DIRS)) $(addprefix run/$(DOCDIR)/,$(DOC_MODULES)))
10 run/.tree-stamp: $(o)/config.mk
12 $(Q)mkdir -p run $(addprefix run/, $(CONFIG_DIR) $(EXTRA_RUNDIRS) $(INSTALL_RUNDIRS))
13 $(Q)touch run/.tree-stamp
15 # Miscellaneous targets
18 datafiles: $(DATAFILES)
20 configs: $(addprefix run/$(CONFIG_DIR)/,$(CONFIGS))
21 docs: runtree $(DOCS) $(DOC_INDICES)
24 etags `find . -name "*.[ch]"`
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.
34 $(Q)if [ -s $(o)/depend.new ] ; then $(BUILDSYS)/mergedeps $(o)/depend $(o)/depend.new ; >$(o)/depend.new ; fi
38 # Rules for directories
41 $(Q)mkdir -p $(@D) && touch $@
43 # Rules for configuration files
45 run/$(CONFIG_DIR)/%: $(s)/$(CONFIG_SRC_DIR)/% $(o)/config.mk $(BUILDSYS)/genconf
47 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
49 $(o)/%.cf: $(s)/%.cf $(o)/config.mk $(BUILDSYS)/genconf
51 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
52 $(Q)cp $@ run/$(CONFIG_DIR)/$(basename $(@F))
60 ifdef CONFIG_INSTALL_API
61 $(Q)$(call symlink-alias,$@,run/lib,$(*F)$(LIBNAME_INFIX).a)
66 $(Q)$(CC) $(LSHARED) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" $(BUILDSYS)/lib-flags $^) $(LIBS)
67 $(Q)$(call symlink-alias,$@,run/$(SO_RUNDIR),$(*F)$(SONAME_INFIX).so$(SONAME_SUFFIX))
69 # On Darwin, gcc expects shared libraries in *.dylib instead of *.so.
70 # Surprisingly, when a program is run, it suffices to have *.so files.
71 # We don't want to mess up the whole build system with configurable
72 # suffices and we also don't want to incur an overhead on Linux, so we
73 # just create symbolic links on Darwin, if requested.
75 cd $(dir $<) && ln -fs $(notdir $<) $(notdir $@)
77 $(o)/%.pc: $(s)/%.pc $(o)/%.$(LS)
79 $(Q)DEPS="$(shell $(BUILDSYS)/lib-deps $^)" LIBDIR=$(@D) $(BUILDSYS)/genconf $< $@ $(o)/config.mk
80 $(Q)mkdir -p $(o)/pkgconfig
81 $(Q)$(call symlink,$@,$(o)/pkgconfig)
83 # Rules for public API
85 ifdef CONFIG_INSTALL_API
88 # Need an absolute path
89 API_ROOT:=$(shell pwd)/run
90 API_LIBDIR=$(API_ROOT)/lib
91 API_INCDIR=$(API_ROOT)/include
93 API_LIBDIR=$(INSTALL_LIB_DIR)
94 API_INCDIR=$(INSTALL_INCLUDE_DIR)
96 INSTALL_RUNDIRS+=include lib/pkgconfig
97 api: $(API_INCLUDES) $(addprefix run/lib/pkgconfig/,$(addsuffix .pc,$(API_LIBS)))
99 $(o)/%/.include-stamp:
100 $(Q)$(BUILDSYS)/install-includes $(<D) run/include/$(IDST) $(?F)
103 run/lib/pkgconfig/%.pc: # RHS supplied in the sub-makefile
105 $(Q)sed <$< >$@ "s@^libdir=.*@libdir=$(API_LIBDIR)@;s@^incdir=.*@incdir=$(API_INCDIR)@"
111 # Rules for compiling C
113 $(o)/%.o: $(s)/%.c $(o)/autoconf.h
115 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
117 $(o)/%.o: %.c $(o)/autoconf.h
119 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
121 %.o: %.c $(o)/autoconf.h
123 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
125 $(o)/%.oo: $(s)/%.c $(o)/autoconf.h
127 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
129 $(o)/%.oo: %.c $(o)/autoconf.h
131 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
133 %.oo: %.c $(o)/autoconf.h
135 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
137 $(o)/%-tt.o: $(s)/%.c $(o)/autoconf.h
139 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -DTEST -c -o $@ $<
143 $(o)/%-t: $(o)/%-tt.o $(TESTING_DEPS)
145 $(Q)$(CC) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" $(BUILDSYS)/lib-flags $^) $(LIBS)
147 $(o)/%.test: $(s)/%.t $(BUILDSYS)/tester
149 $(Q)$(BUILDSYS)/tester --rundir=run $(TESTERFLAGS) $< && touch $@
157 $(Q)$(CC) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" $(BUILDSYS)/lib-flags $^) $(LIBS)
158 $(Q)$(call symlink,$@,run/$(BINDIR))
160 $(o)/%: $(s)/%.sh $(o)/config.mk $(BUILDSYS)/genconf
162 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
164 $(Q)$(call symlink,$@,run/$(BINDIR))
166 $(o)/%: %.sh $(o)/config.mk $(BUILDSYS)/genconf
168 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
170 $(Q)$(call symlink,$@,run/$(BINDIR))
172 $(o)/%: $(s)/%.pl $(o)/config.mk $(BUILDSYS)/genconf
174 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
176 $(Q)$(call symlink,$@,run/$(BINDIR))
178 $(o)/%: %.pl $(o)/config.mk $(BUILDSYS)/genconf
180 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
182 $(Q)$(call symlink,$@,run/$(BINDIR))
187 $(M)"PM $< -> run/lib/perl5/$(PERL_MODULE_DIR)/$(@F)"
189 $(Q)$(call symlink,$@,run/lib/perl5/$(PERL_MODULE_DIR))
192 $(M)"PM $< -> run/lib/perl/$(PERL_MODULE_DIR)/$(@F)"
194 $(Q)$(call symlink,$@,run/lib/perl5/$(PERL_MODULE_DIR))
196 # Rules for data files
200 $(DATAFILES): $(o)/%: $(s)/%
203 $(Q)$(call symlink,$@,run/$(DATADIR))
205 # Rules for documentation
207 $(o)/%.html: $(o)/%.txt $(BUILDSYS)/asciidoc.conf $(BUILDSYS)/asciidoc-xhtml.conf run/$(DOCDIR)/$(DOC_MODULE)/.dir-stamp
209 $(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 $<
210 $(Q)$(call symlink,$@,run/$(DOCDIR)/$(DOC_MODULE))
212 # In reality, we do not depend on the .txt files, but on the corresponding .deflist's.
213 # However, the Makefile language cannot express that doc-extract generates both .txt
214 # and .deflist, so we always use the .txt's in dependencies.
215 $(patsubst %.html,%.txt,$(DOC_INDICES)): $(o)/%.txt: $(patsubst %.html,%.txt,$(DOCS)) $(BUILDSYS)/doc-defs
217 $(Q)echo $@: $(DOC_HEAD) $(DOC_LIST) >> $(o)/depend.new
218 $(Q)$(BUILDSYS)/doc-defs $(DOC_HEAD) $@ $(DOC_LIST)
220 $(patsubst %.html,%.txt,$(DOCS)): $(o)/%.txt: $(s)/%.txt $(BUILDSYS)/doc-extract
222 $(Q)$(BUILDSYS)/doc-extract $< $@ $(o)/depend.new $(s) $(patsubst %.txt,%.deflist,$@)
224 # Don't delete intermediate targets. There shouldn't be any, but due to bugs
225 # in GNU Make rules with targets in not-yet-existing directories are ignored
226 # when searching for implicit rules and thence targets considered intermediate.
229 .PHONY: all clean distclean runtree programs api datafiles force tags configs dust install docs tests