]> git.ipfire.org Git - thirdparty/glibc.git/blob - Rules
mktime: simplify offset guess
[thirdparty/glibc.git] / Rules
1 # Copyright (C) 1991-2018 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
13
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
17
18 #
19 # Rules for making a subdirectory in the GNU C library.
20 # Each subdirectory Makefile defines some variables and includes this.
21 #
22 ifneq (,)
23 This makefile requires GNU Make.
24 endif
25
26 all: # Don't let the default goal come from Makeconfig.
27
28 include $(firstword $(..) ../)Makeconfig
29
30 ifndef subdir
31 Each subdirectory makefile must define the `subdir' variable.
32 endif
33 # This ` unconfuses emacs.
34 # This is benign and useless in GNU make before 3.63.
35 export subdir := $(subdir)
36 \f
37 # This is the default target; it makes the library and auxiliary programs.
38 .PHONY: all
39 all: objs lib others
40
41 ifeq ($(build-programs),yes)
42 others: $(addprefix $(objpfx),$(extra-objs) \
43 $(install-lib) \
44 $(install-bin) $(install-bin-script) \
45 $(install-rootsbin) $(install-sbin))
46 else
47 others: $(addprefix $(objpfx),$(extra-objs) \
48 $(install-lib))
49 endif
50
51 ifneq "$(findstring env,$(origin headers))" ""
52 headers :=
53 endif
54
55 ifneq "$(findstring env,$(origin generated))" ""
56 generated :=
57 endif
58
59 ifneq "$(findstring env,$(origin common-generated))" ""
60 common-generated :=
61 endif
62
63 # See below. This must be set before Makerules processes it.
64 before-compile += $(common-objpfx)bits/stdio_lim.h
65
66 include $(..)Makerules
67
68 .PHONY: subdir_lib
69 subdir_lib: lib-noranlib
70
71 # Some subdirs need to install a dummy library.
72 # They can use "$(objpfx)libfnord.a: $(dep-dummy-lib); $(make-dummy-lib)".
73 dep-dummy-lib = $(common-objpfx)dummy.o
74 define make-dummy-lib
75 $(AR) cr$(verbose) $@ $<
76 endef
77
78 $(common-objpfx)dummy.c:
79 rm -f $@
80 (echo 'extern void __dummy__ (void);'; \
81 echo 'void __dummy__ (void) { }') > $@
82 common-generated += dummy.o dummy.c
83
84 ifneq "$(headers)" ""
85 # Special test of all the installed headers in this directory.
86 tests-special += $(objpfx)check-installed-headers-c.out
87 libof-check-installed-headers-c := testsuite
88 $(objpfx)check-installed-headers-c.out: \
89 $(..)scripts/check-installed-headers.sh $(headers)
90 $(SHELL) $(..)scripts/check-installed-headers.sh c \
91 "$(CC) $(filter-out -std=%,$(CFLAGS)) -D_ISOMAC $(+includes)" \
92 $(headers) > $@; \
93 $(evaluate-test)
94
95 ifneq "$(CXX)" ""
96 tests-special += $(objpfx)check-installed-headers-cxx.out
97 libof-check-installed-headers-cxx := testsuite
98 $(objpfx)check-installed-headers-cxx.out: \
99 $(..)scripts/check-installed-headers.sh $(headers)
100 $(SHELL) $(..)scripts/check-installed-headers.sh c++ \
101 "$(CXX) $(filter-out -std=%,$(CXXFLAGS)) -D_ISOMAC $(+includes)" \
102 $(headers) > $@; \
103 $(evaluate-test)
104 endif
105 endif
106 \f
107 # This makes all the auxiliary and test programs.
108
109 .PHONY: others tests bench bench-build
110
111 # Test programs for the pretty printers.
112 tests-printers-programs := $(addprefix $(objpfx),$(tests-printers))
113
114 # .out files with the output of running the pretty printer tests.
115 tests-printers-out := $(patsubst %,$(objpfx)%.out,$(tests-printers))
116
117 ifeq ($(build-programs),yes)
118 others: $(addprefix $(objpfx),$(others) $(sysdep-others) $(extra-objs))
119 else
120 others: $(addprefix $(objpfx),$(extra-objs))
121 endif
122
123 # Generate constant files for Python pretty printers if required.
124 others: $(py-const)
125
126 ifeq ($(run-built-tests),no)
127 tests: $(addprefix $(objpfx),$(filter-out $(tests-unsupported), \
128 $(tests) $(tests-internal) \
129 $(tests-container)) \
130 $(test-srcs)) $(tests-special) \
131 $(tests-printers-programs)
132 xtests: tests $(xtests-special)
133 else
134 tests: $(tests:%=$(objpfx)%.out) $(tests-internal:%=$(objpfx)%.out) \
135 $(tests-container:%=$(objpfx)%.out) \
136 $(tests-special) $(tests-printers-out)
137 xtests: tests $(xtests:%=$(objpfx)%.out) $(xtests-special)
138 endif
139
140 tests-special-notdir = $(patsubst $(objpfx)%, %, $(tests-special))
141 xtests-special-notdir = $(patsubst $(objpfx)%, %, $(xtests-special))
142 ifeq ($(run-built-tests),no)
143 tests-expected =
144 else
145 tests-expected = $(tests) $(tests-internal) $(tests-printers) \
146 $(tests-container)
147 endif
148 tests:
149 $(..)scripts/merge-test-results.sh -s $(objpfx) $(subdir) \
150 $(sort $(tests-expected) $(tests-special-notdir:.out=)) \
151 > $(objpfx)subdir-tests.sum
152 xtests:
153 $(..)scripts/merge-test-results.sh -s $(objpfx) $(subdir) \
154 $(sort $(xtests) $(xtests-special-notdir:.out=)) \
155 > $(objpfx)subdir-xtests.sum
156
157 ifeq ($(build-programs),yes)
158 binaries-all-notests = $(others) $(sysdep-others)
159 binaries-all-tests = $(tests) $(tests-internal) $(xtests) $(test-srcs) \
160 $(tests-container)
161 binaries-all = $(binaries-all-notests) $(binaries-all-tests)
162 binaries-static-notests = $(others-static)
163 binaries-static-tests = $(tests-static) $(xtests-static)
164 binaries-static = $(binaries-static-notests) $(binaries-static-tests)
165 ifeq (yesyes,$(have-fpie)$(build-shared))
166 binaries-pie-tests = $(tests-pie) $(xtests-pie)
167 binaries-pie-notests = $(others-pie)
168 else
169 binaries-pie-tests =
170 binaries-pie-notests =
171 endif
172 else
173 binaries-all-notests =
174 binaries-all-tests = $(tests) $(tests-internal) $(xtests) $(test-srcs)
175 binaries-all = $(binaries-all-tests)
176 binaries-static-notests =
177 binaries-static-tests =
178 binaries-static =
179 binaries-pie-tests =
180 binaries-pie-notests =
181 endif
182
183 binaries-pie = $(binaries-pie-tests) $(binaries-pie-notests)
184 binaries-shared-tests = $(filter-out $(binaries-pie) $(binaries-static), \
185 $(binaries-all-tests))
186 binaries-shared-notests = $(filter-out $(binaries-pie) $(binaries-static), \
187 $(binaries-all-notests))
188
189 ifneq "$(strip $(binaries-shared-notests))" ""
190 $(addprefix $(objpfx),$(binaries-shared-notests)): %: %.o \
191 $(sort $(filter $(common-objpfx)lib%,$(link-libc))) \
192 $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
193 $(+link)
194 endif
195
196 ifneq "$(strip $(binaries-shared-tests))" ""
197 $(addprefix $(objpfx),$(binaries-shared-tests)): %: %.o \
198 $(link-extra-libs-tests) \
199 $(sort $(filter $(common-objpfx)lib%,$(link-libc))) \
200 $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
201 $(+link-tests)
202 endif
203
204 ifneq "$(strip $(binaries-pie-tests))" ""
205 $(addprefix $(objpfx),$(binaries-pie-tests)): %: %.o \
206 $(link-extra-libs-tests) \
207 $(sort $(filter $(common-objpfx)lib%,$(link-libc))) \
208 $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
209 $(+link-pie-tests)
210 endif
211
212 ifneq "$(strip $(binaries-pie-notests))" ""
213 $(addprefix $(objpfx),$(binaries-pie-notests)): %: %.o \
214 $(sort $(filter $(common-objpfx)lib%,$(link-libc))) \
215 $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
216 $(+link-pie)
217 endif
218
219 ifneq "$(strip $(binaries-static-notests))" ""
220 $(addprefix $(objpfx),$(binaries-static-notests)): %: %.o \
221 $(sort $(filter $(common-objpfx)lib%,$(link-libc-static))) \
222 $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
223 $(+link-static)
224 endif
225
226 ifneq "$(strip $(binaries-static-tests))" ""
227 $(addprefix $(objpfx),$(binaries-static-tests)): %: %.o \
228 $(link-extra-libs-tests) \
229 $(sort $(filter $(common-objpfx)lib%,$(link-libc-static-tests))) \
230 $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
231 $(+link-static-tests)
232 endif
233
234 ifneq "$(strip $(tests) $(tests-internal) $(xtests) $(test-srcs))" ""
235 # These are the implicit rules for making test outputs
236 # from the test programs and whatever input files are present.
237
238 define make-test-out
239 $(if $($*-ENV-only),$(test-wrapper-env-only) $($*-ENV-only),\
240 $(test-wrapper-env) $(run-program-env) $($*-ENV)) \
241 $(host-test-program-cmd) $($*-ARGS)
242 endef
243 $(objpfx)%.out: %.input $(objpfx)%
244 $(make-test-out) > $@ < $(word 1,$^); \
245 $(evaluate-test)
246 $(objpfx)%.out: /dev/null $(objpfx)% # Make it 2nd arg for canned sequence.
247 $(make-test-out) > $@; \
248 $(evaluate-test)
249
250
251 # Any tests that require an isolated container (filesystem, network
252 # and pid namespaces) in which to run, should be added to
253 # tests-container.
254 $(tests-container:%=$(objpfx)%.out): $(objpfx)%.out : $(if $(wildcard $(objpfx)%.files),$(objpfx)%.files,/dev/null) $(objpfx)%
255 $(test-wrapper-env) $(run-program-env) $(run-via-rtld-prefix) \
256 $(common-objpfx)support/test-container env $(run-program-env) $($*-ENV) \
257 $(host-test-program-cmd) $($*-ARGS) > $@; \
258 $(evaluate-test)
259
260
261 # tests-unsupported lists tests that we will not try to build at all in
262 # this configuration. Note this runs every time because it does not
263 # actually create its target. The dependency on Makefile is meant to
264 # ensure that it runs after a Makefile change to add a test to the list
265 # when it previously ran and produced a .out file (probably for a failure).
266 ifneq "$(strip $(tests-unsupported))" ""
267 $(tests-unsupported:%=$(objpfx)%.out): $(objpfx)%.out: Makefile
268 @rm -f $@
269 $(..)scripts/evaluate-test.sh $(patsubst $(common-objpfx)%.out,%,$@) \
270 77 false false > $(@:.out=.test-result)
271 endif
272
273 endif # tests
274
275 ifneq "$(strip $(tests-printers))" ""
276
277 # Static pattern rule for building the test programs for the pretty printers.
278 $(tests-printers-programs): %: %.o $(tests-printers-libs) \
279 $(sort $(filter $(common-objpfx)lib%,$(link-libc-static-tests))) \
280 $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
281 $(+link-printers-tests)
282
283 # Add the paths to the generated constants file and test_common_printers.py
284 # to PYTHONPATH so the test scripts can find them.
285 py-env := PYTHONPATH=$(py-const-dir):$(..)scripts:$${PYTHONPATH}
286
287 # Static pattern rule that matches the test-* targets to their .c and .py
288 # prerequisites. It'll run the corresponding test script for each test program
289 # we compiled and place its output in the corresponding .out file.
290 # The pretty printer files and test_common_printers.py must be present for all.
291 $(tests-printers-out): $(objpfx)%.out: $(objpfx)% %.py %.c $(pretty-printers) \
292 $(..)scripts/test_printers_common.py
293 $(test-wrapper-env) $(py-env) \
294 $(PYTHON) $*.py $*.c $(objpfx)$* $(pretty-printers) > $@; \
295 $(evaluate-test)
296 endif
297
298 \f
299 .PHONY: distclean realclean subdir_distclean subdir_realclean \
300 subdir_clean subdir_mostlyclean subdir_testclean
301 subdir_mostlyclean: mostlyclean
302 subdir_clean: clean
303 subdir_distclean: distclean
304 subdir_realclean: realclean
305 subdir_testclean: do-tests-clean
306 realclean: distclean
307 distclean: clean
308
309 # We want to install everything except the library itself, but update all
310 # our portions of the library because the parent make will install it later
311 # (likewise the stubs file).
312 .PHONY: subdir_install
313 subdir_install: install-no-libc.a lib-noranlib stubs
314
315 .PHONY: subdir_objs subdir_stubs
316 subdir_objs: objs
317 subdir_stubs: stubs
318
319 # Target required by the Hurd to ensure that all the MiG-generated
320 # headers are in place before building a subdirectory.
321 .PHONY: before-compile
322 before-compile: $(before-compile)
323
324 $(common-objpfx)dummy.o: $(common-objpfx)dummy.c $(before-compile);
325 $(compile-command.c)
326
327 # Local Variables:
328 # mode: makefile
329 # End: