]> mj.ucw.cz Git - libucw.git/blob - build/Makebottom
Build: The target `tests' is phony.
[libucw.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)/cf/% $(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 $@ $^
67         $(Q)$(call symlink-alias,$@,run/lib,$(*F)$(SONAME_INFIX).so$(SONAME_SUFFIX))
68
69 $(o)/%.pc: $(s)/%.pc $(o)/%.$(LS)
70         $(M)PC $<
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)
74
75 # Rules for public API
76
77 ifdef CONFIG_INSTALL_API
78
79 ifdef CONFIG_LOCAL
80 # Need an absolute path
81 API_ROOT:=$(shell pwd)/run
82 API_LIBDIR=$(API_ROOT)/lib
83 API_INCDIR=$(API_ROOT)/include
84 else
85 API_LIBDIR=$(INSTALL_LIB_DIR)
86 API_INCDIR=$(INSTALL_INCLUDE_DIR)
87 endif
88 INSTALL_RUNDIRS+=include lib/pkgconfig
89 api: $(API_INCLUDES) $(addprefix run/lib/pkgconfig/,$(addsuffix .pc,$(API_LIBS)))
90
91 $(o)/%/.include-stamp:
92         $(Q)$(BUILDSYS)/install-includes $(<D) run/include/$(IDST) $(?F)
93         $(Q)touch $@
94
95 run/lib/pkgconfig/%.pc:         # RHS supplied in the sub-makefile
96         $(M)PC-API $@
97         $(Q)sed <$< >$@ "s@^libdir=.*@libdir=$(API_LIBDIR)@;s@^incdir=.*@incdir=$(API_INCDIR)@"
98
99 else
100 api:
101 endif
102
103 # Rules for compiling C
104
105 $(o)/%.o: $(s)/%.c $(o)/autoconf.h
106         $(M)CC $<
107         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
108
109 $(o)/%.o: %.c $(o)/autoconf.h
110         $(M)CC $<
111         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
112
113 %.o: %.c $(o)/autoconf.h
114         $(M)CC $<
115         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -c -o $@ $<
116
117 $(o)/%.oo: $(s)/%.c $(o)/autoconf.h
118         $(M)CC-SO $<
119         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
120
121 $(o)/%.oo: %.c $(o)/autoconf.h
122         $(M)CC-SO $<
123         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
124
125 %.oo: %.c $(o)/autoconf.h
126         $(M)CC-SO $<
127         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) $(CSHARED) -c -o $@ $<
128
129 $(o)/%-tt.o: $(s)/%.c $(o)/autoconf.h
130         $(M)CC-TEST $<
131         $(Q)DEPENDENCIES_OUTPUT="$(o)/depend.new $@" $(CC) $(CFLAGS) -DTEST -c -o $@ $<
132
133 # Rules for testing
134
135 $(o)/%-t: $(o)/%-tt.o $(TESTING_DEPS)
136         $(M)LD-TEST $@
137         $(Q)$(CC) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" $(BUILDSYS)/lib-flags $^) $(LIBS)
138
139 $(o)/%.test: $(s)/%.t $(BUILDSYS)/tester
140         $(M)TEST $@
141         $(Q)$(BUILDSYS)/tester --rundir=run $(TESTERFLAGS) $< && touch $@
142
143 # Rules for binaries
144
145 BINDIR=bin
146
147 $(o)/%: $(o)/%.o
148         $(M)LD $@
149         $(Q)$(CC) $(LDFLAGS) -o $@ $(shell PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" $(BUILDSYS)/lib-flags $^) $(LIBS)
150         $(Q)$(call symlink,$@,run/$(BINDIR))
151
152 $(o)/%: $(s)/%.sh $(o)/config.mk $(BUILDSYS)/genconf
153         $(M)PP $<
154         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
155         $(Q)chmod +x $@
156         $(Q)$(call symlink,$@,run/$(BINDIR))
157
158 $(o)/%: %.sh $(o)/config.mk $(BUILDSYS)/genconf
159         $(M)PP $<
160         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
161         $(Q)chmod +x $@
162         $(Q)$(call symlink,$@,run/$(BINDIR))
163
164 $(o)/%: $(s)/%.pl $(o)/config.mk $(BUILDSYS)/genconf
165         $(M)PP $<
166         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
167         $(Q)chmod +x $@
168         $(Q)$(call symlink,$@,run/$(BINDIR))
169
170 $(o)/%: %.pl $(o)/config.mk $(BUILDSYS)/genconf
171         $(M)PP $<
172         $(Q)$(BUILDSYS)/genconf $< $@ $(o)/config.mk
173         $(Q)chmod +x $@
174         $(Q)$(call symlink,$@,run/$(BINDIR))
175
176 PERL_MODULE_DIR=UCW
177
178 $(o)/%.pm: $(s)/%.pm
179         $(M)"PM $< -> run/lib/perl5/$(PERL_MODULE_DIR)/$(@F)"
180         $(Q)cp $^ $@
181         $(Q)$(call symlink,$@,run/lib/perl5/$(PERL_MODULE_DIR))
182
183 $(o)/%.pm: %.pm
184         $(M)"PM $< -> run/lib/perl/$(PERL_MODULE_DIR)/$(@F)"
185         $(Q)cp $^ $@
186         $(Q)$(call symlink,$@,run/lib/perl5/$(PERL_MODULE_DIR))
187
188 # Rules for data files
189
190 DATADIR=lib
191
192 $(DATAFILES): $(o)/%: $(s)/%
193         $(M)DATA $<
194         $(Q)cp $^ $@
195         $(Q)$(call symlink,$@,run/$(DATADIR))
196
197 # Rules for documentation
198
199 $(o)/%.html: $(o)/%.txt $(BUILDSYS)/asciidoc.conf $(BUILDSYS)/asciidoc-xhtml.conf run/$(DOCDIR)/$(DOC_MODULE)/.dir-stamp
200         $(M)"DOC-HTML $<"
201         $(Q)asciidoc -e -f $(BUILDSYS)/asciidoc.conf -f $(BUILDSYS)/asciidoc-xhtml.conf -f /etc/asciidoc/asciidoc.conf -f /etc/asciidoc/xhtml11.conf $<
202         $(Q)$(call symlink,$@,run/$(DOCDIR)/$(DOC_MODULE))
203
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
208         $(M)"DOC-DEFS $@"
209         $(Q)echo $@: $(DOC_HEAD) $(DOC_LIST) >> $(o)/depend.new
210         $(Q)$(BUILDSYS)/doc-defs $(DOC_HEAD) $@ $(DOC_LIST)
211
212 $(patsubst %.html,%.txt,$(DOCS)): $(o)/%.txt: $(s)/%.txt $(BUILDSYS)/doc-extract
213         $(M)"DOC-EXT $<"
214         $(Q)$(BUILDSYS)/doc-extract $< $@ $(o)/depend.new $(s) $(patsubst %.txt,%.deflist,$@)
215
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.
219 .SECONDARY:
220
221 .PHONY: all clean distclean runtree programs api datafiles force tags configs dust install docs tests