Update.
[glibc.git] / Makerules
blobb40362eb721555d027939660bb7ab3608704ffb2
1 # Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 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 Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # 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 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB.  If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 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 -include $(+sysdir_pfx)sysd-Makefile
98 ifndef avoid-generated
99 ifneq ($(sysd-Makefile-sysdirs),$(config-sysdirs))
100 sysd-Makefile-force = FORCE
101 FORCE:
102 endif
103 $(+sysdir_pfx)sysd-Makefile: $(+sysdir_pfx)config.make $(..)Makerules \
104                              $(sysd-Makefile-force)
105         -@rm -f $@T
106         (echo 'sysd-Makefile-sysdirs := $(config-sysdirs)';                   \
107          for file in $(config-sysdirs:=/Makefile); do                         \
108            if [ -f $(..)$$file ]; then                                        \
109              echo include "\$$(..)$$file";                                    \
110            else true; fi;                                                     \
111          done;                                                                \
112          echo 'sysd-Makefile-done=t') > $@T
113         mv -f $@T $@
114 endif
116 ifndef sysd-Makefile-done
117 # Don't do deps until this exists, because it might change the sources list.
118 no_deps=t
119 endif
122 # Reorder before-compile so that mach things come first, and hurd things
123 # second, before all else.  The mach and hurd subdirectories have many
124 # generated header files which the much of rest of the library depends on,
125 # so it is best to build them first (and mach before hurd, at that).
126 before-compile := $(filter $(common-objpfx)mach% $(common-objpfx)hurd%,\
127                            $(before-compile)) \
128                   $(filter-out $(common-objpfx)mach% $(common-objpfx)hurd%,\
129                                $(before-compile))
131 # Remove existing files from `before-compile'.  Things are added there when
132 # they must exist for dependency generation to work right, but once they
133 # exist there is no further need for every single file to depend on them,
134 # and those gratuitous dependencies result in many gratuitous
135 # recompilations.
136 before-compile := $(filter-out $(wildcard $(before-compile)),$(before-compile))
138 # Don't let any before-compile file be an intermediate and get removed.
139 ifdef before-compile
140 $(before-compile):
141 endif
143 # Generate an ordered list of implicit rules which find the source files in
144 # each sysdep directory.  The old method was to use vpath to search all the
145 # sysdep directories.  However, that had the problem that a .S file in a
146 # later directory would be chosen over a .c file in an earlier directory,
147 # which does not preserve the desired sysdeps ordering behavior.
149 # When making the list of .d files to include, we can't know which ones
150 # have source in .s files, and thus do not in fact need a .d file.
151 # So we must define rules to make .d files for .s files.
152 define make-dummy-dep
153 $(addprefix ln $(common-objpfx)dummy.d ,$(filter-out $(wildcard $@),$@))
154 endef
155 $(common-objpfx)dummy.d:
156         echo '# .s files cannot contain includes, so they need no deps.' > $@
158 # It matters that this set of rules, for compiling from sources in
159 # the current directory (the $srcdir/$subdir) come before the
160 # generated sysdep rules in included from sysd-rules below.  When
161 # compiling in the source tree, generated sources go into the current
162 # directory, and those should be chosen before any sources in sysdeps.
163 define o-iterator-doit
164 $(objpfx)%$o: %.S $(before-compile); $$(compile-command.S)
165 endef
166 object-suffixes-left := $(all-object-suffixes)
167 include $(o-iterator)
168 $(objpfx)%.d: %.S $(before-compile); $(+make-deps)
170 define o-iterator-doit
171 $(objpfx)%$o: %.s $(before-compile); $$(compile-command.s)
172 endef
173 object-suffixes-left := $(all-object-suffixes)
174 include $(o-iterator)
175 $(objpfx)%.d: %.s $(common-objpfx)dummy.d; $(make-dummy-dep)
177 define o-iterator-doit
178 $(objpfx)%$o: %.c $(before-compile); $$(compile-command.c)
179 endef
180 object-suffixes-left := $(all-object-suffixes)
181 include $(o-iterator)
182 $(objpfx)%.d: %.c $(before-compile); $(+make-deps)
184 # Omit the objpfx rules when building in the source tree, because
185 # objpfx is empty and so these rules just override the ones above.
186 ifdef objpfx
187 # Define first rules to find the source files in $(objpfx).
188 # Generated source files will end up there.
189 define o-iterator-doit
190 $(objpfx)%$o: $(objpfx)%.S $(before-compile); $$(compile-command.S)
191 endef
192 object-suffixes-left := $(all-object-suffixes)
193 include $(o-iterator)
194 $(objpfx)%.d: $(objpfx)%.S $(before-compile); $(+make-deps)
196 define o-iterator-doit
197 $(objpfx)%$o: $(objpfx)%.s $(before-compile); $$(compile-command.s)
198 endef
199 object-suffixes-left := $(all-object-suffixes)
200 include $(o-iterator)
201 $(objpfx)%.d: $(objpfx)%.s $(common-objpfx)dummy.d; $(make-dummy-dep)
203 define o-iterator-doit
204 $(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c)
205 endef
206 object-suffixes-left := $(all-object-suffixes)
207 include $(o-iterator)
208 $(objpfx)%.d: $(objpfx)%.c $(before-compile); $(+make-deps)
209 endif
211 # System-dependent makefiles can put in `inhibit-sysdep-asm' wildcard
212 # patterns matching sysdep directories whose assembly source files should
213 # be suppressed.
214 ifdef inhibit-sysdep-asm
215 define open-check-inhibit-asm
216 case $$sysdir in $(subst $(empty) ,|,$(inhibit-sysdep-asm))) : ;; *)
217 endef
218 close-check-inhibit-asm = ;; esac ;
219 endif
221 # Don't include sysd-rules until sysd-Makefile is already there and has been
222 # included.  It might define inhibit-sysdep-asm, which would affect the
223 # contents of sysd-rules.
224 ifdef sysd-Makefile-done
225 -include $(+sysdir_pfx)sysd-rules
226 ifneq ($(sysd-rules-sysdirs),$(config-sysdirs))
227 # The value of $(+sysdep_dirs) the sysd-rules was computed for
228 # differs from the one we are using now.  So force a rebuild of sysd-rules.
229 sysd-rules-force = FORCE
230 FORCE:
231 endif
232 endif
233 $(+sysdir_pfx)sysd-rules: $(+sysdir_pfx)config.make $(..)Makerules \
234                           $(wildcard $(foreach dir,$(sysdirs),\
235                                                $(dir)/Makefile))\
236                           $(sysd-rules-force)
237         -@rm -f $@T
238         (echo 'sysd-rules-sysdirs := $(config-sysdirs)';                      \
239          for dir in $(config-sysdirs:%='$$(..)%'); do                         \
240            for o in $(all-object-suffixes); do \
241              $(open-check-inhibit-asm) \
242              echo "\$$(objpfx)%$$o: $$dir/%.S \$$(before-compile); \
243                   \$$(compile-command.S)";                                    \
244              echo "\$$(objpfx)%$$o: $$dir/%.s \$$(before-compile); \
245                   \$$(compile-command.s)";                                    \
246              $(close-check-inhibit-asm) \
247              echo "\$$(objpfx)%$$o: $$dir/%.c \$$(before-compile); \
248                   \$$(compile-command.c)";                                    \
249            done; \
250            $(open-check-inhibit-asm) \
251            echo "\$$(objpfx)%.d: $$dir/%.s \$$(common-objpfx)dummy.d; \
252                 \$$(make-dummy-dep)";                          \
253            echo "\$$(objpfx)%.d: $$dir/%.S \$$(before-compile); \
254                 \$$(+make-deps)";                                             \
255            $(close-check-inhibit-asm)   \
256            echo "\$$(objpfx)%.d: $$dir/%.c \$$(before-compile); \
257                 \$$(+make-deps)";                                             \
258          done;                                                                \
259          echo 'sysd-rules-done = t') > $@T
260         mv -f $@T $@
262 ifndef sysd-rules-done
263 # Don't do deps until this exists, because it provides rules to make the deps.
264 no_deps=t
265 endif
267 # Generate version maps, but wait until sysdep-subdirs is known
268 ifdef sysd-dirs-done
269 ifeq ($(versioning),yes)
270 -include $(common-objpfx)sysd-versions
271 $(addprefix $(common-objpfx),$(version-maps)): $(common-objpfx)sysd-versions
272 common-generated += $(version-maps) sysd-versions
274 ifndef avoid-generated
275 ifneq ($(sysd-versions-subdirs),$(all-subdirs) $(config-sysdirs))
276 sysd-versions-force = FORCE
277 FORCE:
278 endif
279 $(common-objpfx)Versions.all: $(..)Versions.def \
280                               $(wildcard $(add-ons:%=$(..)%/Versions.def))
281         cat $^ > $@T
282         mv -f $@T $@
283 common-generated += $(common-objpfx)Versions.all
284 $(common-objpfx)sysd-versions: $(common-objpfx)Versions.all \
285                                $(..)scripts/versions.awk \
286                                $(wildcard $(all-subdirs:%=$(..)%/Versions)) \
287                                $(wildcard $(sysdirs:%=%/Versions)) \
288                                $(sysd-versions-force)
289         { echo 'sysd-versions-subdirs = $(all-subdirs) $(config-sysdirs)' ; \
290           $(AWK) -v buildroot=$(common-objpfx) -v defsfile=$< \
291                  -v move_if_change='$(move-if-change)' \
292                  -f $(filter-out $< $(sysd-versions-force),$^); \
293         } > $@T
294         mv -f $@T $@
295 endif # avoid-generated
296 endif # $(versioning) = yes
297 endif # sysd-dirs-done
299 ifndef compile-command.S
300 compile-command.S = $(compile.S) $(OUTPUT_OPTION)
301 endif
302 ifndef compile-command.s
303 compile-command.s = $(COMPILE.s) $< $(OUTPUT_OPTION)
304 endif
305 ifndef compile-command.c
306 compile-command.c = $(compile.c) $(OUTPUT_OPTION)
307 endif
309 # GCC can grok options after the file name, and it looks nicer that way.
310 compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS)
311 compile.S = \
312   $(CC) $< -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@))
313 COMPILE.S = \
314   $(CC) -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@))
315 COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS)
317 # We need this for the output to go in the right place.  It will default to
318 # empty if make was configured to work with a cc that can't grok -c and -o
319 # together.  You can't compile the C library with such a compiler.
320 OUTPUT_OPTION = -o $@
322 S-CPPFLAGS = $(asm-CPPFLAGS)
323 define +make-deps
324 $(make-target-directory)
325 -@rm -f $@
326 $(+mkdep) $< $(CFLAGS) $(CPPFLAGS) $($(<:$*.%=%)-CPPFLAGS) | \
327 sed \
328 -e 's,$(subst .,\.,$*)\.o,$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
329 $(sed-remove-objpfx) > $(@:.d=.T)
330 mv -f $(@:.d=.T) $@
331 endef
332 ifneq (,$(objpfx))
333 # Continuation lines here are dangerous because they introduce spaces!
334 define sed-remove-objpfx
335 -e 's@ $(subst .,\.,$(subst @,\@,$(common-objpfx)))@ $$(common-objpfx)@g' \
336 -e 's@^$(subst .,\.,$(subst @,\@,$(common-objpfx)))@$$(common-objpfx)@g'
337 endef
338 endif
340 # Shared library building.
342 ifeq (yes,$(build-shared))
344 # Reference map file only when versioning is selected and a map file name
345 # is given.
346 ifeq ($(versioning),yes)
347 map-file = $(firstword $($(@F:.so=-map)) \
348                        $(addprefix $(common-objpfx), \
349                                    $(filter $(@F:.so=.map),$(version-maps))))
350 load-map-file = $(map-file:%=-Wl,--version-script=%)
351 endif
353 # Pattern rule to build a shared object from an archive of PIC objects.
354 # This must come after the installation rules so Make doesn't try to
355 # build shared libraries in place from the installed *_pic.a files.
356 # $(LDLIBS-%.so) may contain -l switches to generate run-time dependencies
357 # on other shared objects.
358 lib%.so: lib%_pic.a $(+preinit) $(+postinit) $(+interp)
359         $(build-shlib)
361 define build-shlib
362 $(LINK.o) -shared -Wl,-O1 -o $@ $(sysdep-LDFLAGS) $(config-LDFLAGS)  \
363           -B$(csu-objpfx) $(load-map-file) \
364           -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \
365           $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
366           -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link) \
367           -Wl,--whole-archive \
368           $(filter-out $(map-file) $(+preinit) $(+postinit),$^) \
369           $(no-whole-archive) $(LDLIBS-$(@F:lib%.so=%).so)
370 endef
372 ifndef libc.so-version
373 # Undefine this because it can't work when we libc.so is unversioned.
374 static-only-routines =
375 endif
377 elide-routines.oS += $(filter-out $(static-only-routines),\
378                                   $(routines) $(aux) $(sysdep_routines))
379 elide-routines.os += $(static-only-routines)
381 # If we have versioned code we don't need the old versions in any of the
382 # static libraries.
383 elide-routines.o  += $(shared-only-routines)
384 elide-routines.op += $(shared-only-routines)
385 elide-routines.og += $(shared-only-routines)
386 elide-routines.ob += $(shared-only-routines)
388 # Don't try to use -lc when making libc.so itself.
389 # Also omits crti.o and crtn.o, which we do not want
390 # since we define our own `.init' section specially.
391 LDFLAGS-c.so = -nostdlib -nostartfiles
392 # But we still want to link libc.so against $(gnulib).
393 LDLIBS-c.so += $(gnulib)
394 # Give libc.so an entry point and make it directly runnable itself.
395 LDFLAGS-c.so += -e __libc_main
396 # Pre-link the objects of libc_pic.a so that we can locally resolve
397 # COMMON symbols before we link against ld.so.  This is because ld.so
398 # contains some of libc_pic.a already, which will prevent the COMMONs
399 # from being allocated in libc.so, which introduces evil dependencies
400 # between libc.so and ld.so, which can make it impossible to upgrade.
401 $(common-objpfx)libc_pic.os: $(common-objpfx)libc_pic.a
402         $(LINK.o) -nostdlib -nostartfiles -r -o $@ \
403         -Wl,-d -Wl,--whole-archive $^
404 # Use our own special initializer and finalizer files for libc.so.
405 $(common-objpfx)libc.so: $(elfobjdir)/soinit.os \
406                          $(common-objpfx)libc_pic.os \
407                          $(elfobjdir)/sofini.os \
408                          $(elfobjdir)/interp.os $(elfobjdir)/ld.so
409         $(build-shlib)
410 ifeq ($(versioning),yes)
411 $(common-objpfx)libc.so: $(common-objpfx)libc.map
412 endif
413 common-generated += libc.so libc_pic.os
414 ifdef libc.so-version
415 $(common-objpfx)libc.so$(libc.so-version): $(common-objpfx)libc.so
416         $(make-link)
417 common-generated += libc.so$(libc.so-version)
418 endif
419 endif
421 # Figure out the source filenames in this directory.
423 override sources        := $(addsuffix .c,$(filter-out $(elided-routines),\
424                                                        $(routines) $(aux) \
425                                                        $(sysdep_routines)))
426 sysdep_routines := $(sysdep_routines)
428 headers := $(headers) $(sysdep_headers)
430 # This is the list of all object files, gotten by
431 # replacing every ".c" in `sources' with a ".o".
432 override objects        := $(addprefix $(objpfx),$(sources:.c=.o))
435 # The makefile may define $(extra-libs) with `libfoo libbar'
436 # to build libfoo.a et al from the modules listed in $(libfoo-routines).
437 ifdef extra-libs
438 # extra-lib.mk is included once for each extra lib to define rules
439 # to build it, and to add its objects to the various variables.
440 # During its evaluation, $(lib) is set to the name of the library.
441 extra-libs-left := $(extra-libs)
442 include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
443 endif
445 +depfiles := $(sources:.c=.d) \
446              $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.os=.o))) \
447              $(addsuffix .d,$(tests) $(test-srcs) $(tests-static))
448 ifeq ($(build-programs),yes)
449 +depfiles += $(addsuffix .d,$(others) $(sysdep-others))
450 endif
451 +depfiles := $(addprefix $(objpfx),\
452                          $(filter-out $(addsuffix .d,$(omit-deps)),\
453                                       $(+depfiles)))
455 ifdef +depfiles
456 ifneq ($(no_deps),t)
457 -include $(+depfiles)
458 endif
459 endif
460 \f\f
461 # Maximize efficiency by minimizing the number of rules.
462 .SUFFIXES:      # Clear the suffix list.  We don't use suffix rules.
463 # Don't define any builtin rules.
464 MAKEFLAGS := $(MAKEFLAGS)r
466 # Generic rule for making directories.
468 # mkdir isn't smart enough to strip a trailing /.
469         mkdir $(@:%/=%)
471 # Make sure that object files are not removed
472 # when they are intermediates between sources and library members.
473 .PRECIOUS: $(addprefix $(objpfx)%,$(all-object-suffixes))
475 # Make sure that the parent library archive is never removed.
476 .PRECIOUS: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
478 # Use the verbose option of ar and tar when not running silently.
479 ifeq    "$(findstring s,$(MAKEFLAGS))" ""       # if not -s
480 verbose := v
481 else                                            # -s
482 verbose :=
483 endif                                           # not -s
485 ARFLAGS := r$(verbose)
486 CREATE_ARFLAGS := cru$(verbose)
488 # This makes all the object files in the parent library archive.
490 .PHONY: lib lib-noranlib
491 lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
492 lib-noranlib: libobjs
494 # For object-suffix $o, the list of objects with that suffix.
495 # Makefiles can define `elide-routines.so = foo' to leave foo.so out.
496 o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\
497                                                        $(elide-routines$o)),\
498                                             $(objects)))
499 others: $(addprefix $(objpfx),$(install-lib))
501 ifndef objects
503 # Create the stamp$o files to keep the parent makefile happy.
504 subdir_lib: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
505 $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o):
506         $(make-target-directory)
507         rm -f $@; > $@
508 else
510 # Define explicit rules to update each $(objpfx)stamp.SUFFIX
511 # timestamp file; these rules (one explicit rule is generated for each
512 # object suffix) write a list of objects to update in the stamp file.
513 # The parent will then actually add them all to the archive in the
514 # archive rule, below.
515 define o-iterator-doit
516 $(objpfx)stamp$o: $(o-objects); $$(do-stamp)
517 endef
518 define do-stamp
519 echo '$(patsubst $(objpfx)%,$(addsuffix /,$(subdir))%,$^)' > $@T
520 mv -f $@T $@
521 endef
522 object-suffixes-left := $(object-suffixes-for-libc)
523 include $(o-iterator)
525 endif
527 # Now define explicit rules to build the library archives; these depend
528 # on the stamp files built above.
529 define o-iterator-doit
530 $(common-objpfx)$(patsubst %,$(libtype$o),c): \
531                 $(subdirs-stamp-o) $(common-objpfx)stamp$o; $$(do-makelib)
532 endef
533 define do-makelib
534 cd $(common-objdir) && \
535 $(AR) $(CREATE_ARFLAGS) $(@F) `cat $(patsubst $(common-objpfx)%,%,$^)`
536 $(RANLIB) $@
537 endef
538 subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%)
539 subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
540 ifndef subdir
541 $(subdirs-stamps): subdir_lib;
542 endif
543 object-suffixes-left = $(object-suffixes-for-libc)
544 include $(o-iterator)
547 # This makes all the object files.
548 .PHONY: objects objs libobjs extra-objs
549 objects objs: libobjs extra-objs
550 libobjs: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
551 extra-objs: $(addprefix $(objpfx),$(extra-objs))
553 # Canned sequence for building an extra library archive.
554 define build-extra-lib
555 $(patsubst %/,cd % &&,$(objpfx)) \
556 $(AR) $(CREATE_ARFLAGS) $(@:$(objpfx)%=%) \
557       $(patsubst $(objpfx)%,%,$^)
558 $(RANLIB) $@
559 endef
561 # Installation.
563 .PHONY: force-install
564 force-install:
566 # $(install-lib) are installed from the object directory into $(libdir);
567 # files in $(install-lib) matching `lib%.a' are ranlib'd after installation
568 # unless they also appear in $(non-lib.a).  $(install-data) are installed
569 # as they are into $(datadir).  $(headers) are installed as they are in
570 # $(includedir).  $(install-bin) and $(install-sbin) are installed from the
571 # object directory into $(bindir) and $(sbindir), respectively.
572 # $(install-others) are absolute path names of files to install; rules to
573 # install them are defined elsewhere.
575 # The simple library name to install libc.a under.
576 # This could be defined by a sysdep Makefile.
577 ifndef libc-name
578 libc-name := c
579 endif
581 define do-install
582 $(make-target-directory)
583 $(INSTALL_DATA) $< $@
584 endef
586 # Make the target directory if it doesn't exist, using the `mkinstalldirs'
587 # script that does `mkdir -p' even if `mkdir' doesn't support that flag.
588 define make-target-directory
589 $(addprefix $(..)./scripts/mkinstalldirs ,\
590             $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%)))
591 endef
593 # Any directory (parent or subdir) should install libc.a; this way
594 # "make install" in a subdir is guaranteed to install everything it changes.
595 installed-libcs := $(foreach o,$(filter-out .os,$(object-suffixes-for-libc)),\
596                              $(inst_libdir)/$(patsubst %,$(libtype$o),\
597                                                      $(libprefix)$(libc-name)))
598 install: $(installed-libcs)
599 $(installed-libcs): $(inst_libdir)/lib$(libprefix)%: lib $(+force)
600         $(make-target-directory)
601         $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@
602 # Running ranlib after installing makes the __.SYMDEF time stamp up to
603 # date, which avoids messages from some linkers.
604         $(RANLIB) $@
606 define do-install-program
607 $(make-target-directory)
608 $(INSTALL_PROGRAM) $< $@.new
609 mv -f $@.new $@
610 endef
612 install-lib.so := $(filter %.so,$(install-lib:%_pic.a=%.so))
613 install-lib := $(filter-out %.so %_pic.a,$(install-lib))
615 ifeq (yes,$(build-shared))
616 # Find which .so's have versions.
617 versioned := $(strip $(foreach so,$(install-lib.so),\
618                                $(patsubst %,$(so),$($(so)-version))))
620 install-lib.so-versioned := $(filter $(versioned), $(install-lib.so))
621 install-lib.so-unversioned := $(filter-out $(versioned), $(install-lib.so))
623 install-lib-nosubdir: $(install-lib.so-versioned:%=$(inst_libdir)/%) \
624                       $(install-lib.so-unversioned:%=$(inst_slibdir)/%)
626 # Install all the unversioned shared libraries.
627 $(install-lib.so-unversioned:%=$(inst_slibdir)/%): $(inst_slibdir)/%.so: \
628     $(objpfx)%.so $(+force)
629         $(do-install-program)
631 ifneq ($(findstring -s,$(LN_S)),)
632 define make-link
633 rm -f $@.new
634 $(SHELL) $(..)scripts/rellns-sh $< $@.new
635 mv -f $@.new $@
636 endef
637 else
638 # If we have no symbolic links don't bother with rellns-sh.
639 define make-link
640 rm -f $@.new
641 $(LN_S) $< $@.new
642 mv -f $@.new $@
643 endef
644 endif
646 ifeq (no,$(cross-compiling))
647 ifeq (yes,$(build-shared))
648 symbolic-link-prog := $(common-objpfx)elf/sln
649 symbolic-link-list := $(common-objpfx)elf/symlink.list
650 define make-shlib-link
651 echo $(<F) $@ >> $(symbolic-link-list)
652 endef
653 endif
654 endif
655 ifndef make-shlib-link
656 define make-shlib-link
657 rm -f $@
658 $(LN_S) $(<F) $@
659 endef
660 endif
662 ifdef libc.so-version
663 # For a library specified to be version N, install three files:
664 # libc.so       ->      libc.so.N       (e.g. libc.so.6)
665 # libc.so.6     ->      libc-VERSION.so (e.g. libc-1.10.so)
667 $(inst_slibdir)/libc.so$(libc.so-version): $(inst_slibdir)/libc-$(version).so \
668                                            $(+force)
669         $(make-shlib-link)
670 $(inst_slibdir)/libc-$(version).so: $(common-objpfx)libc.so $(+force)
671         $(do-install-program)
672 install: $(inst_slibdir)/libc.so$(libc.so-version)
674 ifndef subdir
675 # What we install as libc.so for programs to link against is in fact a
676 # link script.  It contains references for the various libraries we need.
677 # The libc.so object is not complete since some functions are only defined
678 # in libc_nonshared.a.
679 # We need to use absolute paths since otherwise local copies (if they exist)
680 # of the files are taken by the linker.
681 install: $(inst_libdir)/libc.so
682 $(inst_libdir)/libc.so: $(common-objpfx)libc.so$(libc.so-version) \
683                         $(inst_libdir)/$(patsubst %,$(libtype.oS),\
684                                                   $(libprefix)$(libc-name)) \
685                         $(+force)
686         (echo '/* GNU ld script';\
687          echo '   Use the shared library, but some functions are only in';\
688          echo '   the static library, so try that secondarily.  */';\
689          echo 'GROUP ( $(slibdir)/libc.so$(libc.so-version)' \
690               '$(libdir)/$(patsubst %,$(libtype.oS),$(libprefix)$(libc-name))'\
691               ')' \
692         ) > $@.new
693         mv -f $@.new $@
695 endif
697 else
698 install: $(inst_slibdir)/libc.so
699 $(inst_slibdir)/libc.so: $(common-objpfx)libc.so $(+force)
700         $(do-install-program)
701 endif
703 ifneq (,$(versioned))
704 # Produce three sets of rules as above for all the smaller versioned libraries.
706 define o-iterator-doit
707 $(inst_libdir)/$o: $(inst_slibdir)/$o$($o-version) $(+force); $$(make-link)
708 endef
709 object-suffixes-left := $(versioned)
710 include $(o-iterator)
712 # Make symlinks in the build directory, because the versioned names might
713 # be referenced by a DT_NEEDED in another library.
714 define o-iterator-doit
715 $(objpfx)$o$($o-version): $(objpfx)$o; $$(make-link)
716 endef
717 object-suffixes-left := $(versioned)
718 include $(o-iterator)
720 generated += $(foreach o,$(versioned),$o$($o-version))
722 ifeq (,$($(subdir)-version))
723 define o-iterator-doit
724 $(inst_slibdir)/$o$($o-version): $(inst_slibdir)/$(o:.so=)-$(version).so \
725                                  $(+force);
726         $$(make-shlib-link)
727 endef
728 object-suffixes-left := $(versioned)
729 include $(o-iterator)
731 define o-iterator-doit
732 $(inst_slibdir)/$(o:.so=)-$(version).so: $(objpfx)$o $(+force);
733         $$(do-install-program)
734 endef
735 object-suffixes-left := $(versioned)
736 include $(o-iterator)
737 else
738 define o-iterator-doit
739 $(inst_slibdir)/$o$($o-version): \
740   $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so $(+force);
741         $$(make-shlib-link)
742 endef
743 object-suffixes-left := $(versioned)
744 include $(o-iterator)
746 define o-iterator-doit
747 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so: $(objpfx)$o $(+force);
748         $$(do-install-program)
749 endef
750 object-suffixes-left := $(versioned)
751 include $(o-iterator)
752 endif
753 endif
755 define do-install-so
756 $(do-install-program)
757 $(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
758            $(filter-out %.so,$@))
759 endef
761 so-versions := $(sort $(foreach so,$(install-lib.so),.so$($(so)-version)))
762 $(foreach v,$(so-versions),\
763           $(inst_slibdir)/lib$(libprefix)%$v): $(common-objpfx)lib%.so \
764                                                $(+force)
765         $(do-install-so)
766 $(foreach v,$(so-versions),\
767           $(inst_slibdir)/$(libprefix)%$v): $(common-objpfx)%.so $(+force)
768         $(do-install-so)
769 endif
771 ifdef install-bin
772 $(addprefix $(inst_bindir)/,$(install-bin)): \
773     $(inst_bindir)/%: $(objpfx)% $(+force)
774         $(do-install-program)
775 endif
776 ifdef install-rootsbin
777 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin)): \
778    $(inst_rootsbindir)/%: $(objpfx)% $(+force)
779         $(do-install-program)
780 endif
781 ifdef install-sbin
782 $(addprefix $(inst_sbindir)/,$(install-sbin)): \
783     $(inst_sbindir)/%: $(objpfx)% $(+force)
784         $(do-install-program)
785 endif
786 ifdef install-lib
787 install-lib.a := $(filter lib%.a,$(install-lib))
788 install-lib-non.a := $(filter-out lib%.a,$(install-lib))
789 ifdef install-lib-non.a
790 $(addprefix $(inst_libdir)/$(libprefix),$(install-lib-non.a)): \
791   $(inst_libdir)/$(libprefix)%: $(objpfx)% $(+force)
792         $(do-install)
793 endif
794 ifdef install-lib.a
795 $(install-lib.a:lib%.a=$(inst_libdir)/lib$(libprefix)%.a): \
796   $(inst_libdir)/lib$(libprefix)%.a: $(objpfx)lib%.a $(+force)
797         $(do-install)
798         $(patsubst %,$(RANLIB) $@,$(filter-out $(non-lib.a),$(<F)))
799 endif
800 endif
801 ifdef install-data
802 $(addprefix $(inst_datadir)/,$(install-data)): $(inst_datadir)/%: % $(+force)
803         $(do-install)
804 endif
805 headers := $(strip $(headers))
806 ifdef headers
807 $(addprefix $(inst_includedir)/,$(headers)): $(inst_includedir)/%: % $(+force)
808         $(do-install)
809 endif   # headers
811 .PHONY: install-bin-nosubdir install-rootsbin-nosubdir install-sbin-nosubdir \
812         install-lib-nosubdir install-data-nosubdir install-headers-nosubdir
813 install-bin-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin))
814 install-rootsbin-nosubdir: \
815         $(addprefix $(inst_rootsbindir)/,$(install-rootsbin))
816 install-sbin-nosubdir: $(addprefix $(inst_sbindir)/,$(install-sbin))
817 install-lib-nosubdir: $(addprefix $(inst_libdir)/,\
818                        $(patsubst lib%.a,lib$(libprefix)%.a,$(install-lib.a)) \
819                        $(addprefix $(libprefix),$(install-lib-non.a)))
820 install-data-nosubdir: $(addprefix $(inst_datadir)/,$(install-data))
821 install-headers-nosubdir: $(addprefix $(inst_includedir)/,$(headers))
822 install-others-nosubdir: $(install-others)
824 # We need all the `-nosubdir' targets so that `install' in the parent
825 # doesn't depend on several things which each iterate over the subdirs.
826 # This rule makes `install-FOO' always use `install-FOO-nosubdir' as a
827 # subroutine.  Then in the parent `install-FOO' also causes subdir makes.
828 install-%:: install-%-nosubdir ;
830 .PHONY: install install-no-libc.a-nosubdir
831 ifeq ($(build-programs),yes)
832 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
833                             install-bin-nosubdir install-lib-nosubdir   \
834                             install-others-nosubdir install-rootsbin-nosubdir \
835                             install-sbin-nosubdir
836 else
837 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
838                             install-lib-nosubdir install-others-nosubdir
839 endif
840 install: install-no-libc.a-nosubdir
842 # Command to compile $< in $(objdir) using the native libraries.
843 define native-compile
844 $(make-target-directory)
845 $(patsubst %/,cd % &&,$(objpfx)) \
846 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
847             $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(@F)
848 endef
850 # Command to compile $< in $(common-objdir) using the native libraries.
851 # We must cd to $(objdir) anyway so that $(..)config.h is valid.
852 define common-objdir-compile
853 $(patsubst %/,cd % &&,$(objpfx)) \
854 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
855             $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(..)$(@F)
856 endef
858 # We always want to use configuration definitions.
859 # Note that this is only used for commands running in $(objpfx).
860 ALL_BUILD_CFLAGS = $(BUILD_CFLAGS) -include $(..)config.h
862 # Support the GNU standard name for this target.
863 .PHONY: check
864 check: tests
866 .PHONY: TAGS
867 TAGS: $(objpfx)distinfo $(..)MakeTAGS
868         $(MAKE) $(addprefix -f ,$^) $@
870 $(..)po/%.pot: $(objpfx)distinfo $(..)MakeTAGS FORCE
871         $(MAKE) $(addprefix -f ,$(filter-out FORCE,$^)) $@
872 FORCE:
875 .PHONY: echo-headers
876 echo-headers:
877         @echo $(headers)
880 # Common cleaning targets.
882 .PHONY: common-mostlyclean common-clean mostlyclean clean
883 clean: common-clean
884 mostlyclean: common-mostlyclean
886 # Remove the object files.
887 common-mostlyclean:
888         -rm -f $(addprefix $(objpfx),$(tests) $(test-srcs) $(others) \
889                                      $(sysdep-others) $(tests-static) stubs \
890                                      $(addsuffix .o,$(tests) $(test-srcs) \
891                                                     $(tests-static) \
892                                                     $(others) \
893                                                     $(sysdep-others)) \
894                                      $(addsuffix .out,$(tests) $(test-srcs)) \
895                                      $(addsuffix .sout,$(tests-static)))
896         -rm -f $(addprefix $(objpfx),$(extra-objs) $(install-lib) \
897                                      $(install-lib.so) \
898                                      $(install-lib.so:%.so=%_pic.a))
899         -rm -f core
900         $(rmobjs)
901 define rmobjs
902 $(foreach o,$(object-suffixes-for-libc),
903 -rm -f $(objpfx)stamp$o $(o-objects))
904 endef
906 # Also remove the dependencies and generated source files.
907 common-clean: common-mostlyclean
908         -rm -f $(addprefix $(objpfx),$(generated)) $(+depfiles)
909         -rm -fr $(addprefix $(objpfx),$(generated-dirs))
910         -rm -f $(addprefix $(common-objpfx),$(common-generated))
911         -rm -f $(objpfx)distinfo
913 # Produce a file `stubs' which contains `#define __stub_FUNCTION'
914 # for each function which is a stub.  We grovel over all the .d files
915 # looking for references to <stub-tag.h>.  Then we grovel over each
916 # referenced source file to see what stub function it defines.
918 ifdef objpfx
919 .PHONY: stubs # The parent Makefile calls this target.
920 stubs: $(objpfx)stubs
921 endif
922 s = $(sysdep_dir)/generic
923 $(objpfx)stubs: $(+depfiles)
924 # Use /dev/null since `...` might expand to empty.
925         (s=`cd $s && /bin/pwd`; \
926          $(patsubst %/,cd % &&,$(objpfx)) \
927          sed -n 's/^stub_warning *(\([^)]*\).*$$/#define __stub_\1/p' \
928           `sed -n -e '\@ $s/[^ ]*\.c@{; s@^.* $s/\([^ ]*\.c\).*$$@'"$$s"'/\1@; h; }' \
929                 -e '/stub-tag\.h/{; g; p; }' \
930                   $(patsubst $(objpfx)%,%,$^) /dev/null` \
931              /dev/null) > $@T
932         mv -f $@T $@
934 # Make the distribution tar file.
936 .PHONY: dist
937 dist: $(objpfx)distinfo $(..)Make-dist
938         $(MAKE) -f $< -f $(word 2,$^) $(Make-dist-args)
940 # Avoid depending on source files found in sysdeps dirs,
941 # because the references affect implicit rule selection.
942 dist: $(filter-out %.c %.S %.s,$(distribute))
944 # We used to simply export all these variables, but that frequently made the
945 # environment get too large.  Instead, we write all the information into
946 # a generated makefile fragment `distinfo', and then include it with -f in
947 # the sub-make that makes the distribution (above).
948 $(objpfx)distinfo: Makefile $(..)Makerules \
949                    $(wildcard $(foreach dir,$(sysdirs),$(dir)/Makefile))
950         $(make-target-directory)
951         $(distinfo-vars)
952         mv -f $@.new $@
953 .PHONY: subdir_distinfo
954 subdir_distinfo: $(objpfx)distinfo
956 define distinfo-vars
957 rm -f $@.new
958 echo > $@.new 'subdir := $(subdir)'
959 $(foreach var,subdir-dirs sources elided-routines sysdep_routines \
960               headers sysdep_headers distribute dont_distribute generated \
961               others tests test-srcs extra-libs $(extra-libs:%=%-routines) \
962               tests-static versioned \
963               $(addprefix install-,lib lib.so data bin sbin others),
964 echo >> $@.new '$(subdir)-$(var) := $($(var))'
965 echo >> $@.new '$(var) = $$($(subdir)-$(var))')
966 endef
968 ifneq (,$(strip $(gpl2lgpl)))
969 ifneq (,$(wildcard $(..)gpl2lgpl.sed))
970 # Snarf from the master source and frob the copying notice.
971 $(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
972         sed -f $^ > $@-tmp
973 # So I don't edit them by mistake.
974         chmod a-w $@-tmp
975         mv -f $@-tmp $@
976 ifeq ($(with-cvs),yes)
977         test ! -d CVS || cvs $(CVSOPTS) commit -m'Updated from $^' $@
978 endif
979 endif
980 endif