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_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 $(o)/%.pc: $(s)/%.pc $(o)/%.$(LS)
71 $(Q)DEPS="$(shell $(BUILDSYS)/lib-deps $^)" LIBDIR=$(@D) $(BUILDSYS)/genconf $< $@ $(o)/config.mk
72 $(Q)mkdir -p $(o)/pkgconfig
73 $(Q)$(call symlink,$@,$(o)/pkgconfig)
75 # Rules for public API
77 ifdef CONFIG_INSTALL_API
80 # Need an absolute path
81 API_ROOT:=$(shell pwd)/run
82 API_LIBDIR=$(API_ROOT)/lib
83 API_INCDIR=$(API_ROOT)/include
85 API_LIBDIR=$(INSTALL_LIB_DIR)
86 API_INCDIR=$(INSTALL_INCLUDE_DIR)
88 INSTALL_RUNDIRS+=include lib/pkgconfig
89 api: $(API_INCLUDES) $(addprefix run/lib/pkgconfig/,$(addsuffix .pc,$(API_LIBS)))
91 $(o)/%/.include-stamp:
92 $(Q)$(BUILDSYS)/install-includes $(<D) run/include/$(IDST) $(?F)
95 run/lib/pkgconfig/%.pc: # RHS supplied in the sub-makefile
97 $(Q)sed <$< >$@ "s@^libdir=.*@libdir=$(API_LIBDIR)@;s@^incdir=.*@incdir=$(API_INCDIR)@"
103 # Rules for compiling C
105 $(o)/%.o: $(s)/%.c $(o)/autoconf.h
107 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
109 $(o)/%.o: %.c $(o)/autoconf.h
111 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
113 %.o: %.c $(o)/autoconf.h
115 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
117 $(o)/%.oo: $(s)/%.c $(o)/autoconf.h
119 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
121 $(o)/%.oo: %.c $(o)/autoconf.h
123 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
125 %.oo: %.c $(o)/autoconf.h
127 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
129 $(o)/%-tt.o: $(s)/%.c $(o)/autoconf.h
131 $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -DTEST -c -o $@ $<
135 $(o)/%-t: $(o)/%-tt.o $(TESTING_DEPS)
137 $(Q)$(CC) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" $(BUILDSYS)/lib-flags $^) $(LIBS)
139 $(o)/%.test: $(s)/%.t $(BUILDSYS)/tester
141 $(Q)$(BUILDSYS)/tester --rundir=run $(TESTERFLAGS) $< && touch $@
149 $(Q)$(CC) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" $(BUILDSYS)/lib-flags $^) $(LIBS)
150 $(Q)$(call symlink,$@,run/$(BINDIR))
152 $(o)/%: $(s)/%.sh $(o)/config.mk $(BUILDSYS)/genconf
154 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
156 $(Q)$(call symlink,$@,run/$(BINDIR))
158 $(o)/%: %.sh $(o)/config.mk $(BUILDSYS)/genconf
160 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
162 $(Q)$(call symlink,$@,run/$(BINDIR))
164 $(o)/%: $(s)/%.pl $(o)/config.mk $(BUILDSYS)/genconf
166 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
168 $(Q)$(call symlink,$@,run/$(BINDIR))
170 $(o)/%: %.pl $(o)/config.mk $(BUILDSYS)/genconf
172 $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
174 $(Q)$(call symlink,$@,run/$(BINDIR))
179 $(M)"PM $< -> run/lib/perl5/$(PERL_MODULE_DIR)/$(@F)"
181 $(Q)$(call symlink,$@,run/lib/perl5/$(PERL_MODULE_DIR))
184 $(M)"PM $< -> run/lib/perl/$(PERL_MODULE_DIR)/$(@F)"
186 $(Q)$(call symlink,$@,run/lib/perl5/$(PERL_MODULE_DIR))
188 # Rules for data files
192 $(DATAFILES): $(o)/%: $(s)/%
195 $(Q)$(call symlink,$@,run/$(DATADIR))
197 # Rules for documentation
199 $(o)/%.html: $(o)/%.txt $(BUILDSYS)/asciidoc.conf $(BUILDSYS)/asciidoc-xhtml.conf run/$(DOCDIR)/$(DOC_MODULE)/.dir-stamp
201 $(Q)asciidoc -e -f $(BUILDSYS)/asciidoc.conf -f $(BUILDSYS)/asciidoc-xhtml.conf -f $(PREFIX)/etc/asciidoc/asciidoc.conf -f $(PREFIX)/etc/asciidoc/xhtml11.conf $<
202 $(Q)$(call symlink,$@,run/$(DOCDIR)/$(DOC_MODULE))
204 # In reality, we do not depend on the .txt files, but on the corresponding .deflist's.
205 # However, the Makefile language cannot express that doc-extract generates both .txt
206 # and .deflist, so we always use the .txt's in dependencies.
207 $(patsubst %.html,%.txt,$(DOC_INDICES)): $(o)/%.txt: $(patsubst %.html,%.txt,$(DOCS)) $(BUILDSYS)/doc-defs
209 $(Q)echo $@: $(DOC_HEAD) $(DOC_LIST) >> $(o)/depend.new
210 $(Q)$(BUILDSYS)/doc-defs $(DOC_HEAD) $@ $(DOC_LIST)
212 $(patsubst %.html,%.txt,$(DOCS)): $(o)/%.txt: $(s)/%.txt $(BUILDSYS)/doc-extract
214 $(Q)$(BUILDSYS)/doc-extract $< $@ $(o)/depend.new $(s) $(patsubst %.txt,%.deflist,$@)
216 # Don't delete intermediate targets. There shouldn't be any, but due to bugs
217 # in GNU Make rules with targets in not-yet-existing directories are ignored
218 # when searching for implicit rules and thence targets considered intermediate.
221 .PHONY: all clean distclean runtree programs api datafiles force tags configs dust install docs tests