Update.
[glibc.git] / Makerules
blob56fcf29d3c492f6c5bb4291ac8b3f55d0d59f4b3
1 # Copyright (C) 1991-2002, 2003 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
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.
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.
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.
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).
24 ifneq (,)
25 This makefile requires GNU Make.
26 endif
28 REQUIRED_MAKE_VERSION = 3.74
29 REAL_MAKE_VERSION = $(firstword $(MAKE_VERSION))
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
37 ifdef   subdir
38 ..      := ../
39 endif   # subdir
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
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
55 ifndef +included-Makeconfig
56 include $(..)Makeconfig
57 endif
59 # `configure' writes a definition of `config-sysdirs' in `config.make'.
60 sysdirs = $(strip $(full_config_sysdirs))
62 +sysdir_pfx = $(common-objpfx)
64 export sysdirs := $(sysdirs)
66 +sysdep_dirs := $(full_config_sysdirs)
67 ifdef objdir
68 +sysdep_dirs := $(objdir) $(+sysdep_dirs)
69 endif
71 # Add -I switches to get the right sysdep directories.
72 # `+includes' in Makeconfig references $(+sysdep-includes).
73 +sysdep-includes := $(addprefix -I,$(+sysdep_dirs))
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))
81 # Include any system-specific makefiles.
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) $(..)))
89 # The same is true for RPC source files.
90 vpath %.x $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
91                                       $(+sysdep_dirs) $(..)))
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
97 sysdep-makefiles := $(wildcard $(full_config_sysdirs:=/Makefile))
98 ifneq (,$(sysdep-makefiles))
99 include $(sysdep-makefiles)
100 endif
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))
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 $@
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
128 # Make sure the subdirectory for object files gets created.
129 ifdef objpfx
130 ifeq (,$(wildcard $(objpfx).))
131 before-compile += $(objpfx).
132 $(objpfx).:
133         $(make-target-directory)
134 endif
135 endif
137 # Remove existing files from `before-compile'.  Things are added there when
138 # they must exist for dependency generation to work right, but once they
139 # exist there is no further need for every single file to depend on them,
140 # and those gratuitous dependencies result in many gratuitous
141 # recompilations.
142 before-compile := $(filter-out $(wildcard $(before-compile)),$(before-compile))
144 # Don't let any before-compile file be an intermediate and get removed.
145 ifdef before-compile
146 $(before-compile):
147 endif
149 # We don't want $(common-objpfx) files to depend on miscellaneous stuff
150 # in subdirs.
151 ifdef subdir
152 common-before-compile := $(filter-out $(objpfx)%,$(before-compile))
153 else
154 common-before-compile = $(before-compile)
155 endif
157 ifndef subdir
158 # If a makefile needs to do something conditional on something that
159 # can only be figured out from headers, write a FOO.make.c input
160 # file that uses cpp contructs and contains @@@ LINE @@@ for each LINE
161 # to emit in the generated makefile, and use -include $(common-objpfx)FOO.make.
163 # We only generate these in the top-level makefile, to avoid any weirdness
164 # from subdir-specific makefile tweaks creeping in on an update.
165 $(common-objpfx)%.make: $(..)%.make.c $(..)Makerules $(common-before-compile)
166         rm -f $@T $@.dT
167         (echo '# Generated from $*.make.c by Makerules.'; \
168          $(CC) $(CFLAGS) $(CPPFLAGS) -E $< \
169                -MD -MP -MT '$$(common-objpfx)$*.make' -MF $@.dT \
170          | sed -n '/@@@/{s/@@@[  ]*\(.*\)@@@/\1/;s/[     ]*$$//p;}'; \
171          echo 'common-generated += $(@F)'; \
172          sed $(sed-remove-objpfx) $(sed-remove-dotdot) $@.dT; \
173          rm -f $@.dT) > $@T
174         mv -f $@T $@
175 endif
177 ifdef subdir
178 sed-remove-dotdot := -e 's@  *\.\.\/\([^        \]*\)@ $$(..)\1@g' \
179                      -e 's@^\.\.\/\([^  \]*\)@$$(..)\1@g'
180 else
181 sed-remove-dotdot := -e 's@  *\([^      \/$$][^         \]*\)@ $$(..)\1@g' \
182                      -e 's@^\([^        \/$$][^         \]*\)@$$(..)\1@g'
183 endif
186 # Generating headers for assembly constants.
187 # We need this defined early to get into before-compile before
188 # it's used in sysd-rules, below.
189 $(common-objpfx)%.h $(common-objpfx)%.h.d: $(..)scripts/gen-as-const.awk \
190                                            %.sym $(common-before-compile)
191         $(AWK) -f $< $(filter %.sym,$^) \
192         | $(CC) -S -o - $(CFLAGS) $(CPPFLAGS) -x c - \
193                 -MD -MP -MF $(@:.h=.h.d)T -MT '$(@:.h=.h.d) $(@:.h.d=.h)' \
194         | sed -n 's/^.*@@@name@@@\([^@]*\)@@@value@@@[^0-9Xxa-fA-F-]*\([0-9Xxa-fA-F-][0-9Xxa-fA-F-]*\).*@@@end@@@.*$$/#define \1 \2/p' > $(@:.h.d=.h)T
195         sed $(sed-remove-objpfx) $(sed-remove-dotdot) \
196             $(@:.h=.h.d)T > $(@:.h=.h.d)T2
197         rm -f $(@:.h=.h.d)T
198         mv -f $(@:.h=.h.d)T2 $(@:.h=.h.d)
199         mv -f $(@:.h.d=.h)T $(@:.h.d=.h)
200 vpath %.sym $(sysdirs)
201 before-compile += $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
203 # Generate an ordered list of implicit rules which find the source files in
204 # each sysdep directory.  The old method was to use vpath to search all the
205 # sysdep directories.  However, that had the problem that a .S file in a
206 # later directory would be chosen over a .c file in an earlier directory,
207 # which does not preserve the desired sysdeps ordering behavior.
209 # It matters that this set of rules, for compiling from sources in
210 # the current directory (the $srcdir/$subdir) come before the
211 # generated sysdep rules in included from sysd-rules below.  When
212 # compiling in the source tree, generated sources go into the current
213 # directory, and those should be chosen before any sources in sysdeps.
214 define o-iterator-doit
215 $(objpfx)%$o: %.S $(before-compile); $$(compile-command.S)
216 endef
217 object-suffixes-left := $(all-object-suffixes)
218 include $(o-iterator)
220 define o-iterator-doit
221 $(objpfx)%$o: %.s $(before-compile); $$(compile-command.s)
222 endef
223 object-suffixes-left := $(all-object-suffixes)
224 include $(o-iterator)
226 define o-iterator-doit
227 $(objpfx)%$o: %.c $(before-compile); $$(compile-command.c)
228 endef
229 object-suffixes-left := $(all-object-suffixes)
230 include $(o-iterator)
232 # Omit the objpfx rules when building in the source tree, because
233 # objpfx is empty and so these rules just override the ones above.
234 ifdef objpfx
235 # Define first rules to find the source files in $(objpfx).
236 # Generated source files will end up there.
237 define o-iterator-doit
238 $(objpfx)%$o: $(objpfx)%.S $(before-compile); $$(compile-command.S)
239 endef
240 object-suffixes-left := $(all-object-suffixes)
241 include $(o-iterator)
243 define o-iterator-doit
244 $(objpfx)%$o: $(objpfx)%.s $(before-compile); $$(compile-command.s)
245 endef
246 object-suffixes-left := $(all-object-suffixes)
247 include $(o-iterator)
249 define o-iterator-doit
250 $(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c)
251 endef
252 object-suffixes-left := $(all-object-suffixes)
253 include $(o-iterator)
254 endif
256 # System-dependent makefiles can put in `inhibit-sysdep-asm' wildcard
257 # patterns matching sysdep directories whose assembly source files should
258 # be suppressed.
259 ifdef inhibit-sysdep-asm
260 define open-check-inhibit-asm
261 case $$sysdir in $(subst $(empty) ,|,$(inhibit-sysdep-asm))) : ;; *)
262 endef
263 close-check-inhibit-asm = ;; esac ;
264 endif
266 -include $(+sysdir_pfx)sysd-rules
267 ifneq ($(sysd-rules-sysdirs),$(config-sysdirs))
268 # The value of $(+sysdep_dirs) the sysd-rules was computed for
269 # differs from the one we are using now.  So force a rebuild of sysd-rules.
270 sysd-rules-force = FORCE
271 FORCE:
272 endif
273 $(+sysdir_pfx)sysd-rules: $(+sysdir_pfx)config.make $(..)Makerules \
274                           $(wildcard $(foreach dir,$(sysdirs),\
275                                                $(dir)/Makefile))\
276                           $(sysd-rules-force)
277         -@rm -f $@T
278         (echo 'sysd-rules-sysdirs := $(config-sysdirs)';                      \
279          for dir in $(config-sysdirs:%='$$(..)%'); do                         \
280            for o in $(all-object-suffixes); do \
281              $(open-check-inhibit-asm) \
282              echo "\$$(objpfx)%$$o: $$dir/%.S \$$(before-compile); \
283                   \$$(compile-command.S)";                                    \
284              echo "\$$(objpfx)%$$o: $$dir/%.s \$$(before-compile); \
285                   \$$(compile-command.s)";                                    \
286              echo "\$$(objpfx)rtld-%$$o: $$dir/%.S \$$(before-compile); \
287                   \$$(compile-command.S)";                                    \
288              echo "\$$(objpfx)rtld-%$$o: $$dir/%.s \$$(before-compile); \
289                   \$$(compile-command.s)";                                    \
290              echo "\$$(objpfx)ptw-%$$o: $$dir/%.S \$$(before-compile); \
291                   \$$(compile-command.S)";                                    \
292              echo "\$$(objpfx)ptw-%$$o: $$dir/%.s \$$(before-compile); \
293                   \$$(compile-command.s)";                                    \
294              $(close-check-inhibit-asm) \
295              echo "\$$(objpfx)%$$o: $$dir/%.c \$$(before-compile); \
296                   \$$(compile-command.c)";                                    \
297              echo "\$$(objpfx)rtld-%$$o: $$dir/%.c \$$(before-compile); \
298                   \$$(compile-command.c)";                                    \
299              echo "\$$(objpfx)ptw-%$$o: $$dir/%.c \$$(before-compile); \
300                   \$$(compile-command.c)";                                    \
301            done; \
302            echo "\$$(objpfx)m_%.S: $$dir/s_%.S; \$$(+make-include-of-dep)";   \
303            echo "\$$(objpfx)m_%.c: $$dir/s_%.c; \$$(+make-include-of-dep)";   \
304          done;                                                                \
305          echo 'sysd-rules-done = t') > $@T
306         mv -f $@T $@
308 ifndef sysd-rules-done
309 # Don't do deps until this exists, because it provides rules to make the deps.
310 no_deps=t
311 endif
313 # This is used by the m_%.[Sc] pattern rules in sysd-rules.
314 define +make-include-of-dep
315 echo '#include <$<>' > $@T
316 mv -f $@T $@
317 endef
319 # Generate version maps, but wait until sysdep-subdirs is known
320 ifeq ($(sysd-sorted-done),t)
321 ifeq ($(versioning),yes)
322 -include $(common-objpfx)sysd-versions
323 $(addprefix $(common-objpfx),$(version-maps)): $(common-objpfx)sysd-versions
324 common-generated += $(version-maps)
325 postclean-generated += sysd-versions Versions.all abi-versions.h \
326                        Versions.def.v.i Versions.def.v Versions.v.i Versions.v
328 ifndef avoid-generated
329 ifneq ($(sysd-versions-subdirs),$(all-subdirs) $(config-sysdirs))
330 sysd-versions-force = FORCE
331 FORCE:
332 endif
333 # See %.v/%.v.i implicit rules in Makeconfig.
334 $(common-objpfx)Versions.def.v.i: $(..)Versions.def \
335                                   $(wildcard $(add-ons:%=$(..)%/Versions.def))
336 $(common-objpfx)Versions.all: $(..)scripts/firstversions.awk \
337                               $(common-objpfx)soversions.i \
338                               $(common-objpfx)Versions.def.v
339         { while read lib version setname; do \
340             test -z "$$setname" || echo "$$lib : $$setname"; \
341           done < $(word 2,$^); \
342           cat $(word 3,$^); \
343         } | LC_ALL=C $(AWK) -f $< > $@T
344         mv -f $@T $@
345 # See %.v/%.v.i implicit rules in Makeconfig.
346 $(common-objpfx)Versions.v.i: $(wildcard $(all-subdirs:%=$(..)%/Versions)) \
347                               $(wildcard $(sysdirs:%=%/Versions)) \
348                               $(common-objpfx)abi-versions.h \
349                               $(sysd-versions-force)
350 $(common-objpfx)sysd-versions: $(common-objpfx)Versions.all \
351                                $(common-objpfx)Versions.v \
352                                $(..)scripts/versions.awk
353         ( echo 'sysd-versions-subdirs = $(all-subdirs) $(config-sysdirs)' ; \
354           cat $(word 2,$^) \
355           | LC_ALL=C $(AWK) -v buildroot=$(common-objpfx) -v defsfile=$< \
356                             -v move_if_change='$(move-if-change)' \
357                             -f $(word 3,$^); \
358         ) > $@T
359         mv -f $@T $@
360 endif # avoid-generated
361 endif # $(versioning) = yes
362 endif # sysd-sorted-done
364 # Generate .dT files as we compile.
365 compile-mkdep-flags = -MD -MP -MF $@.dt
366 compile-command.S = $(compile.S) $(OUTPUT_OPTION) $(compile-mkdep-flags)
367 compile-command.s = $(COMPILE.s) $< $(OUTPUT_OPTION) $(compile-mkdep-flags)
368 compile-command.c = $(compile.c) $(OUTPUT_OPTION) $(compile-mkdep-flags)
370 # GCC can grok options after the file name, and it looks nicer that way.
371 compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS)
372 compile.S = $(CC) $< -c $(CPPFLAGS) $(S-CPPFLAGS) \
373                   $(ASFLAGS) $(ASFLAGS-$(suffix $@))
374 COMPILE.S = $(CC) -c $(CPPFLAGS) $(S-CPPFLAGS) \
375                   $(ASFLAGS) $(ASFLAGS-$(suffix $@))
376 COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS)
378 # We need this for the output to go in the right place.  It will default to
379 # empty if make was configured to work with a cc that can't grok -c and -o
380 # together.  You can't compile the C library with such a compiler.
381 OUTPUT_OPTION = -o $@
383 # We need the $(CFLAGS) to be in there to have the right predefines during
384 # the dependency run for C sources.  But having it for assembly sources can
385 # get the wrong predefines.
386 S-CPPFLAGS = -DASSEMBLER $(asm-CPPFLAGS)
388 define +make-deps
389 $(make-target-directory)
390 $(+mkdep) $< $(if $(filter %.c,$<),$(CFLAGS)) \
391              $(CPPFLAGS) $($(patsubst .%,%,$(suffix $(<F)))-CPPFLAGS) | sed -e\
392 's,$(subst .,\.,$(@F:.d=.o)),$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
393 $(sed-remove-objpfx) $(sed-remove-dotdot) > $(@:.d=.T)
394 mv -f $(@:.d=.T) $@ $(generate-md5)
395 endef
397 ifneq (,$(objpfx))
398 # Continuation lines here are dangerous because they introduce spaces!
399 define sed-remove-objpfx
400 -e 's@ $(subst .,\.,$(subst @,\@,$(common-objpfx)))@ $$(common-objpfx)@g' \
401 -e 's@^$(subst .,\.,$(subst @,\@,$(common-objpfx)))@$$(common-objpfx)@g'
402 endef
403 endif
405 # Modify the list of routines we build for different targets
407 ifeq (yesyes,$(build-shared)$(elf))
408 ifndef libc.so-version
409 # Undefine this because it can't work when we libc.so is unversioned.
410 static-only-routines =
411 endif
412 endif
414 # Bounded pointer thunks are only built for *.ob
415 elide-bp-thunks = $(addprefix $(bppfx),$(bp-thunks))
417 elide-routines.oS += $(filter-out $(static-only-routines),\
418                                   $(routines) $(aux) $(sysdep_routines)) \
419                      $(elide-bp-thunks)
420 elide-routines.os += $(static-only-routines) $(elide-bp-thunks)
422 # If we have versioned code we don't need the old versions in any of the
423 # static libraries.
424 elide-routines.o  += $(shared-only-routines) $(elide-bp-thunks)
425 elide-routines.op += $(shared-only-routines) $(elide-bp-thunks)
426 elide-routines.og += $(shared-only-routines) $(elide-bp-thunks)
427 elide-routines.ob += $(shared-only-routines)
429 # Shared library building.
431 ifeq (yes,$(build-shared))
433 # Reference map file only when versioning is selected and a map file name
434 # is given.
435 ifeq ($(versioning),yes)
436 map-file = $(firstword $($(@F:.so=-map)) \
437                        $(addprefix $(common-objpfx), \
438                                    $(filter $(@F:.so=.map),$(version-maps))))
439 load-map-file = $(map-file:%=-Wl,--version-script=%)
440 endif
442 # Pattern rule to build a shared object from an archive of PIC objects.
443 # This must come after the installation rules so Make doesn't try to
444 # build shared libraries in place from the installed *_pic.a files.
445 # $(LDLIBS-%.so) may contain -l switches to generate run-time dependencies
446 # on other shared objects.
447 lib%.so: lib%_pic.a $(+preinit) $(+postinit) $(+interp)
448 ifneq (,$(findstring aix,$(config-os)))
449         (echo '#!'; \
450          dump -g $< | sed '1,6d' | cut -f2 | sort | uniq) > $(<:a=exp)
451 endif
452         $(build-shlib)
454 ifeq ($(elf),yes)
455 define build-shlib-helper
456 $(LINK.o) -shared $(static-libgcc) -Wl,-O1 $(sysdep-LDFLAGS) \
457           $(if $($(@F)-no-z-defs)$(no-z-defs),,-Wl,-z,defs) $(config-LDFLAGS) \
458           $(extra-B-$(@F:lib%.so=%).so) -B$(csu-objpfx) \
459           $(extra-B-$(@F:lib%.so=%).so) $(load-map-file) \
460           -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \
461           $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
462           -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
463 endef
464 else
465 ifneq (,$(findstring aix,$(config-os)))
466 define build-shlib-helper
467 $(LINK.o) -Wl,-G,-bM:SRE,-bnoentry,-bE:$(<:a=exp) \
468           $(sysdep-LDFLAGS) $(config-LDFLAGS) $(extra-B-$(@F:lib%.so=%).so) \
469           $(extra-B-$(@F:lib%.so=%).so) $(load-map-file) \
470           $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
471           -L$(subst :, -L,$(rpath-link))
472 endef
473 else
474 endif
475 endif
477 ifeq (yes,$(elf))
478 # binutils only position loadable notes into the first page for binaries,
479 # not for shared objects
480 $(common-objpfx)shlib.lds: $(common-objpfx)config.make $(..)Makerules
481         $(LINK.o) -shared -Wl,-O1 \
482                   $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS.so) \
483                   -Wl,--verbose 2>&1 | \
484           sed > $@T \
485               -e '/^=========/,/^=========/!d;/^=========/d' \
486               -e 's/^.*\.hash[  ]*:.*$$/  .note.ABI-tag : { *(.note.ABI-tag) } &/' \
487               -e 's/^.*\*(\.dynbss).*$$/& \
488                  PROVIDE(__start___libc_freeres_ptrs = .); \
489                  *(__libc_freeres_ptrs) \
490                  PROVIDE(__stop___libc_freeres_ptrs = .);/'
491         mv -f $@T $@
492 common-generated += shlib.lds
494 define build-shlib
495 $(build-shlib-helper) -o $@ -T $(common-objpfx)shlib.lds \
496           $(csu-objpfx)abi-note.o $(build-shlib-objlist)
497 endef
498 else
499 ifneq (,$(findstring aix,$(config-os)))
500 define build-shlib
501 $(build-shlib-helper) \
502         -o $@ \
503         $(filter-out $(map-file) $(+preinit) $(+postinit),$^) \
504         $(no-whole-archive) $(LDLIBS-$(@F:lib%.so=%).so)
505 endef
506 define build-shlib
507 $(build-shlib-helper) \
508           $(build-shlib-objlist)
509 endef
510 endif
511 endif
513 ifneq (,$(findstring aix,$(config-os)))
514 define build-module-helper
515 $(LINK.o) -Wl,-G -Wl,-bM:SRE -Wl,-bnoentry -Wl,-bexpall \
516           $(sysdep-LDFLAGS) $(config-LDFLAGS) \
517           $(load-map-file) \
518           $(LDFLAGS.so) $(LDFLAGS-$(@F:%.so=%).so) \
519           -L$(subst :, -L,$(rpath-link)) -Wl,-L=$(rpath-link)
520 endef
521 else
522 define build-module-helper
523 $(LINK.o) -shared $(static-libgcc) $(sysdep-LDFLAGS) $(config-LDFLAGS) \
524           $(if $($(@F)-no-z-defs)$(no-z-defs),,-Wl,-z,defs) \
525           -B$(csu-objpfx) $(load-map-file) \
526           $(LDFLAGS.so) $(LDFLAGS-$(@F:%.so=%).so) \
527           -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
528 endef
529 endif
531 # This macro is similar to build-shlib but it does not define a soname
532 # and it does not depend on the destination name to start with `lib'.
533 ifeq (yes,$(elf))
534 # binutils only position loadable notes into the first page for binaries,
535 # not for shared objects
536 define build-module
537 $(build-module-helper) -o $@ -T $(common-objpfx)shlib.lds \
538           $(csu-objpfx)abi-note.o $(build-module-objlist)
539 endef
540 else
541 ifneq (,$(findstring aix,$(config-os)))
542 define build-module
543 $(build-module-helper) \
544           -o $@ \
545           $(filter-out $(map-file) $(+preinit) $(+postinit),$^) \
546           $(no-whole-archive) $(LDLIBS-$(@F:%.so=%).so)
547 endef
548 else
549 define build-module
550 define build-module
551 $(build-module-helper) \
552           -o $@ \
553           $(build-module-objlist)
554 endef
555 endif
556 endif
558 build-module-helper-objlist = \
559         $(patsubst %_pic.a,$(whole-archive) %_pic.a $(no-whole-archive),\
560                    $(filter-out %.lds $(map-file) $(+preinit) $(+postinit),$^))
561 whole-archive := -Wl,--whole-archive
563 build-module-objlist = $(build-module-helper-objlist) $(LDLIBS-$(@F:%.so=%).so)
564 build-shlib-objlist = $(build-module-helper-objlist) \
565                       $(LDLIBS-$(@F:lib%.so=%).so)
567 # Don't try to use -lc when making libc.so itself.
568 # Also omits crti.o and crtn.o, which we do not want
569 # since we define our own `.init' section specially.
570 LDFLAGS-c.so = -nostdlib -nostartfiles
571 # But we still want to link libc.so against $(gnulib).
572 LDLIBS-c.so += $(gnulib)
573 # Give libc.so an entry point and make it directly runnable itself.
574 LDFLAGS-c.so += -e __libc_main
575 # Force the backward compatibility EH functions to be linked.
576 LDFLAGS-c.so += -u __register_frame
577 # Pre-link the objects of libc_pic.a so that we can locally resolve
578 # COMMON symbols before we link against ld.so.  This is because ld.so
579 # contains some of libc_pic.a already, which will prevent the COMMONs
580 # from being allocated in libc.so, which introduces evil dependencies
581 # between libc.so and ld.so, which can make it impossible to upgrade.
582 ifeq ($(elf),yes)
583 $(common-objpfx)libc_pic.os: $(common-objpfx)libc_pic.a
584         $(LINK.o) -nostdlib -nostartfiles -r -o $@ \
585         $(LDFLAGS-c_pic.os) -Wl,-d -Wl,--whole-archive $^
586 # Use our own special initializer and finalizer files for libc.so.
587 $(common-objpfx)libc.so: $(elfobjdir)/soinit.os \
588                          $(common-objpfx)libc_pic.os \
589                          $(elfobjdir)/sofini.os \
590                          $(elfobjdir)/interp.os $(elfobjdir)/ld.so \
591                          $(common-objpfx)shlib.lds
592         $(build-shlib)
593 ifeq ($(versioning),yes)
594 $(common-objpfx)libc.so: $(common-objpfx)libc.map
595 endif
596 common-generated += libc.so libc_pic.os
597 ifdef libc.so-version
598 $(common-objpfx)libc.so$(libc.so-version): $(common-objpfx)libc.so
599         $(make-link)
600 common-generated += libc.so$(libc.so-version)
601 endif
602 endif
603 else
604 ifneq (,$(findstring aix,$(config-os)))
605 $(common-objpfx)libc.so: $(common-objpfx)libc_pic.a
606         @rm -f $@
607         (echo '#!'; \
608          dump -g $^ | sed '1,6d' | cut -f2 | sort | uniq) > $(^:a=exp)
609         sed '/__mulh/d;/__mull/d;/__divss/d;/__divus/d;/__quoss/d;/__quous/d' \
610             /lib/syscalls.exp > $(common-objpfx)syscalls.exp
611         $(LINK.o) -G -bM:SRE -bnoentry -bE:$(^:a=exp) \
612                   -bE:$(common-objpfx)syscalls.exp \
613                   -bI:$(common-objpfx)syscalls.exp \
614                   -L$(common-objpfx) -o $@ $^
615 # AIX runtime ld wants libc.so to be libc.a(shr.o) hardwired
616         cp $@ $(common-objpfx)shr.o
617         $(AR) $(ARFLAGS) $(common-objpfx)libc.a $(common-objpfx)shr.o
618 endif
619 endif
621 # Figure out the source filenames in this directory.
623 override sources := $(addsuffix .c,\
624                         $(filter-out $(elided-routines),\
625                             $(routines) $(aux) \
626                             $(sysdep_routines)))
627 sysdep_routines := $(sysdep_routines)
629 headers := $(headers) $(sysdep_headers)
631 # This is the list of all object files, gotten by
632 # replacing every ".c" in `sources' with a ".o".
633 # We also add bounded-pointer thunks, which are later
634 # elided for all suffixes except for `.ob'.
635 override objects := $(addprefix $(objpfx),$(sources:.c=.o) \
636                       $(patsubst %,$(bppfx)%.o,\
637                         $(filter $(routines) $(sysdep_routines),$(bp-thunks))))
640 # The makefile may define $(extra-libs) with `libfoo libbar'
641 # to build libfoo.a et al from the modules listed in $(libfoo-routines).
642 ifdef extra-libs
643 # extra-lib.mk is included once for each extra lib to define rules
644 # to build it, and to add its objects to the various variables.
645 # During its evaluation, $(lib) is set to the name of the library.
646 extra-libs-left := $(extra-libs)
647 include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
648 endif
650 +depfiles := $(sources:.c=.d) \
651              $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.os=.o))) \
652              $(addsuffix .d,$(tests) $(xtests) $(test-srcs))
653 ifeq ($(build-programs),yes)
654 +depfiles += $(addsuffix .d,$(others) $(sysdep-others))
655 endif
656 +depfiles := $(addprefix $(objpfx),\
657                          $(filter-out $(addsuffix .d,$(omit-deps)),\
658                                       $(+depfiles)))
659 all-dt-files := $(foreach o,$(object-suffixes-for-libc),$(+depfiles:.d=$o.dt))
660 +depfiles := $(patsubst %.dt,%.d,$(wildcard $(all-dt-files))) \
661              $(wildcard $(all-dt-files:.dt=.d))
663 # This is a funny rule in that it removes its input file.
664 %.d: %.dt
665         @sed $(sed-remove-objpfx) $< > $(@:.d=.T) && \
666          mv -f $(@:.d=.T) $@ && \
667          rm -f $<
669 # Avoid the .h.d files for any .sym files whose .h files don't exist yet.
670 # They will be generated when they're needed, and trying too early won't work.
671 +gen-as-const := $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
672 +depfiles += $(addsuffix .d,$(filter $(wildcard $(+gen-as-const)),\
673                                                 $(+gen-as-const)))
675 ifdef +depfiles
676 ifneq ($(no_deps),t)
677 -include $(+depfiles)
678 endif
679 endif
680 \f\f
681 # Maximize efficiency by minimizing the number of rules.
682 .SUFFIXES:      # Clear the suffix list.  We don't use suffix rules.
683 # Don't define any builtin rules.
684 MAKEFLAGS := $(MAKEFLAGS)r
686 # Generic rule for making directories.
688 # mkdir isn't smart enough to strip a trailing /.
689         mkdir $(@:%/=%)
691 # Make sure that object files are not removed
692 # when they are intermediates between sources and library members.
693 .PRECIOUS: $(addprefix $(objpfx)%,$(all-object-suffixes))
695 # Make sure that the parent library archive is never removed.
696 .PRECIOUS: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
698 # Use the verbose option of ar and tar when not running silently.
699 ifeq    "$(findstring s,$(MAKEFLAGS))" ""       # if not -s
700 verbose := v
701 else                                            # -s
702 verbose :=
703 endif                                           # not -s
705 ARFLAGS := r$(verbose)
706 CREATE_ARFLAGS := cru$(verbose)
708 # This makes all the object files in the parent library archive.
710 .PHONY: lib lib-noranlib
711 lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
712 lib-noranlib: libobjs
714 # For object-suffix $o, the list of objects with that suffix.
715 # Makefiles can define `elide-routines.so = foo' to leave foo.so out.
716 o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\
717                                                        $(elide-routines$o)),\
718                                             $(objects))) \
719             $(addprefix $(objpfx),$(o-objects$o))
721 others: $(addprefix $(objpfx),$(install-lib))
723 ifndef objects
725 # Create the stamp$o files to keep the parent makefile happy.
726 subdir_lib: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
727 $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o):
728         $(make-target-directory)
729         rm -f $@; > $@
730 else
732 # Define explicit rules to update each $(objpfx)stamp.SUFFIX
733 # timestamp file; these rules (one explicit rule is generated for each
734 # object suffix) write a list of objects to update in the stamp file.
735 # The parent will then actually add them all to the archive in the
736 # archive rule, below.
737 define o-iterator-doit
738 $(objpfx)stamp$o: $(o-objects); $$(do-stamp)
739 endef
740 define do-stamp
741 $(make-target-directory)
742 echo '$(patsubst $(objpfx)%,$(addsuffix /,$(subdir))%,$^)' > $@T
743 mv -f $@T $@
744 endef
745 object-suffixes-left := $(object-suffixes-for-libc)
746 include $(o-iterator)
748 endif
750 # Now define explicit rules to build the library archives; these depend
751 # on the stamp files built above.
752 define o-iterator-doit
753 $(common-objpfx)$(patsubst %,$(libtype$o),c): \
754                 $(subdirs-stamp-o) $(common-objpfx)stamp$o; $$(do-makelib)
755 endef
756 define do-makelib
757 cd $(common-objdir) && \
758 $(AR) $(CREATE_ARFLAGS) $(@F) `cat $(patsubst $(common-objpfx)%,%,$^)`
759 $(RANLIB) $@
760 endef
761 subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%)
762 subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
763 ifndef subdir
764 $(subdirs-stamps): subdir_lib;
765 endif
766 object-suffixes-left = $(object-suffixes-for-libc)
767 include $(o-iterator)
770 # This makes all the object files.
771 .PHONY: objects objs libobjs extra-objs
772 objects objs: libobjs extra-objs
773 libobjs: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
774 extra-objs: $(addprefix $(objpfx),$(extra-objs))
776 # Canned sequence for building an extra library archive.
777 define build-extra-lib
778 $(patsubst %/,cd % &&,$(objpfx)) \
779 $(AR) $(CREATE_ARFLAGS) $(@:$(objpfx)%=%) \
780       $(patsubst $(objpfx)%,%,$^)
781 $(RANLIB) $@
782 endef
784 # Installation.
786 .PHONY: force-install
787 force-install:
789 # $(install-lib) are installed from the object directory into $(libdir);
790 # files in $(install-lib) matching `lib%.a' are ranlib'd after installation
791 # unless they also appear in $(non-lib.a).  $(install-data) are installed
792 # as they are into $(datadir).  $(headers) are installed as they are in
793 # $(includedir).  $(install-bin), $(install-bin-script) and $(install-sbin)
794 # are installed from the object directory into $(bindir), $(bindir) and
795 # $(sbindir), respectively.  $(install-others) are absolute path names of
796 # files to install; rules to install them are defined elsewhere.
798 # The simple library name to install libc.a under.
799 # This could be defined by a sysdep Makefile.
800 ifndef libc-name
801 libc-name := c
802 endif
804 define do-install
805 $(make-target-directory)
806 $(INSTALL_DATA) $< $@
807 endef
809 # Make the target directory if it doesn't exist, using the `mkinstalldirs'
810 # script that does `mkdir -p' even if `mkdir' doesn't support that flag.
811 define make-target-directory
812 $(addprefix $(..)./scripts/mkinstalldirs ,\
813             $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%)))
814 endef
816 # Any directory (parent or subdir) should install libc.a; this way
817 # "make install" in a subdir is guaranteed to install everything it changes.
818 installed-libcs := $(foreach o,$(filter-out .os,$(object-suffixes-for-libc)),\
819                              $(inst_libdir)/$(patsubst %,$(libtype$o),\
820                                                      $(libprefix)$(libc-name)))
821 install: $(installed-libcs)
822 $(installed-libcs): $(inst_libdir)/lib$(libprefix)%: lib $(+force)
823         $(make-target-directory)
824         $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@
825 # Running ranlib after installing makes the __.SYMDEF time stamp up to
826 # date, which avoids messages from some linkers.
827         $(RANLIB) $@
829 define do-install-program
830 $(make-target-directory)
831 $(INSTALL_PROGRAM) $< $@.new
832 mv -f $@.new $@
833 endef
835 define do-install-script
836 $(make-target-directory)
837 $(INSTALL_SCRIPT) $< $@.new
838 mv -f $@.new $@
839 endef
841 install-lib.so := $(filter %.so,$(install-lib:%_pic.a=%.so))
842 install-lib := $(filter-out %.so %_pic.a,$(install-lib))
844 ifeq (yes,$(build-shared))
845 # Find which .so's have versions.
846 versioned := $(strip $(foreach so,$(install-lib.so),\
847                                $(patsubst %,$(so),$($(so)-version))))
849 install-lib.so-versioned := $(filter $(versioned), $(install-lib.so))
850 install-lib.so-unversioned := $(filter-out $(versioned), $(install-lib.so))
852 # For versioned libraries, we install three files:
853 #       $(inst_libdir)/libfoo.so        -- for linking, symlink or ld script
854 #       $(inst_slibdir)/libfoo.so.NN    -- for loading by SONAME, symlink
855 #       $(inst_slibdir)/libfoo-X.Y.Z.so -- the real shared object file
856 V := $(firstword $($(subdir)-version) $(version))
857 install-lib-nosubdir: $(install-lib.so-unversioned:%=$(inst_slibdir)/%) \
858                       $(foreach L,$(install-lib.so-versioned),\
859                                 $(inst_libdir)/$L \
860                                 $(inst_slibdir)/$(L:.so=)-$V.so \
861                                 $(inst_slibdir)/$L$($L-version))
863 # Install all the unversioned shared libraries.
864 $(install-lib.so-unversioned:%=$(inst_slibdir)/%): $(inst_slibdir)/%.so: \
865     $(objpfx)%.so $(+force)
866         $(do-install-program)
868 ifneq ($(findstring -s,$(LN_S)),)
869 define make-link
870 rm -f $@.new
871 $(SHELL) $(..)scripts/rellns-sh $< $@.new
872 mv -f $@.new $@
873 endef
874 else
875 # If we have no symbolic links don't bother with rellns-sh.
876 define make-link
877 rm -f $@.new
878 $(LN_S) $< $@.new
879 mv -f $@.new $@
880 endef
881 endif
883 ifeq (yes,$(build-shared))
884 ifeq (no,$(cross-compiling))
885 symbolic-link-prog := $(common-objpfx)elf/sln
886 symbolic-link-list := $(common-objpfx)elf/symlink.list
887 define make-shlib-link
888 echo $(<F) $@ >> $(symbolic-link-list)
889 endef
890 else # cross-compiling
891 # We need a definition that can be used by elf/Makefile's install rules.
892 symbolic-link-prog = $(LN_S)
893 endif
894 endif
895 ifndef make-shlib-link
896 define make-shlib-link
897 rm -f $@
898 $(LN_S) $(<F) $@
899 endef
900 endif
902 ifdef libc.so-version
903 # For a library specified to be version N, install three files:
904 # libc.so       ->      libc.so.N       (e.g. libc.so.6)
905 # libc.so.6     ->      libc-VERSION.so (e.g. libc-1.10.so)
907 $(inst_slibdir)/libc.so$(libc.so-version): $(inst_slibdir)/libc-$(version).so \
908                                            $(+force)
909         $(make-shlib-link)
910 $(inst_slibdir)/libc-$(version).so: $(common-objpfx)libc.so $(+force)
911         $(do-install-program)
912 install: $(inst_slibdir)/libc.so$(libc.so-version)
914 # This fragment of linker script gives the OUTPUT_FORMAT statement
915 # for the configuration we are building.  We put this statement into
916 # the linker scripts we install for -lc et al so that they will not be
917 # used by a link for a different format on a multi-architecture system.
918 $(common-objpfx)format.lds: $(..)scripts/output-format.sed \
919                             $(common-objpfx)config.make \
920                             $(common-objpfx)config.h $(..)Makerules
921         $(LINK.o) -shared $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS.so) \
922                   -x c /dev/null -o $@.so -Wl,--verbose -v 2>&1 \
923         | sed -n -f $< > $@.new
924         rm -f $@.so
925         mv -f $@.new $@
926 common-generated += format.lds
928 ifndef subdir
929 # What we install as libc.so for programs to link against is in fact a
930 # link script.  It contains references for the various libraries we need.
931 # The libc.so object is not complete since some functions are only defined
932 # in libc_nonshared.a.
933 # We need to use absolute paths since otherwise local copies (if they exist)
934 # of the files are taken by the linker.
935 install: $(inst_libdir)/libc.so
936 $(inst_libdir)/libc.so: $(common-objpfx)format.lds \
937                         $(common-objpfx)libc.so$(libc.so-version) \
938                         $(inst_libdir)/$(patsubst %,$(libtype.oS),\
939                                                   $(libprefix)$(libc-name)) \
940                         $(+force)
941         (echo '/* GNU ld script';\
942          echo '   Use the shared library, but some functions are only in';\
943          echo '   the static library, so try that secondarily.  */';\
944          cat $<; \
945          echo 'GROUP ( $(slibdir)/libc.so$(libc.so-version)' \
946               '$(libdir)/$(patsubst %,$(libtype.oS),$(libprefix)$(libc-name))'\
947               ')' \
948         ) > $@.new
949         mv -f $@.new $@
951 endif
953 else
954 install: $(inst_slibdir)/libc.so
955 $(inst_slibdir)/libc.so: $(common-objpfx)libc.so $(+force)
956         $(do-install-program)
957 endif
959 ifneq (,$(versioned))
960 # Produce three sets of rules as above for all the smaller versioned libraries.
962 define o-iterator-doit
963 $(inst_libdir)/$o: $(inst_slibdir)/$o$($o-version) $(+force); $$(make-link)
964 endef
965 object-suffixes-left := $(filter-out $(install-lib-ldscripts),$(versioned))
966 ifneq (,$(object-suffixes-left))
967 include $(o-iterator)
968 endif
970 # Make symlinks in the build directory, because the versioned names might
971 # be referenced by a DT_NEEDED in another library.
972 define o-iterator-doit
973 $(objpfx)$o$($o-version): $(objpfx)$o; $$(make-link)
974 endef
975 object-suffixes-left := $(versioned)
976 include $(o-iterator)
978 generated += $(foreach o,$(versioned),$o$($o-version))
980 ifeq (,$($(subdir)-version))
981 define o-iterator-doit
982 $(inst_slibdir)/$o$($o-version): $(inst_slibdir)/$(o:.so=)-$(version).so \
983                                  $(+force);
984         $$(make-shlib-link)
985 endef
986 object-suffixes-left := $(versioned)
987 include $(o-iterator)
989 define o-iterator-doit
990 $(inst_slibdir)/$(o:.so=)-$(version).so: $(objpfx)$o $(+force);
991         $$(do-install-program)
992 endef
993 object-suffixes-left := $(versioned)
994 include $(o-iterator)
995 else
996 define o-iterator-doit
997 $(inst_slibdir)/$o$($o-version): \
998   $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so $(+force);
999         $$(make-shlib-link)
1000 endef
1001 object-suffixes-left := $(versioned)
1002 include $(o-iterator)
1004 define o-iterator-doit
1005 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so: $(objpfx)$o $(+force);
1006         $$(do-install-program)
1007 endef
1008 object-suffixes-left := $(versioned)
1009 include $(o-iterator)
1010 endif
1011 endif
1013 define do-install-so
1014 $(do-install-program)
1015 $(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
1016            $(filter-out %.so,$@))
1017 endef
1019 so-versions := $(sort $(foreach so,$(install-lib.so),.so$($(so)-version)))
1020 $(foreach v,$(so-versions),\
1021           $(inst_slibdir)/lib$(libprefix)%$v): $(common-objpfx)lib%.so \
1022                                                $(+force)
1023         $(do-install-so)
1024 $(foreach v,$(so-versions),\
1025           $(inst_slibdir)/$(libprefix)%$v): $(common-objpfx)%.so $(+force)
1026         $(do-install-so)
1027 endif
1029 ifdef install-bin
1030 $(addprefix $(inst_bindir)/,$(install-bin)): \
1031     $(inst_bindir)/%: $(objpfx)% $(+force)
1032         $(do-install-program)
1033 endif
1034 ifdef install-bin-script
1035 $(addprefix $(inst_bindir)/,$(install-bin-script)): \
1036     $(inst_bindir)/%: $(objpfx)% $(+force)
1037         $(do-install-script)
1038 endif
1039 ifdef install-rootsbin
1040 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin)): \
1041    $(inst_rootsbindir)/%: $(objpfx)% $(+force)
1042         $(do-install-program)
1043 endif
1044 ifdef install-sbin
1045 $(addprefix $(inst_sbindir)/,$(install-sbin)): \
1046     $(inst_sbindir)/%: $(objpfx)% $(+force)
1047         $(do-install-program)
1048 endif
1049 ifdef install-lib
1050 install-lib.a := $(filter lib%.a,$(install-lib))
1051 install-lib-non.a := $(filter-out lib%.a,$(install-lib))
1052 ifdef install-lib-non.a
1053 $(addprefix $(inst_libdir)/$(libprefix),$(install-lib-non.a)): \
1054   $(inst_libdir)/$(libprefix)%: $(objpfx)% $(+force)
1055         $(do-install)
1056 endif
1057 ifdef install-lib.a
1058 $(install-lib.a:lib%.a=$(inst_libdir)/lib$(libprefix)%.a): \
1059   $(inst_libdir)/lib$(libprefix)%.a: $(objpfx)lib%.a $(+force)
1060         $(do-install)
1061         $(patsubst %,$(RANLIB) $@,$(filter-out $(non-lib.a),$(<F)))
1062 endif
1063 endif
1064 ifdef install-data
1065 $(addprefix $(inst_datadir)/,$(install-data)): $(inst_datadir)/%: % $(+force)
1066         $(do-install)
1067 endif
1068 headers := $(strip $(headers))
1069 ifdef headers
1070 $(addprefix $(inst_includedir)/,$(headers)): $(inst_includedir)/%: % $(+force)
1071         $(do-install)
1072 endif   # headers
1074 .PHONY: install-bin-nosubdir install-bin-script-nosubdir \
1075         install-rootsbin-nosubdir install-sbin-nosubdir install-lib-nosubdir \
1076         install-data-nosubdir install-headers-nosubdir
1077 install-bin-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin))
1078 install-bin-script-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin-script))
1079 install-rootsbin-nosubdir: \
1080         $(addprefix $(inst_rootsbindir)/,$(install-rootsbin))
1081 install-sbin-nosubdir: $(addprefix $(inst_sbindir)/,$(install-sbin))
1082 install-lib-nosubdir: $(addprefix $(inst_libdir)/,\
1083                        $(patsubst lib%.a,lib$(libprefix)%.a,$(install-lib.a)) \
1084                        $(addprefix $(libprefix),$(install-lib-non.a)))
1085 install-data-nosubdir: $(addprefix $(inst_datadir)/,$(install-data))
1086 install-headers-nosubdir: $(addprefix $(inst_includedir)/,$(headers))
1087 install-others-nosubdir: $(install-others)
1089 # We need all the `-nosubdir' targets so that `install' in the parent
1090 # doesn't depend on several things which each iterate over the subdirs.
1091 # This rule makes `install-FOO' always use `install-FOO-nosubdir' as a
1092 # subroutine.  Then in the parent `install-FOO' also causes subdir makes.
1093 install-%:: install-%-nosubdir ;
1095 .PHONY: install install-no-libc.a-nosubdir
1096 ifeq ($(build-programs),yes)
1097 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
1098                             install-bin-nosubdir install-bin-script-nosubdir \
1099                             install-lib-nosubdir install-others-nosubdir \
1100                             install-rootsbin-nosubdir install-sbin-nosubdir
1101 else
1102 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
1103                             install-lib-nosubdir install-others-nosubdir
1104 endif
1105 install: install-no-libc.a-nosubdir
1107 # Command to compile $< in $(objdir) using the native libraries.
1108 define native-compile
1109 $(make-target-directory)
1110 $(patsubst %/,cd % &&,$(objpfx)) \
1111 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
1112             $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(@F)
1113 endef
1115 # Command to compile $< in $(common-objdir) using the native libraries.
1116 # We must cd to $(objdir) anyway so that $(..)config.h is valid.
1117 define common-objdir-compile
1118 $(patsubst %/,cd % &&,$(objpfx)) \
1119 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
1120             $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(..)$(@F)
1121 endef
1123 # We always want to use configuration definitions.
1124 # Note that this is only used for commands running in $(objpfx).
1125 ALL_BUILD_CFLAGS = $(BUILD_CFLAGS) -include $(..)config.h
1127 # Support the GNU standard name for this target.
1128 .PHONY: check
1129 check: tests
1130 # Special target to run tests which cannot be run unconditionally.
1131 # Maintainers should use this target.
1132 .PHONY: xcheck
1133 xcheck: xtests
1135 all-nonlib = $(strip $(tests) $(xtests) $(test-srcs) $(test-extras) $(others))
1136 ifneq (,$(all-nonlib))
1137 cpp-srcs-left = $(all-nonlib:=.c)
1138 lib := nonlib
1139 include $(patsubst %,$(..)cppflags-iterator.mk,$(all-nonlib))
1140 endif
1142 # The include magic above causes those files to use this variable for flags.
1143 CPPFLAGS-nonlib = -DNOT_IN_libc=1
1146 ifeq ($(versioning),yes)
1147 # Generate normalized lists of symbols, versions, and data sizes.
1148 # This is handy for checking against existing library binaries.
1150 %.symlist: $(..)scripts/abilist.awk %.dynsym
1151         LC_ALL=C $(AWK) -f $^ > $@T
1152         mv -f $@T $@
1154 %.dynsym: %.so
1155         $(OBJDUMP) --dynamic-syms $< > $@T
1156         mv -f $@T $@
1158 check-abi-%: $(..)scripts/extract-abilist.awk $(common-objpfx)config.make \
1159              $(..)abilist/%.abilist $(objpfx)%.symlist
1160         $(check-abi)
1161 check-abi-%: $(..)scripts/extract-abilist.awk $(common-objpfx)config.make \
1162              $(..)abilist/%.abilist $(common-objpfx)%.symlist
1163         $(check-abi)
1164 define check-abi
1165         LC_ALL=C \
1166         $(AWK) -f $< -v 'config=$(check-abi-config)' \
1167                $(filter %.abilist,$^) \
1168         | { diff -pu0 - $(filter %.symlist,$^) $(check-abi-warn) ; }
1169 endef
1170 ifeq ($(enable-check-abi),warn)
1171 check-abi-warn = || echo '*** WARNING: $*.so failed ABI check'
1172 endif
1174 ifeq ($(firstword $(sysd-sorted-done) f)$(firstword $(generating) f),tf)
1175 -include $(common-objpfx)tls.make
1176 config-tls := notls
1177 ifeq ($(use-tls),yes)
1178 config-tls := tls
1179 endif
1180 ifeq ($(use-thread),yes)
1181 config-tls := thread
1182 endif
1183 check-abi-config := \
1184   $(config-machine)-$(config-vendor)-$(config-os)/$(config-tls)
1185 endif
1187 update-abi-%: $(..)scripts/merge-abilist.awk $(..)abilist/%.abilist \
1188               $(objpfx)%.symlist
1189         $(update-abi)
1190 update-abi-%: $(..)scripts/merge-abilist.awk $(..)abilist/%.abilist \
1191               $(common-objpfx)%.symlist
1192         $(update-abi)
1193 ifndef update-abi-config
1194 define update-abi
1195         @echo 'Run $(MAKE) $@ update-abi-config=REGEXP'; exit 2
1196 endef
1197 else
1198 define update-abi
1199 LC_ALL=C $(AWK) -v config='$(update-abi-config)' -f $^ \
1200          > $(..)abilist/$*.abilist.new
1201 @if cmp -s $(..)abilist/$*.abilist.new $(..)abilist/$*.abilist 2> /dev/null; \
1202  then rm -f $(..)abilist/$*.abilist.new; \
1203       echo '+++ $(..)abilist/$*.abilist is unchanged'; \
1204  else mv -f $(..)abilist/$*.abilist.new $(..)abilist/$*.abilist; \
1205       echo '*** Now check $*.abilist changes for correctness ***'; \
1206  fi
1207 endef
1208 endif
1210 .PHONY: update-abi check-abi
1211 update-abi: $(patsubst %.so,update-abi-%,$(install-lib.so-versioned))
1212 check-abi: $(patsubst %.so,check-abi-%,$(install-lib.so-versioned))
1213 ifdef subdir
1214 subdir_check-abi: check-abi
1215 subdir_update-abi: update-abi
1216 else
1217 check-abi: subdir_check-abi
1218 update-abi: subdir_update-abi
1219 endif
1221 ifeq ($(subdir),elf)
1222 check-abi: check-abi-libc
1223 update-abi: update-abi-libc
1224 common-generated += libc.symlist
1225 endif
1227 ifeq ($(build-shared),yes)
1228 ifneq ($(enable-check-abi),no)
1229 ifdef subdir
1230 tests: check-abi
1231 endif
1232 endif
1233 endif
1235 endif
1237 # There's no good place to put this - here will do.
1238 ifeq ($(filter %posix, $(sysdirs)),)
1239 L_tmpnam  = 1
1240 TMP_MAX   = 0
1241 L_ctermid = 1
1242 L_cuserid = 1
1243 else
1244 L_tmpnam  = 20
1245 TMP_MAX   = 238328
1246 L_ctermid = 9
1247 L_cuserid = 9
1248 endif
1249 stdio_lim = $(common-objpfx)bits/stdio_lim.h
1251 $(stdio_lim:lim.h=%.h) $(stdio_lim:lim.h=%.d): $(stdio_lim:lim.h=%.st); @:
1252 $(stdio_lim:h=st): $(..)stdio-common/stdio_lim.h.in $(..)Rules \
1253                    $(common-objpfx)config.make
1254         $(make-target-directory)
1255         { echo '#include "$(..)posix/bits/posix1_lim.h"';               \
1256           echo '#define _LIBC 1';                                       \
1257           echo '#include "$(..)misc/sys/uio.h"'; } |                    \
1258         $(CC) -E -dM -MD -MP -MF $(@:st=dT) -MT '$(@:st=h) $(@:st=d)'   \
1259               $(+includes) -xc - -o $(@:st=hT)
1260         sed $(sed-remove-objpfx) $(sed-remove-dotdot)                   \
1261             $(@:st=dT) > $(@:st=dt)
1262         mv -f $(@:st=dt) $(@:st=d)
1263         fopen_max=`sed -n 's/^#define OPEN_MAX //1p' $(@:st=hT)`;       \
1264         filename_max=`sed -n 's/^#define PATH_MAX //1p' $(@:st=hT)`;    \
1265         iov_max=`sed -n 's/^#define UIO_MAXIOV //p' $(@:st=hT)`;        \
1266         fopen_max=$${fopen_max:-16};                                    \
1267         filename_max=$${filename_max:-1024};                            \
1268         if [ -z "$$iov_max" ]; then                                     \
1269           define_iov_max="# undef IOV_MAX";                             \
1270         else                                                            \
1271           define_iov_max="# define IOV_MAX $$iov_max";                  \
1272         fi;                                                             \
1273         sed -e "s/@FOPEN_MAX@/$$fopen_max/"                             \
1274             -e "s/@FILENAME_MAX@/$$filename_max/"                       \
1275             -e "s/@L_tmpnam@/$(L_tmpnam)/"                              \
1276             -e "s/@TMP_MAX@/$(TMP_MAX)/"                                \
1277             -e "s/@L_ctermid@/$(L_ctermid)/"                            \
1278             -e "s/@L_cuserid@/$(L_cuserid)/"                            \
1279             -e "s/@define_IOV_MAX@/$$define_iov_max/"                   \
1280             $< > $(@:st=h.new)
1281         $(move-if-change) $(@:st=h.new) $(@:st=h)
1282 # Remove these last so that they can be examined if something went wrong.
1283         rm -f $(@:st=hT) $(@:st=dT) $(@:st=dt)
1284         touch $@
1285 # Get dependencies.
1286 ifndef no_deps
1287 -include $(stdio_lim:h=d)
1288 endif
1289 common-generated += bits/stdio_lim.h bits/stdio_lim.d bits/stdio_lim.st
1291 .PHONY: TAGS
1292 TAGS: $(objpfx)distinfo $(..)MakeTAGS
1293         $(MAKE) $(addprefix -f ,$^) $@
1295 $(..)po/%.pot: $(objpfx)distinfo $(..)MakeTAGS FORCE
1296         $(MAKE) $(addprefix -f ,$(filter-out FORCE,$^)) $@
1297 FORCE:
1300 .PHONY: echo-headers
1301 echo-headers:
1302         @echo $(headers)
1305 # Common cleaning targets.
1307 .PHONY: common-mostlyclean common-clean mostlyclean clean do-tests-clean
1308 clean: common-clean
1309 mostlyclean: common-mostlyclean
1311 do-tests-clean:
1312         -rm -f $(addprefix $(objpfx),$(addsuffix .out,$(tests) $(xtests) \
1313                                                       $(test-srcs)) \
1314                                      $(addsuffix -bp.out,$(tests) $(xtests) \
1315                                                          $(test-srcs)))
1317 # Remove the object files.
1318 common-mostlyclean:
1319         -rm -f $(addprefix $(objpfx),$(tests) $(xtests) $(test-srcs) \
1320                                      $(others) $(sysdep-others) stubs \
1321                                      $(addsuffix .o,$(tests) $(xtests) \
1322                                                     $(test-srcs) $(others) \
1323                                                     $(sysdep-others)) \
1324                                      $(addsuffix -bp,$(tests) $(xtests) \
1325                                                      $(test-srcs)) \
1326                                      $(addsuffix .out,$(tests) $(xtests) \
1327                                                       $(test-srcs)) \
1328                                      $(addsuffix -bp.out,$(tests) $(xtests) \
1329                                                          $(test-srcs)))
1330         -rm -f $(addprefix $(objpfx),$(extra-objs) $(install-lib) \
1331                                      $(install-lib.so) \
1332                                      $(install-lib.so:%.so=%_pic.a))
1333         -rm -f core
1334         -rm -f $(objpfx)rtld-*.os
1335         $(rmobjs)
1336 define rmobjs
1337 $(foreach o,$(object-suffixes-for-libc),
1338 -rm -f $(objpfx)stamp$o $(o-objects))
1339 endef
1341 # Also remove the dependencies and generated source files.
1342 common-clean: common-mostlyclean
1343         -rm -f $(addprefix $(objpfx),$(generated))
1344         -rm -f $(objpfx)*.d $(objpfx)*.dt
1345         -rm -fr $(addprefix $(objpfx),$(generated-dirs))
1346         -rm -f $(addprefix $(common-objpfx),$(common-generated))
1347         -rm -f $(objpfx)distinfo
1349 # Produce a file `stubs' which contains `#define __stub_FUNCTION'
1350 # for each function which is a stub.  We grovel over all the .d files
1351 # looking for references to <stub-tag.h>.  Then we grovel over each
1352 # referenced source file to see what stub function it defines.
1354 ifdef objpfx
1355 .PHONY: stubs # The parent Makefile calls this target.
1356 stubs: $(objpfx)stubs
1357 endif
1358 $(objpfx)stubs: $(+depfiles)
1359 ifneq (,$(strip $(+depfiles)))
1360 # Use /dev/null since `...` might expand to empty.
1361         c=`($(patsubst %/,cd % &&,$(objpfx)) \
1362             sed -n -e 's@\$$(common-objpfx)@$(common-objpfx)@g' \
1363                    -e 's@\$$(objpfx)@$(objpfx)@g' \
1364                    -e '/stub-tag\.h/{; g; s/./&/p; }' \
1365                    -e '/:/{x; s/^.*$$//; x; }' \
1366                    -e 's/^.*://;s/\\$$//;s/^ *\([^ ][^ ]*\) .*$$/\1/' \
1367                    -e '/^[^ ][^ ]*$$/{G;s/^.*\n\(..*\)/\1/;s/\n//;h; }' \
1368                    $(patsubst $(objpfx)%,%,$^)) | sort | uniq`; \
1369         sed -n 's/^stub_warning *(\([^)]*\).*$$/#define __stub_\1/p' \
1370             $$c /dev/null > $@T
1371         mv -f $@T $@
1372 else
1373         > $@
1374 endif
1376 # Make the distribution tar file.
1378 .PHONY: dist
1379 dist: $(objpfx)distinfo $(..)Make-dist
1380         $(MAKE) -f $< -f $(word 2,$^) $(Make-dist-args)
1382 # Avoid depending on source files found in sysdeps dirs,
1383 # because the references affect implicit rule selection.
1384 dist: $(filter-out %.c %.S %.s,$(distribute))
1386 # We used to simply export all these variables, but that frequently made the
1387 # environment get too large.  Instead, we write all the information into
1388 # a generated makefile fragment `distinfo', and then include it with -f in
1389 # the sub-make that makes the distribution (above).
1390 $(objpfx)distinfo: Makefile $(..)Makerules \
1391                    $(wildcard $(foreach dir,$(sysdirs),$(dir)/Makefile))
1392         $(make-target-directory)
1393         $(distinfo-vars)
1394         mv -f $@.new $@
1395 .PHONY: subdir_distinfo
1396 subdir_distinfo: $(objpfx)distinfo
1398 define distinfo-vars
1399 rm -f $@.new
1400 echo > $@.new 'subdir := $(subdir)'
1401 $(foreach var,subdir-dirs sources elided-routines sysdep_routines \
1402               headers sysdep_headers distribute dont_distribute generated \
1403               others tests xtests test-srcs extra-libs versioned \
1404               $(extra-libs:%=%-routines) \
1405               $(addprefix install-,lib lib.so data bin bin-script sbin others),
1406 echo >> $@.new '$(subdir)-$(var) := $($(var))'
1407 echo >> $@.new '$(var) = $$($(subdir)-$(var))')
1408 endef
1410 ifneq (,$(strip $(gpl2lgpl)))
1411 ifneq (,$(wildcard $(..)gpl2lgpl.sed))
1412 # Snarf from the master source and frob the copying notice.
1413 $(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
1414         sed -f $^ > $@-tmp
1415 # So I don't edit them by mistake.
1416         chmod a-w $@-tmp
1417         mv -f $@-tmp $@
1418 ifeq ($(with-cvs),yes)
1419         test ! -d CVS || cvs $(CVSOPTS) commit -m'Updated from $^' $@
1420 endif
1421 endif
1422 endif
1424 # Local Variables:
1425 # mode: makefile
1426 # End: