* include/libc-symbols.h (__libc_freeres_fn_section, libc_freeres_fn):
[platform/upstream/glibc.git] / Makerules
1 # Copyright (C) 1991-1999,2000,01,02 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, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 # 02111-1307 USA.
18
19 #
20 #       Common rules for making the GNU C library.  This file is included
21 #       by the top-level Makefile and by all subdirectory makefiles
22 #       (through Rules).
23 #
24 ifneq (,)
25 This makefile requires GNU Make.
26 endif
27
28 REQUIRED_MAKE_VERSION = 3.74
29 REAL_MAKE_VERSION = $(firstword $(MAKE_VERSION))
30
31 ifneq ($(REQUIRED_MAKE_VERSION), \
32        $(firstword $(sort $(REAL_MAKE_VERSION) $(REQUIRED_MAKE_VERSION))))
33 Wrong GNU Make version.  See above for the version needed.
34 endif
35
36
37 ifdef   subdir
38 ..      := ../
39 endif   # subdir
40
41 # If `sources' was defined by the parent makefile, undefine it so
42 # we will later get it from wildcard search in this directory.
43 ifneq   "$(findstring env,$(origin sources))" ""
44 sources :=
45 endif
46
47 oPATH := $(PATH)
48 PATH := this definition should take precedence over $(oPATH)
49 ifeq ($(PATH),$(oPATH))
50 You must not use the -e flag when building the GNU C library.
51 else
52 PATH := $(oPATH)
53 endif
54 \f
55 ifndef +included-Makeconfig
56 include $(..)Makeconfig
57 endif
58
59 # `configure' writes a definition of `config-sysdirs' in `config.make'.
60 sysdirs = $(strip $(full_config_sysdirs))
61
62 +sysdir_pfx = $(common-objpfx)
63
64 export sysdirs := $(sysdirs)
65
66 +sysdep_dirs := $(full_config_sysdirs)
67 ifdef objdir
68 +sysdep_dirs := $(objdir) $(+sysdep_dirs)
69 endif
70
71 # Add -I switches to get the right sysdep directories.
72 # `+includes' in Makeconfig references $(+sysdep-includes).
73 +sysdep-includes := $(addprefix -I,$(+sysdep_dirs))
74
75 # This variable is used in ``include $(o-iterator)'' after defining
76 # $(o-iterator-doit) to produce some desired rule using $o for the object
77 # suffix, and setting $(object-suffixes-left) to $(object-suffixes); a copy
78 # is produced for each object suffix in use.
79 o-iterator = $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-left))
80 \f
81 # Include any system-specific makefiles.
82
83 # This is here so things in sysdep Makefiles can easily depend on foo.h as
84 # appropriate and not worry about where foo.h comes from, which may be
85 # system dependent and not known by that Makefile.
86 vpath %.h $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
87                                       $(+sysdep_dirs) $(..)))
88
89 # The same is true for RPC source files.
90 vpath %.x $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
91                                       $(+sysdep_dirs) $(..)))
92
93 # Some sysdep makefiles use this to distinguish being included here from
94 # being included individually by a subdir makefile (hurd/Makefile needs this).
95 in-Makerules := yes
96
97 sysdep-makefiles := $(wildcard $(full_config_sysdirs:=/Makefile))
98 ifneq (,$(sysdep-makefiles))
99 include $(sysdep-makefiles)
100 endif
101
102
103 # Reorder before-compile so that mach things come first, and hurd things
104 # second, before all else.  The mach and hurd subdirectories have many
105 # generated header files which the much of rest of the library depends on,
106 # so it is best to build them first (and mach before hurd, at that).
107 before-compile := $(filter $(common-objpfx)mach% $(common-objpfx)hurd%,\
108                            $(before-compile)) \
109                   $(filter-out $(common-objpfx)mach% $(common-objpfx)hurd%,\
110                                $(before-compile))
111
112 # Even before that, we need abi-versions.h which is generated right here.
113 ifeq ($(versioning),yes)
114 ifndef avoid-generated
115 before-compile := $(common-objpfx)abi-versions.h $(before-compile)
116 $(common-objpfx)abi-versions.h: $(..)scripts/abi-versions.awk \
117                                 $(common-objpfx)Versions.all
118         LC_ALL=C $(AWK) -v oldest_abi=$(oldest-abi) -f $^ > $@T
119         mv -f $@T $@
120
121 $(common-objpfx)%.latest: $(common-objpfx)abi-versions.h
122         sed -n '/ VERSION_$*_/{s/^.*_\([A-Z0-9_]*\).*$$/\1/;h;};$${g;p;}' \
123             $(common-objpfx)abi-versions.h > $@T
124         mv -f $@T $@
125 endif # avoid-generated
126 endif # $(versioning) = yes
127
128
129 # Remove existing files from `before-compile'.  Things are added there when
130 # they must exist for dependency generation to work right, but once they
131 # exist there is no further need for every single file to depend on them,
132 # and those gratuitous dependencies result in many gratuitous
133 # recompilations.
134 before-compile := $(filter-out $(wildcard $(before-compile)),$(before-compile))
135
136 # Don't let any before-compile file be an intermediate and get removed.
137 ifdef before-compile
138 $(before-compile):
139 endif
140 \f
141 # Generate an ordered list of implicit rules which find the source files in
142 # each sysdep directory.  The old method was to use vpath to search all the
143 # sysdep directories.  However, that had the problem that a .S file in a
144 # later directory would be chosen over a .c file in an earlier directory,
145 # which does not preserve the desired sysdeps ordering behavior.
146
147 # When making the list of .d files to include, we can't know which ones
148 # have source in .s files, and thus do not in fact need a .d file.
149 # So we must define rules to make .d files for .s files.
150 define make-dummy-dep
151 $(addprefix ln $(common-objpfx)dummy.d ,$(filter-out $(wildcard $@),$@))
152 endef
153 $(common-objpfx)dummy.d:
154         echo '# .s files cannot contain includes, so they need no deps.' > $@
155
156 # It matters that this set of rules, for compiling from sources in
157 # the current directory (the $srcdir/$subdir) come before the
158 # generated sysdep rules in included from sysd-rules below.  When
159 # compiling in the source tree, generated sources go into the current
160 # directory, and those should be chosen before any sources in sysdeps.
161 define o-iterator-doit
162 $(objpfx)%$o: %.S $(before-compile); $$(compile-command.S)
163 endef
164 object-suffixes-left := $(all-object-suffixes)
165 include $(o-iterator)
166 $(objpfx)%.d: %.S $(before-compile); $(+make-deps)
167
168 define o-iterator-doit
169 $(objpfx)%$o: %.s $(before-compile); $$(compile-command.s)
170 endef
171 object-suffixes-left := $(all-object-suffixes)
172 include $(o-iterator)
173 $(objpfx)%.d: %.s $(common-objpfx)dummy.d; $(make-dummy-dep)
174
175 define o-iterator-doit
176 $(objpfx)%$o: %.c $(before-compile); $$(compile-command.c)
177 endef
178 object-suffixes-left := $(all-object-suffixes)
179 include $(o-iterator)
180 $(objpfx)%.d: %.c $(before-compile); $(+make-deps)
181
182 # Omit the objpfx rules when building in the source tree, because
183 # objpfx is empty and so these rules just override the ones above.
184 ifdef objpfx
185 # Define first rules to find the source files in $(objpfx).
186 # Generated source files will end up there.
187 define o-iterator-doit
188 $(objpfx)%$o: $(objpfx)%.S $(before-compile); $$(compile-command.S)
189 endef
190 object-suffixes-left := $(all-object-suffixes)
191 include $(o-iterator)
192 $(objpfx)%.d: $(objpfx)%.S $(before-compile); $(+make-deps)
193
194 define o-iterator-doit
195 $(objpfx)%$o: $(objpfx)%.s $(before-compile); $$(compile-command.s)
196 endef
197 object-suffixes-left := $(all-object-suffixes)
198 include $(o-iterator)
199 $(objpfx)%.d: $(objpfx)%.s $(common-objpfx)dummy.d; $(make-dummy-dep)
200
201 define o-iterator-doit
202 $(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c)
203 endef
204 object-suffixes-left := $(all-object-suffixes)
205 include $(o-iterator)
206 $(objpfx)%.d: $(objpfx)%.c $(before-compile); $(+make-deps)
207 endif
208
209 # System-dependent makefiles can put in `inhibit-sysdep-asm' wildcard
210 # patterns matching sysdep directories whose assembly source files should
211 # be suppressed.
212 ifdef inhibit-sysdep-asm
213 define open-check-inhibit-asm
214 case $$sysdir in $(subst $(empty) ,|,$(inhibit-sysdep-asm))) : ;; *)
215 endef
216 close-check-inhibit-asm = ;; esac ;
217 endif
218
219 -include $(+sysdir_pfx)sysd-rules
220 ifneq ($(sysd-rules-sysdirs),$(config-sysdirs))
221 # The value of $(+sysdep_dirs) the sysd-rules was computed for
222 # differs from the one we are using now.  So force a rebuild of sysd-rules.
223 sysd-rules-force = FORCE
224 FORCE:
225 endif
226 $(+sysdir_pfx)sysd-rules: $(+sysdir_pfx)config.make $(..)Makerules \
227                           $(wildcard $(foreach dir,$(sysdirs),\
228                                                $(dir)/Makefile))\
229                           $(sysd-rules-force)
230         -@rm -f $@T
231         (echo 'sysd-rules-sysdirs := $(config-sysdirs)';                      \
232          for dir in $(config-sysdirs:%='$$(..)%'); do                         \
233            for o in $(all-object-suffixes); do \
234              $(open-check-inhibit-asm) \
235              echo "\$$(objpfx)%$$o: $$dir/%.S \$$(before-compile); \
236                   \$$(compile-command.S)";                                    \
237              echo "\$$(objpfx)%$$o: $$dir/%.s \$$(before-compile); \
238                   \$$(compile-command.s)";                                    \
239              echo "\$$(objpfx)rtld-%$$o: $$dir/%.S \$$(before-compile); \
240                   \$$(compile-command.S)";                                    \
241              echo "\$$(objpfx)rtld-%$$o: $$dir/%.s \$$(before-compile); \
242                   \$$(compile-command.s)";                                    \
243              $(close-check-inhibit-asm) \
244              echo "\$$(objpfx)%$$o: $$dir/%.c \$$(before-compile); \
245                   \$$(compile-command.c)";                                    \
246              echo "\$$(objpfx)rtld-%$$o: $$dir/%.c \$$(before-compile); \
247                   \$$(compile-command.c)";                                    \
248            done; \
249            $(open-check-inhibit-asm) \
250            echo "\$$(objpfx)%.d: $$dir/%.s \$$(common-objpfx)dummy.d; \
251                 \$$(make-dummy-dep)";                          \
252            echo "\$$(objpfx)rtld-%.d: $$dir/%.s \$$(common-objpfx)dummy.d; \
253                 \$$(make-dummy-dep)";                          \
254            echo "\$$(objpfx)%.d: $$dir/%.S \$$(before-compile); \
255                 \$$(+make-deps)";                                             \
256            echo "\$$(objpfx)rtld-%.d: $$dir/%.S \$$(before-compile); \
257                 \$$(+make-deps)";                                             \
258            $(close-check-inhibit-asm)   \
259            echo "\$$(objpfx)%.d: $$dir/%.c \$$(before-compile); \
260                 \$$(+make-deps)";                                             \
261            echo "\$$(objpfx)rtld-%.d: $$dir/%.c \$$(before-compile); \
262                 \$$(+make-deps)";                                             \
263          done;                                                                \
264          echo 'sysd-rules-done = t') > $@T
265         mv -f $@T $@
266
267 ifndef sysd-rules-done
268 # Don't do deps until this exists, because it provides rules to make the deps.
269 no_deps=t
270 endif
271
272 # Generate version maps, but wait until sysdep-subdirs is known
273 ifeq ($(sysd-sorted-done),t)
274 ifeq ($(versioning),yes)
275 -include $(common-objpfx)sysd-versions
276 $(addprefix $(common-objpfx),$(version-maps)): $(common-objpfx)sysd-versions
277 common-generated += $(version-maps)
278 postclean-generated += sysd-versions Versions.all abi-versions.h \
279                        Versions.def.v.i Versions.def.v Versions.v.i Versions.v
280
281 ifndef avoid-generated
282 ifneq ($(sysd-versions-subdirs),$(all-subdirs) $(config-sysdirs))
283 sysd-versions-force = FORCE
284 FORCE:
285 endif
286 # See %.v/%.v.i implicit rules in Makeconfig.
287 $(common-objpfx)Versions.def.v.i: $(..)Versions.def \
288                                   $(wildcard $(add-ons:%=$(..)%/Versions.def))
289 $(common-objpfx)Versions.all: $(..)scripts/firstversions.awk \
290                               $(common-objpfx)soversions.i \
291                               $(common-objpfx)Versions.def.v
292         { while read lib version setname; do \
293             test -z "$$setname" || echo "$$lib : $$setname"; \
294           done < $(word 2,$^); \
295           cat $(word 3,$^); \
296         } | LC_ALL=C $(AWK) -f $< > $@T
297         mv -f $@T $@
298 # See %.v/%.v.i implicit rules in Makeconfig.
299 $(common-objpfx)Versions.v.i: $(wildcard $(all-subdirs:%=$(..)%/Versions)) \
300                               $(wildcard $(sysdirs:%=%/Versions)) \
301                               $(common-objpfx)abi-versions.h \
302                               $(sysd-versions-force)
303 $(common-objpfx)sysd-versions: $(common-objpfx)Versions.all \
304                                $(common-objpfx)Versions.v \
305                                $(..)scripts/versions.awk
306         ( echo 'sysd-versions-subdirs = $(all-subdirs) $(config-sysdirs)' ; \
307           cat $(word 2,$^) \
308           | LC_ALL=C $(AWK) -v buildroot=$(common-objpfx) -v defsfile=$< \
309                             -v move_if_change='$(move-if-change)' \
310                             -f $(word 3,$^); \
311         ) > $@T
312         mv -f $@T $@
313 endif # avoid-generated
314 endif # $(versioning) = yes
315 endif # sysd-sorted-done
316
317
318 ifndef compile-command.S
319 compile-command.S = $(compile.S) $(OUTPUT_OPTION)
320 endif
321 ifndef compile-command.s
322 compile-command.s = $(COMPILE.s) $< $(OUTPUT_OPTION)
323 endif
324 ifndef compile-command.c
325 compile-command.c = $(compile.c) $(OUTPUT_OPTION)
326 endif
327
328 # GCC can grok options after the file name, and it looks nicer that way.
329 compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS)
330 compile.S = \
331   $(CC) $< -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@))
332 COMPILE.S = \
333   $(CC) -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@))
334 COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS)
335
336 # If we want to generate MD5 checksums for the sources do this now.
337 ifeq ($(md5),yes)
338 generate-md5 = ; rm -f $(@:.d=.md5); \
339 $(CC) -E $< $(CFLAGS) $(CPPFLAGS) $($(<:$*.%=%)-CPPFLAGS) | \
340 sed '/^\#/d;/^[[:space:]]*$$/d' | md5sum > $(@:.d=.md5)
341 else
342 generate-md5 =
343 endif
344
345 # We need this for the output to go in the right place.  It will default to
346 # empty if make was configured to work with a cc that can't grok -c and -o
347 # together.  You can't compile the C library with such a compiler.
348 OUTPUT_OPTION = -o $@
349
350 # We need the $(CFLAGS) to be in there to have the right predefines during
351 # the dependency run for C sources.  But having it for assembly sources can
352 # get the wrong predefines.
353 S-CPPFLAGS = $(asm-CPPFLAGS)
354 define +make-deps
355 $(make-target-directory)
356 $(+mkdep) $< $(if $(filter %.c,$<),$(CFLAGS)) \
357              $(CPPFLAGS) $($(<:$*.%=%)-CPPFLAGS) | sed \
358 -e 's,$(subst .,\.,$*)\.o,$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
359 $(sed-remove-objpfx) > $(@:.d=.T)
360 mv -f $(@:.d=.T) $@ $(generate-md5)
361 endef
362 ifneq (,$(objpfx))
363 # Continuation lines here are dangerous because they introduce spaces!
364 define sed-remove-objpfx
365 -e 's@ $(subst .,\.,$(subst @,\@,$(common-objpfx)))@ $$(common-objpfx)@g' \
366 -e 's@^$(subst .,\.,$(subst @,\@,$(common-objpfx)))@$$(common-objpfx)@g'
367 endef
368 endif
369 \f
370 # Modify the list of routines we build for different targets
371
372 ifeq (yesyes,$(build-shared)$(elf))
373 ifndef libc.so-version
374 # Undefine this because it can't work when we libc.so is unversioned.
375 static-only-routines =
376 endif
377 endif
378
379 # Bounded pointer thunks are only built for *.ob
380 elide-bp-thunks = $(addprefix $(bppfx),$(bp-thunks))
381
382 elide-routines.oS += $(filter-out $(static-only-routines),\
383                                   $(routines) $(aux) $(sysdep_routines)) \
384                      $(elide-bp-thunks)
385 elide-routines.os += $(static-only-routines) $(elide-bp-thunks)
386
387 # If we have versioned code we don't need the old versions in any of the
388 # static libraries.
389 elide-routines.o  += $(shared-only-routines) $(elide-bp-thunks)
390 elide-routines.op += $(shared-only-routines) $(elide-bp-thunks)
391 elide-routines.og += $(shared-only-routines) $(elide-bp-thunks)
392 elide-routines.ob += $(shared-only-routines)
393 \f
394 # Shared library building.
395
396 ifeq (yes,$(build-shared))
397
398 # Reference map file only when versioning is selected and a map file name
399 # is given.
400 ifeq ($(versioning),yes)
401 map-file = $(firstword $($(@F:.so=-map)) \
402                        $(addprefix $(common-objpfx), \
403                                    $(filter $(@F:.so=.map),$(version-maps))))
404 load-map-file = $(map-file:%=-Wl,--version-script=%)
405 endif
406
407 # Pattern rule to build a shared object from an archive of PIC objects.
408 # This must come after the installation rules so Make doesn't try to
409 # build shared libraries in place from the installed *_pic.a files.
410 # $(LDLIBS-%.so) may contain -l switches to generate run-time dependencies
411 # on other shared objects.
412 lib%.so: lib%_pic.a $(+preinit) $(+postinit) $(+interp)
413 ifneq (,$(findstring aix,$(config-os)))
414         (echo '#!'; \
415          dump -g $< | sed '1,6d' | cut -f2 | sort | uniq) > $(<:a=exp)
416 endif
417         $(build-shlib)
418
419 ifeq ($(elf),yes)
420 define build-shlib-helper
421 $(LINK.o) -shared $(static-libgcc) -Wl,-O1 $(sysdep-LDFLAGS) $(config-LDFLAGS) \
422           $(extra-B-$(@F:lib%.so=%).so) -B$(csu-objpfx) \
423           $(extra-B-$(@F:lib%.so=%).so) $(load-map-file) \
424           -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \
425           $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
426           -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
427 endef
428 else
429 ifneq (,$(findstring aix,$(config-os)))
430 define build-shlib-helper
431 $(LINK.o) -Wl,-G,-bM:SRE,-bnoentry,-bE:$(<:a=exp) \
432           $(sysdep-LDFLAGS) $(config-LDFLAGS) $(extra-B-$(@F:lib%.so=%).so) \
433           $(extra-B-$(@F:lib%.so=%).so) $(load-map-file) \
434           $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
435           -L$(subst :, -L,$(rpath-link))
436 endef
437 else
438 endif
439 endif
440
441 ifeq (yes,$(elf))
442 # binutils only position loadable notes into the first page for binaries,
443 # not for shared objects
444 define build-shlib
445 $(build-shlib-helper) \
446           -o $@.new $(csu-objpfx)abi-note.o -Wl,--verbose \
447           $(LDLIBS-$(@F:lib%.so=%).so) 2>&1 | \
448           sed -e '/^=========/,/^=========/!d;/^=========/d' \
449               -e 's/^.*\.hash[  ]*:.*$$/  .note.ABI-tag : { *(.note.ABI-tag) } &/' \
450               $(LDSEDCMD-$(@F:lib%.so=%).so) > $@.lds
451 rm -f $@.new
452 $(build-shlib-helper) -o $@ -T $@.lds \
453           $(csu-objpfx)abi-note.o $(build-shlib-objlist)
454 rm -f $@.lds
455 endef
456 else
457 ifneq (,$(findstring aix,$(config-os)))
458 define build-shlib
459 $(build-shlib-helper) \
460         -o $@ \
461         $(filter-out $(map-file) $(+preinit) $(+postinit),$^) \
462         $(no-whole-archive) $(LDLIBS-$(@F:lib%.so=%).so)
463 endef
464 define build-shlib
465 $(build-shlib-helper) \
466           $(build-shlib-objlist)
467 endef
468 endif
469 endif
470
471 ifneq (,$(findstring aix,$(config-os)))
472 define build-module-helper
473 $(LINK.o) -Wl,-G -Wl,-bM:SRE -Wl,-bnoentry -Wl,-bexpall \
474           $(sysdep-LDFLAGS) $(config-LDFLAGS) \
475           $(load-map-file) \
476           $(LDFLAGS.so) $(LDFLAGS-$(@F:%.so=%).so) \
477           -L$(subst :, -L,$(rpath-link)) -Wl,-L=$(rpath-link)
478 endef
479 else
480 define build-module-helper
481 $(LINK.o) -shared $(static-libgcc) $(sysdep-LDFLAGS) $(config-LDFLAGS) \
482           -B$(csu-objpfx) $(load-map-file) \
483           $(LDFLAGS.so) $(LDFLAGS-$(@F:%.so=%).so) \
484           -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
485 endef
486 endif
487
488 # This macro is similar to build-shlib but it does not define a soname
489 # and it does not depend on the destination name to start with `lib'.
490 ifeq (yes,$(elf))
491 # binutils only position loadable notes into the first page for binaries,
492 # not for shared objects
493 define build-module
494 $(build-module-helper) \
495           -o $@.new $(csu-objpfx)abi-note.o -Wl,--verbose \
496           $(LDLIBS-$(@F:lib%.so=%).so) 2>&1 | \
497           sed -e '/^=========/,/^=========/!d;/^=========/d' \
498               -e 's/^.*\.hash[  ]*:.*$$/  .note.ABI-tag : { *(.note.ABI-tag) } &/' \
499           > $@.lds
500 rm -f $@.new
501 $(build-module-helper) -o $@ -T $@.lds \
502           $(csu-objpfx)abi-note.o $(build-module-objlist)
503 rm -f $@.lds
504 endef
505 else
506 ifneq (,$(findstring aix,$(config-os)))
507 define build-module
508 $(build-module-helper) \
509           -o $@ \
510           $(filter-out $(map-file) $(+preinit) $(+postinit),$^) \
511           $(no-whole-archive) $(LDLIBS-$(@F:%.so=%).so)
512 endef
513 else
514 define build-module
515 define build-module
516 $(build-module-helper) \
517           -o $@ \
518           $(build-module-objlist)
519 endef
520 endif
521 endif
522
523 build-module-helper-objlist = \
524         $(patsubst %_pic.a,$(whole-archive) %_pic.a $(no-whole-archive),\
525                    $(filter-out $(map-file) $(+preinit) $(+postinit),$^))
526 whole-archive := -Wl,--whole-archive
527
528 build-module-objlist = $(build-module-helper-objlist) $(LDLIBS-$(@F:%.so=%).so)
529 build-shlib-objlist = $(build-module-helper-objlist) \
530                       $(LDLIBS-$(@F:lib%.so=%).so)
531
532 # Don't try to use -lc when making libc.so itself.
533 # Also omits crti.o and crtn.o, which we do not want
534 # since we define our own `.init' section specially.
535 LDFLAGS-c.so = -nostdlib -nostartfiles
536 # But we still want to link libc.so against $(gnulib).
537 LDLIBS-c.so += $(gnulib)
538 # Give libc.so an entry point and make it directly runnable itself.
539 LDFLAGS-c.so += -e __libc_main
540 # Force the backward compatibility EH functions to be linked.
541 LDFLAGS-c.so += -u __register_frame
542 # Pre-link the objects of libc_pic.a so that we can locally resolve
543 # COMMON symbols before we link against ld.so.  This is because ld.so
544 # contains some of libc_pic.a already, which will prevent the COMMONs
545 # from being allocated in libc.so, which introduces evil dependencies
546 # between libc.so and ld.so, which can make it impossible to upgrade.
547 ifeq ($(elf),yes)
548 $(common-objpfx)libc_pic.os: $(common-objpfx)libc_pic.a
549         $(LINK.o) -nostdlib -nostartfiles -r -o $@ \
550         $(LDFLAGS-c_pic.os) -Wl,-d -Wl,--whole-archive $^
551 LDSEDCMD-c.so = -e 's/^.*\*(\.dynbss).*$$/& __start___libc_freeres_ptrs = .; *(__libc_freeres_ptrs) __stop___libc_freeres_ptrs = .;/'
552 # Use our own special initializer and finalizer files for libc.so.
553 $(common-objpfx)libc.so: $(elfobjdir)/soinit.os \
554                          $(common-objpfx)libc_pic.os \
555                          $(elfobjdir)/sofini.os \
556                          $(elfobjdir)/interp.os $(elfobjdir)/ld.so
557         $(build-shlib)
558 ifeq ($(versioning),yes)
559 $(common-objpfx)libc.so: $(common-objpfx)libc.map
560 endif
561 common-generated += libc.so libc_pic.os
562 ifdef libc.so-version
563 $(common-objpfx)libc.so$(libc.so-version): $(common-objpfx)libc.so
564         $(make-link)
565 common-generated += libc.so$(libc.so-version)
566 endif
567 endif
568 else
569 ifneq (,$(findstring aix,$(config-os)))
570 $(common-objpfx)libc.so: $(common-objpfx)libc_pic.a
571         @rm -f $@
572         (echo '#!'; \
573          dump -g $^ | sed '1,6d' | cut -f2 | sort | uniq) > $(^:a=exp)
574         sed '/__mulh/d;/__mull/d;/__divss/d;/__divus/d;/__quoss/d;/__quous/d' \
575             /lib/syscalls.exp > $(common-objpfx)syscalls.exp
576         $(LINK.o) -G -bM:SRE -bnoentry -bE:$(^:a=exp) \
577                   -bE:$(common-objpfx)syscalls.exp \
578                   -bI:$(common-objpfx)syscalls.exp \
579                   -L$(common-objpfx) -o $@ $^
580 # AIX runtime ld wants libc.so to be libc.a(shr.o) hardwired
581         cp $@ $(common-objpfx)shr.o
582         $(AR) $(ARFLAGS) $(common-objpfx)libc.a $(common-objpfx)shr.o
583 endif
584 endif
585 \f
586 # Figure out the source filenames in this directory.
587
588 override sources := $(addsuffix .c,\
589                         $(filter-out $(elided-routines),\
590                             $(routines) $(aux) \
591                             $(sysdep_routines)))
592 sysdep_routines := $(sysdep_routines)
593
594 headers := $(headers) $(sysdep_headers)
595
596 # This is the list of all object files, gotten by
597 # replacing every ".c" in `sources' with a ".o".
598 # We also add bounded-pointer thunks, which are later
599 # elided for all suffixes except for `.ob'.
600 override objects := $(addprefix $(objpfx),$(sources:.c=.o) \
601                       $(patsubst %,$(bppfx)%.o,\
602                         $(filter $(routines) $(sysdep_routines),$(bp-thunks))))
603
604
605 # The makefile may define $(extra-libs) with `libfoo libbar'
606 # to build libfoo.a et al from the modules listed in $(libfoo-routines).
607 ifdef extra-libs
608 # extra-lib.mk is included once for each extra lib to define rules
609 # to build it, and to add its objects to the various variables.
610 # During its evaluation, $(lib) is set to the name of the library.
611 extra-libs-left := $(extra-libs)
612 include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
613 endif
614 \f
615 +depfiles := $(sources:.c=.d) \
616              $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.os=.o))) \
617              $(addsuffix .d,$(tests) $(xtests) $(test-srcs))
618 ifeq ($(build-programs),yes)
619 +depfiles += $(addsuffix .d,$(others) $(sysdep-others))
620 endif
621 +depfiles := $(addprefix $(objpfx),\
622                          $(filter-out $(addsuffix .d,$(omit-deps)),\
623                                       $(+depfiles)))
624
625 ifdef +depfiles
626 ifneq ($(no_deps),t)
627 -include $(+depfiles)
628 endif
629 endif
630 \f\f
631 # Maximize efficiency by minimizing the number of rules.
632 .SUFFIXES:      # Clear the suffix list.  We don't use suffix rules.
633 # Don't define any builtin rules.
634 MAKEFLAGS := $(MAKEFLAGS)r
635
636 # Generic rule for making directories.
637 %/:
638 # mkdir isn't smart enough to strip a trailing /.
639         mkdir $(@:%/=%)
640 \f
641 # Make sure that object files are not removed
642 # when they are intermediates between sources and library members.
643 .PRECIOUS: $(addprefix $(objpfx)%,$(all-object-suffixes))
644
645 # Make sure that the parent library archive is never removed.
646 .PRECIOUS: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
647 \f
648 # Use the verbose option of ar and tar when not running silently.
649 ifeq    "$(findstring s,$(MAKEFLAGS))" ""       # if not -s
650 verbose := v
651 else                                            # -s
652 verbose :=
653 endif                                           # not -s
654
655 ARFLAGS := r$(verbose)
656 CREATE_ARFLAGS := cru$(verbose)
657 \f
658 # This makes all the object files in the parent library archive.
659
660 .PHONY: lib lib-noranlib
661 lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
662 lib-noranlib: libobjs
663
664 # For object-suffix $o, the list of objects with that suffix.
665 # Makefiles can define `elide-routines.so = foo' to leave foo.so out.
666 o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\
667                                                        $(elide-routines$o)),\
668                                             $(objects))) \
669             $(addprefix $(objpfx),$(o-objects$o))
670
671 others: $(addprefix $(objpfx),$(install-lib))
672
673 ifndef objects
674
675 # Create the stamp$o files to keep the parent makefile happy.
676 subdir_lib: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
677 $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o):
678         $(make-target-directory)
679         rm -f $@; > $@
680 else
681
682 # Define explicit rules to update each $(objpfx)stamp.SUFFIX
683 # timestamp file; these rules (one explicit rule is generated for each
684 # object suffix) write a list of objects to update in the stamp file.
685 # The parent will then actually add them all to the archive in the
686 # archive rule, below.
687 define o-iterator-doit
688 $(objpfx)stamp$o: $(o-objects); $$(do-stamp)
689 endef
690 define do-stamp
691 echo '$(patsubst $(objpfx)%,$(addsuffix /,$(subdir))%,$^)' > $@T
692 mv -f $@T $@
693 endef
694 object-suffixes-left := $(object-suffixes-for-libc)
695 include $(o-iterator)
696
697 endif
698
699 # Now define explicit rules to build the library archives; these depend
700 # on the stamp files built above.
701 define o-iterator-doit
702 $(common-objpfx)$(patsubst %,$(libtype$o),c): \
703                 $(subdirs-stamp-o) $(common-objpfx)stamp$o; $$(do-makelib)
704 endef
705 define do-makelib
706 cd $(common-objdir) && \
707 $(AR) $(CREATE_ARFLAGS) $(@F) `cat $(patsubst $(common-objpfx)%,%,$^)`
708 $(RANLIB) $@
709 endef
710 subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%)
711 subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
712 ifndef subdir
713 $(subdirs-stamps): subdir_lib;
714 endif
715 object-suffixes-left = $(object-suffixes-for-libc)
716 include $(o-iterator)
717
718
719 # This makes all the object files.
720 .PHONY: objects objs libobjs extra-objs
721 objects objs: libobjs extra-objs
722 libobjs: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
723 extra-objs: $(addprefix $(objpfx),$(extra-objs))
724
725 # Canned sequence for building an extra library archive.
726 define build-extra-lib
727 $(patsubst %/,cd % &&,$(objpfx)) \
728 $(AR) $(CREATE_ARFLAGS) $(@:$(objpfx)%=%) \
729       $(patsubst $(objpfx)%,%,$^)
730 $(RANLIB) $@
731 endef
732 \f
733 # Installation.
734
735 .PHONY: force-install
736 force-install:
737
738 # $(install-lib) are installed from the object directory into $(libdir);
739 # files in $(install-lib) matching `lib%.a' are ranlib'd after installation
740 # unless they also appear in $(non-lib.a).  $(install-data) are installed
741 # as they are into $(datadir).  $(headers) are installed as they are in
742 # $(includedir).  $(install-bin), $(install-bin-script) and $(install-sbin)
743 # are installed from the object directory into $(bindir), $(bindir) and
744 # $(sbindir), respectively.  $(install-others) are absolute path names of
745 # files to install; rules to install them are defined elsewhere.
746
747 # The simple library name to install libc.a under.
748 # This could be defined by a sysdep Makefile.
749 ifndef libc-name
750 libc-name := c
751 endif
752
753 define do-install
754 $(make-target-directory)
755 $(INSTALL_DATA) $< $@
756 endef
757
758 # Make the target directory if it doesn't exist, using the `mkinstalldirs'
759 # script that does `mkdir -p' even if `mkdir' doesn't support that flag.
760 define make-target-directory
761 $(addprefix $(..)./scripts/mkinstalldirs ,\
762             $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%)))
763 endef
764
765 # Any directory (parent or subdir) should install libc.a; this way
766 # "make install" in a subdir is guaranteed to install everything it changes.
767 installed-libcs := $(foreach o,$(filter-out .os,$(object-suffixes-for-libc)),\
768                              $(inst_libdir)/$(patsubst %,$(libtype$o),\
769                                                      $(libprefix)$(libc-name)))
770 install: $(installed-libcs)
771 $(installed-libcs): $(inst_libdir)/lib$(libprefix)%: lib $(+force)
772         $(make-target-directory)
773         $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@
774 # Running ranlib after installing makes the __.SYMDEF time stamp up to
775 # date, which avoids messages from some linkers.
776         $(RANLIB) $@
777
778 define do-install-program
779 $(make-target-directory)
780 $(INSTALL_PROGRAM) $< $@.new
781 mv -f $@.new $@
782 endef
783
784 define do-install-script
785 $(make-target-directory)
786 $(INSTALL_SCRIPT) $< $@.new
787 mv -f $@.new $@
788 endef
789
790 install-lib.so := $(filter %.so,$(install-lib:%_pic.a=%.so))
791 install-lib := $(filter-out %.so %_pic.a,$(install-lib))
792
793 ifeq (yes,$(build-shared))
794 # Find which .so's have versions.
795 versioned := $(strip $(foreach so,$(install-lib.so),\
796                                $(patsubst %,$(so),$($(so)-version))))
797
798 install-lib.so-versioned := $(filter $(versioned), $(install-lib.so))
799 install-lib.so-unversioned := $(filter-out $(versioned), $(install-lib.so))
800
801 install-lib-nosubdir: $(install-lib.so-versioned:%=$(inst_libdir)/%) \
802                       $(install-lib.so-unversioned:%=$(inst_slibdir)/%)
803
804 # Install all the unversioned shared libraries.
805 $(install-lib.so-unversioned:%=$(inst_slibdir)/%): $(inst_slibdir)/%.so: \
806     $(objpfx)%.so $(+force)
807         $(do-install-program)
808
809 ifneq ($(findstring -s,$(LN_S)),)
810 define make-link
811 rm -f $@.new
812 $(SHELL) $(..)scripts/rellns-sh $< $@.new
813 mv -f $@.new $@
814 endef
815 else
816 # If we have no symbolic links don't bother with rellns-sh.
817 define make-link
818 rm -f $@.new
819 $(LN_S) $< $@.new
820 mv -f $@.new $@
821 endef
822 endif
823
824 ifeq (yes,$(build-shared))
825 ifeq (no,$(cross-compiling))
826 symbolic-link-prog := $(common-objpfx)elf/sln
827 symbolic-link-list := $(common-objpfx)elf/symlink.list
828 define make-shlib-link
829 echo $(<F) $@ >> $(symbolic-link-list)
830 endef
831 else # cross-compiling
832 # We need a definition that can be used by elf/Makefile's install rules.
833 symbolic-link-prog = $(LN_S)
834 endif
835 endif
836 ifndef make-shlib-link
837 define make-shlib-link
838 rm -f $@
839 $(LN_S) $(<F) $@
840 endef
841 endif
842
843 ifdef libc.so-version
844 # For a library specified to be version N, install three files:
845 # libc.so       ->      libc.so.N       (e.g. libc.so.6)
846 # libc.so.6     ->      libc-VERSION.so (e.g. libc-1.10.so)
847
848 $(inst_slibdir)/libc.so$(libc.so-version): $(inst_slibdir)/libc-$(version).so \
849                                            $(+force)
850         $(make-shlib-link)
851 $(inst_slibdir)/libc-$(version).so: $(common-objpfx)libc.so $(+force)
852         $(do-install-program)
853 install: $(inst_slibdir)/libc.so$(libc.so-version)
854
855 ifndef subdir
856 # What we install as libc.so for programs to link against is in fact a
857 # link script.  It contains references for the various libraries we need.
858 # The libc.so object is not complete since some functions are only defined
859 # in libc_nonshared.a.
860 # We need to use absolute paths since otherwise local copies (if they exist)
861 # of the files are taken by the linker.
862 install: $(inst_libdir)/libc.so
863 $(inst_libdir)/libc.so: $(common-objpfx)libc.so$(libc.so-version) \
864                         $(inst_libdir)/$(patsubst %,$(libtype.oS),\
865                                                   $(libprefix)$(libc-name)) \
866                         $(+force)
867         (echo '/* GNU ld script';\
868          echo '   Use the shared library, but some functions are only in';\
869          echo '   the static library, so try that secondarily.  */';\
870          echo 'GROUP ( $(slibdir)/libc.so$(libc.so-version)' \
871               '$(libdir)/$(patsubst %,$(libtype.oS),$(libprefix)$(libc-name))'\
872               ')' \
873         ) > $@.new
874         mv -f $@.new $@
875
876 endif
877
878 else
879 install: $(inst_slibdir)/libc.so
880 $(inst_slibdir)/libc.so: $(common-objpfx)libc.so $(+force)
881         $(do-install-program)
882 endif
883
884 ifneq (,$(versioned))
885 # Produce three sets of rules as above for all the smaller versioned libraries.
886
887 define o-iterator-doit
888 $(inst_libdir)/$o: $(inst_slibdir)/$o$($o-version) $(+force); $$(make-link)
889 endef
890 object-suffixes-left := $(versioned)
891 include $(o-iterator)
892
893 # Make symlinks in the build directory, because the versioned names might
894 # be referenced by a DT_NEEDED in another library.
895 define o-iterator-doit
896 $(objpfx)$o$($o-version): $(objpfx)$o; $$(make-link)
897 endef
898 object-suffixes-left := $(versioned)
899 include $(o-iterator)
900
901 generated += $(foreach o,$(versioned),$o$($o-version))
902
903 ifeq (,$($(subdir)-version))
904 define o-iterator-doit
905 $(inst_slibdir)/$o$($o-version): $(inst_slibdir)/$(o:.so=)-$(version).so \
906                                  $(+force);
907         $$(make-shlib-link)
908 endef
909 object-suffixes-left := $(versioned)
910 include $(o-iterator)
911
912 define o-iterator-doit
913 $(inst_slibdir)/$(o:.so=)-$(version).so: $(objpfx)$o $(+force);
914         $$(do-install-program)
915 endef
916 object-suffixes-left := $(versioned)
917 include $(o-iterator)
918 else
919 define o-iterator-doit
920 $(inst_slibdir)/$o$($o-version): \
921   $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so $(+force);
922         $$(make-shlib-link)
923 endef
924 object-suffixes-left := $(versioned)
925 include $(o-iterator)
926
927 define o-iterator-doit
928 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so: $(objpfx)$o $(+force);
929         $$(do-install-program)
930 endef
931 object-suffixes-left := $(versioned)
932 include $(o-iterator)
933 endif
934 endif
935
936 define do-install-so
937 $(do-install-program)
938 $(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
939            $(filter-out %.so,$@))
940 endef
941
942 so-versions := $(sort $(foreach so,$(install-lib.so),.so$($(so)-version)))
943 $(foreach v,$(so-versions),\
944           $(inst_slibdir)/lib$(libprefix)%$v): $(common-objpfx)lib%.so \
945                                                $(+force)
946         $(do-install-so)
947 $(foreach v,$(so-versions),\
948           $(inst_slibdir)/$(libprefix)%$v): $(common-objpfx)%.so $(+force)
949         $(do-install-so)
950 endif
951
952 ifdef install-bin
953 $(addprefix $(inst_bindir)/,$(install-bin)): \
954     $(inst_bindir)/%: $(objpfx)% $(+force)
955         $(do-install-program)
956 endif
957 ifdef install-bin-script
958 $(addprefix $(inst_bindir)/,$(install-bin-script)): \
959     $(inst_bindir)/%: $(objpfx)% $(+force)
960         $(do-install-script)
961 endif
962 ifdef install-rootsbin
963 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin)): \
964    $(inst_rootsbindir)/%: $(objpfx)% $(+force)
965         $(do-install-program)
966 endif
967 ifdef install-sbin
968 $(addprefix $(inst_sbindir)/,$(install-sbin)): \
969     $(inst_sbindir)/%: $(objpfx)% $(+force)
970         $(do-install-program)
971 endif
972 ifdef install-lib
973 install-lib.a := $(filter lib%.a,$(install-lib))
974 install-lib-non.a := $(filter-out lib%.a,$(install-lib))
975 ifdef install-lib-non.a
976 $(addprefix $(inst_libdir)/$(libprefix),$(install-lib-non.a)): \
977   $(inst_libdir)/$(libprefix)%: $(objpfx)% $(+force)
978         $(do-install)
979 endif
980 ifdef install-lib.a
981 $(install-lib.a:lib%.a=$(inst_libdir)/lib$(libprefix)%.a): \
982   $(inst_libdir)/lib$(libprefix)%.a: $(objpfx)lib%.a $(+force)
983         $(do-install)
984         $(patsubst %,$(RANLIB) $@,$(filter-out $(non-lib.a),$(<F)))
985 endif
986 endif
987 ifdef install-data
988 $(addprefix $(inst_datadir)/,$(install-data)): $(inst_datadir)/%: % $(+force)
989         $(do-install)
990 endif
991 headers := $(strip $(headers))
992 ifdef headers
993 $(addprefix $(inst_includedir)/,$(headers)): $(inst_includedir)/%: % $(+force)
994         $(do-install)
995 endif   # headers
996
997 .PHONY: install-bin-nosubdir install-bin-script-nosubdir \
998         install-rootsbin-nosubdir install-sbin-nosubdir install-lib-nosubdir \
999         install-data-nosubdir install-headers-nosubdir
1000 install-bin-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin))
1001 install-bin-script-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin-script))
1002 install-rootsbin-nosubdir: \
1003         $(addprefix $(inst_rootsbindir)/,$(install-rootsbin))
1004 install-sbin-nosubdir: $(addprefix $(inst_sbindir)/,$(install-sbin))
1005 install-lib-nosubdir: $(addprefix $(inst_libdir)/,\
1006                        $(patsubst lib%.a,lib$(libprefix)%.a,$(install-lib.a)) \
1007                        $(addprefix $(libprefix),$(install-lib-non.a)))
1008 install-data-nosubdir: $(addprefix $(inst_datadir)/,$(install-data))
1009 install-headers-nosubdir: $(addprefix $(inst_includedir)/,$(headers))
1010 install-others-nosubdir: $(install-others)
1011
1012 # We need all the `-nosubdir' targets so that `install' in the parent
1013 # doesn't depend on several things which each iterate over the subdirs.
1014 # This rule makes `install-FOO' always use `install-FOO-nosubdir' as a
1015 # subroutine.  Then in the parent `install-FOO' also causes subdir makes.
1016 install-%:: install-%-nosubdir ;
1017
1018 .PHONY: install install-no-libc.a-nosubdir
1019 ifeq ($(build-programs),yes)
1020 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
1021                             install-bin-nosubdir install-bin-script-nosubdir \
1022                             install-lib-nosubdir install-others-nosubdir \
1023                             install-rootsbin-nosubdir install-sbin-nosubdir
1024 else
1025 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
1026                             install-lib-nosubdir install-others-nosubdir
1027 endif
1028 install: install-no-libc.a-nosubdir
1029 \f
1030 # Command to compile $< in $(objdir) using the native libraries.
1031 define native-compile
1032 $(make-target-directory)
1033 $(patsubst %/,cd % &&,$(objpfx)) \
1034 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
1035             $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(@F)
1036 endef
1037
1038 # Command to compile $< in $(common-objdir) using the native libraries.
1039 # We must cd to $(objdir) anyway so that $(..)config.h is valid.
1040 define common-objdir-compile
1041 $(patsubst %/,cd % &&,$(objpfx)) \
1042 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
1043             $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(..)$(@F)
1044 endef
1045
1046 # We always want to use configuration definitions.
1047 # Note that this is only used for commands running in $(objpfx).
1048 ALL_BUILD_CFLAGS = $(BUILD_CFLAGS) -include $(..)config.h
1049
1050 # Support the GNU standard name for this target.
1051 .PHONY: check
1052 check: tests
1053 # Special target to run tests which cannot be run unconditionally.
1054 # Maintainers should use this target.
1055 .PHONY: xcheck
1056 xcheck: xtests
1057
1058 all-nonlib = $(strip $(tests) $(xtests) $(test-srcs) $(test-extras) $(others))
1059 ifneq (,$(all-nonlib))
1060 cpp-srcs-left = $(all-nonlib:=.c)
1061 lib := nonlib
1062 include $(patsubst %,$(..)cppflags-iterator.mk,$(all-nonlib))
1063 endif
1064
1065 # The include magic above causes those files to use this variable for flags.
1066 CPPFLAGS-nonlib = -DNOT_IN_libc=1
1067 \f
1068 .PHONY: TAGS
1069 TAGS: $(objpfx)distinfo $(..)MakeTAGS
1070         $(MAKE) $(addprefix -f ,$^) $@
1071
1072 $(..)po/%.pot: $(objpfx)distinfo $(..)MakeTAGS FORCE
1073         $(MAKE) $(addprefix -f ,$(filter-out FORCE,$^)) $@
1074 FORCE:
1075
1076
1077 .PHONY: echo-headers
1078 echo-headers:
1079         @echo $(headers)
1080
1081 \f
1082 # Common cleaning targets.
1083
1084 .PHONY: common-mostlyclean common-clean mostlyclean clean do-tests-clean
1085 clean: common-clean
1086 mostlyclean: common-mostlyclean
1087
1088 do-tests-clean:
1089         -rm -f $(addprefix $(objpfx),$(addsuffix .out,$(tests) $(xtests) \
1090                                                       $(test-srcs)) \
1091                                      $(addsuffix -bp.out,$(tests) $(xtests) \
1092                                                          $(test-srcs)))
1093
1094 # Remove the object files.
1095 common-mostlyclean:
1096         -rm -f $(addprefix $(objpfx),$(tests) $(xtests) $(test-srcs) \
1097                                      $(others) $(sysdep-others) stubs \
1098                                      $(addsuffix .o,$(tests) $(xtests) \
1099                                                     $(test-srcs) $(others) \
1100                                                     $(sysdep-others)) \
1101                                      $(addsuffix -bp,$(tests) $(xtests) \
1102                                                      $(test-srcs)) \
1103                                      $(addsuffix .out,$(tests) $(xtests) \
1104                                                       $(test-srcs)) \
1105                                      $(addsuffix -bp.out,$(tests) $(xtests) \
1106                                                          $(test-srcs)))
1107         -rm -f $(addprefix $(objpfx),$(extra-objs) $(install-lib) \
1108                                      $(install-lib.so) \
1109                                      $(install-lib.so:%.so=%_pic.a))
1110         -rm -f core
1111         -rm -f $(objpfx)rtld-*.os
1112         $(rmobjs)
1113 define rmobjs
1114 $(foreach o,$(object-suffixes-for-libc),
1115 -rm -f $(objpfx)stamp$o $(o-objects))
1116 endef
1117
1118 # Also remove the dependencies and generated source files.
1119 common-clean: common-mostlyclean
1120         -rm -f $(addprefix $(objpfx),$(generated)) $(+depfiles)
1121         -rm -f $(objpfx)rtld-*.d
1122         -rm -fr $(addprefix $(objpfx),$(generated-dirs))
1123         -rm -f $(addprefix $(common-objpfx),$(common-generated))
1124         -rm -f $(objpfx)distinfo
1125 \f
1126 # Produce a file `stubs' which contains `#define __stub_FUNCTION'
1127 # for each function which is a stub.  We grovel over all the .d files
1128 # looking for references to <stub-tag.h>.  Then we grovel over each
1129 # referenced source file to see what stub function it defines.
1130
1131 ifdef objpfx
1132 .PHONY: stubs # The parent Makefile calls this target.
1133 stubs: $(objpfx)stubs
1134 endif
1135 s = $(sysdep_dir)/generic
1136 $(objpfx)stubs: $(+depfiles)
1137 # Use /dev/null since `...` might expand to empty.
1138         (s=`cd $s && $(PWD_P)`; \
1139          $(patsubst %/,cd % &&,$(objpfx)) \
1140          sed -n 's/^stub_warning *(\([^)]*\).*$$/#define __stub_\1/p' \
1141           `sed -n -e '\@ $s/[^ ]*\.c@{; s@^.* $s/\([^ ]*\.c\).*$$@'"$$s"'/\1@; h; }' \
1142                 -e '/stub-tag\.h/{; g; p; }' \
1143                   $(patsubst $(objpfx)%,%,$^) /dev/null` \
1144              /dev/null) > $@T
1145         mv -f $@T $@
1146 \f
1147 # Make the distribution tar file.
1148
1149 .PHONY: dist
1150 dist: $(objpfx)distinfo $(..)Make-dist
1151         $(MAKE) -f $< -f $(word 2,$^) $(Make-dist-args)
1152
1153 # Avoid depending on source files found in sysdeps dirs,
1154 # because the references affect implicit rule selection.
1155 dist: $(filter-out %.c %.S %.s,$(distribute))
1156
1157 # We used to simply export all these variables, but that frequently made the
1158 # environment get too large.  Instead, we write all the information into
1159 # a generated makefile fragment `distinfo', and then include it with -f in
1160 # the sub-make that makes the distribution (above).
1161 $(objpfx)distinfo: Makefile $(..)Makerules \
1162                    $(wildcard $(foreach dir,$(sysdirs),$(dir)/Makefile))
1163         $(make-target-directory)
1164         $(distinfo-vars)
1165         mv -f $@.new $@
1166 .PHONY: subdir_distinfo
1167 subdir_distinfo: $(objpfx)distinfo
1168
1169 define distinfo-vars
1170 rm -f $@.new
1171 echo > $@.new 'subdir := $(subdir)'
1172 $(foreach var,subdir-dirs sources elided-routines sysdep_routines \
1173               headers sysdep_headers distribute dont_distribute generated \
1174               others tests xtests test-srcs extra-libs versioned \
1175               $(extra-libs:%=%-routines) \
1176               $(addprefix install-,lib lib.so data bin bin-script sbin others),
1177 echo >> $@.new '$(subdir)-$(var) := $($(var))'
1178 echo >> $@.new '$(var) = $$($(subdir)-$(var))')
1179 endef
1180 \f
1181 ifneq (,$(strip $(gpl2lgpl)))
1182 ifneq (,$(wildcard $(..)gpl2lgpl.sed))
1183 # Snarf from the master source and frob the copying notice.
1184 $(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
1185         sed -f $^ > $@-tmp
1186 # So I don't edit them by mistake.
1187         chmod a-w $@-tmp
1188         mv -f $@-tmp $@
1189 ifeq ($(with-cvs),yes)
1190         test ! -d CVS || cvs $(CVSOPTS) commit -m'Updated from $^' $@
1191 endif
1192 endif
1193 endif
1194
1195 # Local Variables:
1196 # mode: makefile
1197 # End: