update from main archive 960907
[glibc.git] / Makerules
blob740cc0f247721048761a7afbbc3803d78e74719c
1 # Copyright (C) 1991, 92, 93, 94, 95, 96 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
16 # not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 # Cambridge, MA 02139, 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
30 ifneq ($(REQUIRED_MAKE_VERSION), \
31        $(firstword $(sort $(MAKE_VERSION) $(REQUIRED_MAKE_VERSION))))
32 Wrong GNU Make version.  See above for the version needed.
33 endif
36 ifdef   subdir
37 ..      := ../
38 endif   # subdir
40 # If `sources' was defined by the parent makefile, undefine it so
41 # we will later get it from wildcard search in this directory.
42 ifneq   "$(findstring env,$(origin sources))" ""
43 sources :=
44 endif
46 oPATH := $(PATH)
47 PATH := this definition should take precedence over $(oPATH)
48 ifeq ($(PATH),$(oPATH))
49 You must not use the -e flag when building the GNU C library.
50 else
51 PATH := $(oPATH)
52 endif
54 ifndef +included-Makeconfig
55 include $(..)Makeconfig
56 endif
58 # `configure' writes a definition of `config-sysdirs' in `config.make'.
59 sysdirs = $(strip $(full-config-sysdirs))
61 +sysdir_pfx = $(common-objpfx)
63 export sysdirs := $(sysdirs)
65 +sysdep_dirs := $(full-config-sysdirs)
66 ifdef objdir
67 +sysdep_dirs := $(objdir) $(+sysdep_dirs)
68 endif
70 # Add -I switches to get the right sysdep directories.
71 # `+includes' in Makeconfig references $(+sysdep-includes).
72 +sysdep-includes := $(addprefix -I,$(+sysdep_dirs))
74 # The name of the symbol table archive member.  The default is suitable for
75 # BSD style archives.  It can be overridden in sysdep Makefiles when SYSV
76 # style archive are used.
77 ifeq (no,$(elf))
78 ar-symtab-name = __.SYMDEF
79 else
80 ar-symtab-name = # The null name is used in ELF archives.
81 endif
83 # Include any system-specific makefiles.
85 # This is here so things in sysdep Makefiles can easily depend on foo.h as
86 # appropriate and not worry about where foo.h comes from, which may be
87 # system dependent and not known by that Makefile.
88 vpath %.h $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
89                                       $(+sysdep_dirs) $(..)))
91 # Some sysdep makefiles use this to distinguish being included here from
92 # being included individually by a subdir makefile (hurd/Makefile needs this).
93 in-Makerules := yes
95 ifndef avoid-generated
96 -include $(+sysdir_pfx)sysd-Makefile
97 ifneq ($(sysd-Makefile-sysdirs),$(config-sysdirs))
98 sysd-Makefile-force = FORCE
99 FORCE:
100 endif
101 $(+sysdir_pfx)sysd-Makefile: $(+sysdir_pfx)config.make $(..)Makerules \
102                              $(sysd-Makefile-force)
103         -@rm -f $@T
104         (echo 'sysd-Makefile-sysdirs := $(config-sysdirs)';                   \
105          for dir in $(config-sysdirs); do                                     \
106            file=$$dir/Makefile;                                               \
107            if [ -f $$file ]; then                                             \
108              case $$dir in                                                    \
109                /*) echo include "$$file" ;;                                   \
110                *)  echo include "\$$(..)$$file" ;;                            \
111              esac;                                                            \
112            else true; fi;                                                     \
113          done; \
114          echo 'sysd-Makefile-done=t') > $@T
115         mv -f $@T $@
116 endif
118 ifndef sysd-Makefile-done
119 # Don't do deps until this exists, because it might change the sources list.
120 no_deps=t
121 endif
124 # Reorder before-compile so that mach things come first, and hurd things
125 # second, before all else.  The mach and hurd subdirectories have many
126 # generated header files which the much of rest of the library depends on,
127 # so it is best to build them first (and mach before hurd, at that).
128 before-compile := $(filter $(common-objpfx)mach% $(common-objpfx)hurd%,\
129                            $(before-compile)) \
130                   $(filter-out $(common-objpfx)mach% $(common-objpfx)hurd%,\
131                                $(before-compile))
133 # Remove existing files from `before-compile'.  Things are added there when
134 # they must exist for dependency generation to work right, but once they
135 # exist there is no further need for every single file to depend on them,
136 # and those gratuitous dependencies result in many gratuitous
137 # recompilations.
138 before-compile := $(filter-out $(wildcard $(before-compile)),$(before-compile))
140 # Don't let any before-compile file be an intermediate and get removed.
141 ifdef before-compile
142 $(before-compile):
143 endif
145 # Generate an ordered list of implicit rules which find the source files in
146 # each sysdep directory.  The old method was to use vpath to search all the
147 # sysdep directories.  However, that had the problem that a .S file in a
148 # later directory would be chosen over a .c file in an earlier directory,
149 # which does not preserve the desired sysdeps ordering behavior.
151 # When making the list of .d files to include, we can't know which ones
152 # have source in .s files, and thus do not in fact need a .d file.
153 # So we must define rules to make .d files for .s files.
154 define make-dummy-dep
155 $(addprefix ln $(common-objpfx)dummy.d ,$(filter-out $(wildcard $@),$@))
156 endef
157 $(common-objpfx)dummy.d:
158         echo '# .s files cannot contain includes, so they need no deps.' > $@
160 # It matters that this set of rules, for compiling from sources in
161 # the current directory (the $srcdir/$subdir) come before the
162 # generated sysdep rules in included from sysd-rules below.  When
163 # compiling in the source tree, generated sources go into the current
164 # directory, and those should be chosen before any sources in sysdeps.
165 $(objpfx)%.o: %.S $(before-compile); $(compile-command.S)
166 $(objpfx)%.so: %.S $(before-compile); $(compile-command.S)
167 $(objpfx)%.po: %.S $(before-compile); $(compile-command.S)
168 $(objpfx)%.go: %.S $(before-compile); $(compile-command.S)
169 $(objpfx)%.d: %.S $(before-compile); $(+make-deps)
170 $(objpfx)%.o: %.s $(before-compile); $(compile-command.s)
171 $(objpfx)%.so: %.s $(before-compile); $(compile-command.s)
172 $(objpfx)%.po: %.s $(before-compile); $(compile-command.s)
173 $(objpfx)%.go: %.s $(before-compile); $(compile-command.s)
174 $(objpfx)%.d: %.s $(common-objpfx)dummy.d; $(make-dummy-dep)
175 $(objpfx)%.o: %.c $(before-compile); $(compile-command.c)
176 $(objpfx)%.so: %.c $(before-compile); $(compile-command.c)
177 $(objpfx)%.po: %.c $(before-compile); $(compile-command.c)
178 $(objpfx)%.go: %.c $(before-compile); $(compile-command.c)
179 $(objpfx)%.d: %.c $(before-compile); $(+make-deps)
181 # Omit the objpfx rules when building in the source tree, because
182 # objpfx is empty and so these rules just override the ones above.
183 ifdef objpfx
184 # Define first rules to find the source files in $(objpfx).
185 # Generated source files will end up there.
186 $(objpfx)%.o: $(objpfx)%.S $(before-compile); $(compile-command.S)
187 $(objpfx)%.so: $(objpfx)%.S $(before-compile); $(compile-command.S)
188 $(objpfx)%.po: $(objpfx)%.S $(before-compile); $(compile-command.S)
189 $(objpfx)%.go: $(objpfx)%.S $(before-compile); $(compile-command.S)
190 $(objpfx)%.d: $(objpfx)%.S $(before-compile); $(+make-deps)
191 $(objpfx)%.o: $(objpfx)%.s $(before-compile); $(compile-command.s)
192 $(objpfx)%.so: $(objpfx)%.s $(before-compile); $(compile-command.s)
193 $(objpfx)%.po: $(objpfx)%.s $(before-compile); $(compile-command.s)
194 $(objpfx)%.go: $(objpfx)%.s $(before-compile); $(compile-command.s)
195 $(objpfx)%.d: $(objpfx)%.s $(common-objpfx)dummy.d; $(make-dummy-dep)
196 $(objpfx)%.o: $(objpfx)%.c $(before-compile); $(compile-command.c)
197 $(objpfx)%.so: $(objpfx)%.c $(before-compile); $(compile-command.c)
198 $(objpfx)%.po: $(objpfx)%.c $(before-compile); $(compile-command.c)
199 $(objpfx)%.go: $(objpfx)%.c $(before-compile); $(compile-command.c)
200 $(objpfx)%.d: $(objpfx)%.c $(before-compile); $(+make-deps)
201 endif
203 # System-dependent makefiles can put in `inhibit-sysdep-asm' wildcard
204 # patterns matching sysdep directories whose assembly source files should
205 # be suppressed.
206 ifdef inhibit-sysdep-asm
207 define open-check-inhibit-asm
208 case $$sysdir in $(subst $(empty) ,|,$(inhibit-sysdep-asm))) : ;; *)
209 endef
210 close-check-inhibit-asm = ;; esac ;
211 endif
213 # Don't include sysd-rules until sysd-Makefile is already there and has been
214 # included.  It might define inhibit-sysdep-asm, which would affect the
215 # contents of sysd-rules.
216 ifdef sysd-Makefile-done
217 -include $(+sysdir_pfx)sysd-rules
218 ifneq ($(sysd-rules-sysdirs),$(config-sysdirs))
219 # The value of $(+sysdep_dirs) the sysd-rules was computed for
220 # differs from the one we are using now.  So force a rebuild of sysd-rules.
221 sysd-rules-force = FORCE
222 FORCE:
223 endif
224 endif
225 $(+sysdir_pfx)sysd-rules: $(+sysdir_pfx)config.make $(..)Makerules \
226                           $(wildcard $(foreach dir,$(sysdirs),\
227                                                $(dir)/Makefile))\
228                           $(sysd-rules-force)
229         -@rm -f $@T
230         (echo 'sysd-rules-sysdirs := $(config-sysdirs)';                      \
231          for sysdir in $(config-sysdirs); do                                  \
232            case $$sysdir in \
233              /*) dir=$$sysdir ;; \
234              *)  dir="\$$(..)$$sysdir" ;; \
235            esac; \
236            for o in $(object-suffixes); do \
237              $(open-check-inhibit-asm) \
238              echo "\$$(objpfx)%$$o: $$dir/%.S \$$(before-compile); \
239                   \$$(compile-command.S)";                                    \
240              echo "\$$(objpfx)%$$o: $$dir/%.s \$$(before-compile); \
241                   \$$(compile-command.s)";                                    \
242              $(close-check-inhibit-asm) \
243              echo "\$$(objpfx)%$$o: $$dir/%.c \$$(before-compile); \
244                   \$$(compile-command.c)";                                    \
245            done; \
246            $(open-check-inhibit-asm) \
247            echo "\$$(objpfx)%.d: $$dir/%.s \$$(common-objpfx)dummy.d; \
248                 \$$(make-dummy-dep)";                          \
249            echo "\$$(objpfx)%.d: $$dir/%.S \$$(before-compile); \
250                 \$$(+make-deps)";                                             \
251            $(close-check-inhibit-asm)   \
252            echo "\$$(objpfx)%.d: $$dir/%.c \$$(before-compile); \
253                 \$$(+make-deps)";                                             \
254          done;                                                                \
255          echo 'sysd-rules-done = t') > $@T
256         mv -f $@T $@
258 ifndef sysd-rules-done
259 # Don't do deps until this exists, because it provides rules to make the deps.
260 no_deps=t
261 endif
264 ifndef compile-command.S
265 compile-command.S = $(compile.S) $(OUTPUT_OPTION)
266 endif
267 ifndef compile-command.s
268 compile-command.s = $(COMPILE.s) $< $(OUTPUT_OPTION)
269 endif
270 ifndef compile-command.c
271 compile-command.c = $(compile.c) $(OUTPUT_OPTION)
272 endif
274 # GCC can grok options after the file name, and it looks nicer that way.
275 compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS)
276 compile.S = $(CC) $< -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS)
277 COMPILE.S = $(CC) -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS)
278 COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS)
280 # We need this for the output to go in the right place.  It will default to
281 # empty if make was configured to work with a cc that can't grok -c and -o
282 # together.  You can't compile the C library with such a compiler.
283 OUTPUT_OPTION = -o $@
285 S-CPPFLAGS = $(asm-CPPFLAGS)
286 define +make-deps
287 $(make-target-directory)
288 -@rm -f $@
289 $(+mkdep) $< $(CPPFLAGS) $($(<:$*.%=%)-CPPFLAGS) | \
290 sed -e 's,$(subst .,\.,$*)\.o,$(foreach o,$(object-suffixes),$(@:.d=$o)) $@,' \
291 $(sed-remove-objpfx) > $(@:.d=.T)
292 mv -f $(@:.d=.T) $@
293 endef
294 ifneq (,$(objpfx))
295 # Continuation lines here are dangerous because they introduce spaces!
296 define sed-remove-objpfx
297 -e 's@ $(subst .,\.,$(subst @,\@,$(common-objpfx)))@ $$(common-objpfx)@g' \
298 -e 's@^$(subst .,\.,$(subst @,\@,$(common-objpfx)))@$$(common-objpfx)@g'
299 endef
300 endif
302 # Shared library building.
304 ifeq (yes,$(build-shared))
306 # Pattern rule to build a shared object from an archive of PIC objects.
307 # This must come after the installation rules so Make doesn't try to
308 # build shared libraries in place from the installed *_pic.a files.
309 # $(LDLIBS-%.so) may contain -l switches to generate run-time dependencies
310 # on other shared objects.
311 lib%.so: lib%_pic.a; $(build-shlib)
313 ifeq ($(have-no-whole-archive),yes)
314 no-whole-archive = -Wl,--no-whole-archive
315 else
316 no-whole-archive =
317 endif
319 define build-shlib
320 $(LINK.o) -shared -o $@ $(sysdep-LDFLAGS) $(config-LDFLAGS)  \
321           -B$(csu-objpfx) \
322           -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \
323           $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
324           -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link) \
325           -Wl,--whole-archive $^ $(no-whole-archive) \
326           $(LDLIBS-$(@F:lib%.so=%).so)
327 endef
329 # Don't try to use -lc when making libc.so itself.
330 # Also omits crti.o and crtn.o, which we do not want
331 # since we define our own `.init' section specially.
332 LDFLAGS-c.so = -nostdlib -nostartfiles
333 # Give libc.so an entry point and make it directly runnable itself.
334 LDFLAGS-c.so += -e __libc_main
335 # Use our own special initializer and finalizer files for libc.so.
336 elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
337 $(common-objpfx)libc.so: $(elfobjdir)/soinit.so \
338                          $(common-objpfx)libc_pic.a \
339                          $(elfobjdir)/sofini.so $(elfobjdir)/ld.so
340         $(build-shlib)
342 ifdef libc.so-version
343 $(common-objpfx)libc.so$(libc.so-version): $(common-objpfx)libc.so
344         rm -f $@
345         ln -s $(<F) $@ || ln $< $@
346 endif
347 endif
349 # Some files must not be compiled with the exception handler mechanism
350 # enabled (introduced in gcc-2.8).  Use $(no-exceptions) in the
351 # appropriate CFLAGS definition.
352 ifeq ($(have-no-exceptions),yes)
353 no-exceptions = -fno-exceptions
354 else
355 no-exceptions =
356 endif
358 # Figure out the source filenames in this directory.
360 override sources        := $(addsuffix .c,$(filter-out $(elided-routines),\
361                                                        $(routines) $(aux) \
362                                                        $(sysdep_routines)))
363 sysdep_routines := $(sysdep_routines)
365 headers := $(headers) $(sysdep_headers)
367 # This is the list of all object files, gotten by
368 # replacing every ".c" in `sources' with a ".o".
369 override objects        := $(addprefix $(objpfx),$(sources:.c=.o))
372 # This variable is used in ``include $(o-iterator)'' after defining
373 # $(o-iterator-doit) to produce some desired rule using $o for the object
374 # suffix, and setting $(object-suffixes-left) to $(object-suffixes); a copy
375 # is produced for each object suffix in use.
376 o-iterator = $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-left))
378 # The makefile may define $(extra-libs) with `libfoo libbar'
379 # to build libfoo.a et al from the modules listed in $(libfoo-routines).
380 ifdef extra-libs
381 # extra-lib.mk is included once for each extra lib to define rules
382 # to build it, and to add its objects to the various variables.
383 # During its evaluation, $(lib) is set to the name of the library.
384 extra-libs-left := $(extra-libs)
385 include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
386 endif
388 +depfiles := $(strip $(sources:.c=.d) \
389                      $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.so=.o))) \
390                      $(addsuffix .d,$(others) $(tests)))
391 +depfiles := $(addprefix $(objpfx),\
392                          $(filter-out $(addsuffix .d,$(omit-deps)),\
393                                       $(+depfiles)))
395 ifdef +depfiles
396 ifneq ($(no_deps),t)
397 -include $(+depfiles)
398 endif
399 endif
400 \f\f
401 # Maximize efficiency by minimizing the number of rules.
402 .SUFFIXES:      # Clear the suffix list.
403 # Add the suffixes we use.
404 .SUFFIXES: .a $(object-suffixes) .S .s .c .h .d
406 # Generic rule for making directories.
408 # mkdir isn't smart enough to strip a trailing /.
409         mkdir $(@:%/=%)
411 # Make sure that object files are not removed
412 # when they are intermediates between sources and library members.
413 .PRECIOUS: $(addprefix $(objpfx)%,$(object-suffixes))
415 # Make sure that the parent library archive is never removed.
416 .PRECIOUS: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
418 # Use the verbose option of ar and tar when not running silently.
419 ifeq    "$(findstring s,$(MAKEFLAGS))" ""       # if not -s
420 verbose := v
421 else                                            # -s
422 verbose :=
423 endif                                           # not -s
425 ARFLAGS := r$(verbose)
427 # This makes all the object files in the parent library archive.
429 .PHONY: lib libobjs lib-noranlib
430 lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
432 # Pattern rule for libraries: depend on the __.SYMDEF member updated by ranlib.
433 lib%.a: lib%.a($(ar-symtab-name)) ;
435 # For object-suffix $o, the list of objects with that suffix.
436 # Makefiles can define `elide-routines.so = foo' to leave foo.so out.
437 o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\
438                                                        $(elide-routines$o)),\
439                                             $(objects)))
441 libobjs: $(foreach o,$(object-suffixes),\
442                    $(common-objpfx)$(patsubst %,$(libtype$o),c)(\
443                    $(notdir $(o-objects))))
444 lib-noranlib: libobjs
445 others: $(addprefix $(objpfx),$(install-lib))
447 ifndef objects
449 # Create the stamp$o files to keep the parent makefile happy.
450 subdir_lib: $(foreach o,$(object-suffixes),$(objpfx)stamp$o-$(subdir))
451 $(foreach o,$(object-suffixes),$(objpfx)stamp$o-$(subdir)):
452         $(make-target-directory)
453         rm -f $@; > $@
454 else
456 # Define a pattern rule that will match many targets libc.a(foo.%), for
457 # each foo.o in $(objects) (% will just happen always to match `o').  This is
458 # the only way to define a rule that updates many targets at once with one
459 # sequence of commands.
460 define o-iterator-doit
461 $(common-objpfx)$(patsubst %,$(libtype$o),c)(\
462 $(addsuffix .%,$(filter-out $(elide-routines$o),$(notdir $(objects:.o=))))): \
463   $(objpfx)stamp.%-$(subdir) ;
464 endef
465 object-suffixes-left := $(object-suffixes)
466 include $(o-iterator)
468 # The pattern rule tells Make to remake $(objpfx)stamp.%-$(subdir) as
469 # the way to update all the foo.% object files in $(objects).  Now we
470 # define explicit rules to update each $(objpfx)stamp.SUFFIX-$(subdir)
471 # timestamp file; these rules (one explicit rule is generated for each
472 # object suffix) will update the parent archive with ar.  Use a static
473 # pattern rule so $* is set to the object type during the commands.
474 define o-iterator-doit
475 $(objpfx)stamp$o-$(subdir): $(objpfx)stamp%-$(subdir): $(o-objects); $$(do-ar)
476 endef
477 object-suffixes-left := $(object-suffixes)
478 include $(o-iterator)
479 define do-ar
480 topdir=`cd $(..).; pwd`; \
481 $(patsubst %/,cd %;,$(objpfx)) \
482 $$topdir/autolock.sh ${O%-lib}.lck $(AR) cru$(verbose) ${O%-lib} \
483                                          $(patsubst $(objpfx)%,%,$^)
484 rm -f $@
485 touch $@
486 endef
487 O%-lib = $(..)$(patsubst %,$(libtype$*),c)
489 endif
491 # Rules to update the $(ar-symtab-name) member with ranlib,
492 # one for each object flavor.
493 define o-iterator-doit
494 $(common-objpfx)$(patsubst %,$(libtype$o),c)($(ar-symtab-name)): \
495           $(common-objpfx)$(patsubst %,$(libtype$o),c)(\
496             $(patsubst $(objpfx)%,%,$(o-objects))) $(subdirs-stamp-o); \
497         $$(..)./autolock.sh \
498           $$(common-objpfx)$$(patsubst %,$$(libtype$o),c).lck \
499           $$(RANLIB) $$(common-objpfx)$$(patsubst %,$$(libtype$o),c)
500 endef
501 ifndef subdir
502 subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%-$d)
503 subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
504 $(subdirs-stamps): subdir_lib;
505 endif
506 object-suffixes-left = $(object-suffixes)
507 include $(o-iterator)
510 # This makes all the object files.
511 .PHONY: objects objs
512 objects objs: $(foreach o,$(object-suffixes),$(o-objects)) \
513               $(addprefix $(objpfx),$(extra-objs))
515 # Canned sequence for building an extra library archive.
516 define build-extra-lib
517 $(patsubst %/,cd %;,$(objpfx)) \
518 $(AR) cru$(verbose) $(@:$(objpfx)%=%) \
519       $(patsubst $(objpfx)%,%,$^)
520 $(RANLIB) $@
521 endef
523 # Installation.
525 # $(install-lib) are installed from the object directory into $(libdir);
526 # files in $(install-lib) matching `lib%.a' are ranlib'd after installation
527 # unless they also appear in $(non-lib.a).  $(install-data) are installed
528 # as they are into $(datadir).  $(headers) are installed as they are in
529 # $(includedir).  $(install-bin) and $(install-sbin) are installed from the
530 # object directory into $(bindir) and $(sbindir), respectively.
531 # $(install-others) are absolute path names of files to install; rules to
532 # install them are defined elsewhere.
534 # The simple library name to install libc.a under.
535 # This could be defined by a sysdep Makefile.
536 ifndef libc-name
537 libc-name := c
538 endif
540 define do-install
541 $(make-target-directory)
542 $(INSTALL_DATA) $< $@
543 endef
545 # Make the target directory if it doesn't exist, using the `mkinstalldirs'
546 # script that does `mkdir -p' even if `mkdir' doesn't support that flag.
547 define make-target-directory
548 $(addprefix $(..)./mkinstalldirs ,\
549             $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%)))
550 endef
552 # Any directory (parent or subdir) that has any object files to build
553 # should install libc.a; this way "make install" in a subdir is guaranteed
554 # to install everything it changes.
555 ifdef objects
556 installed-libcs := $(foreach o,$(object-suffixes),\
557                              $(libdir)/$(patsubst %,$(libtype$o),\
558                                                   $(libprefix)$(libc-name)))
559 installed-libcs := $(filter-out %_pic.a,$(installed-libcs))
560 install: $(installed-libcs)
561 $(installed-libcs): $(libdir)/lib$(libprefix)%: lib
562         $(make-target-directory)
563         $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@
564 # Running ranlib after installing makes the __.SYMDEF time stamp up to
565 # date, which avoids messages from some linkers.
566         $(RANLIB) $@
567 endif
569 define do-install-program
570 $(make-target-directory)
571 $(INSTALL_PROGRAM) $< $@.new
572 mv -f $@.new $@
573 endef
575 install-lib.so := $(filter %.so,$(install-lib:%_pic.a=%.so))
576 install-lib := $(filter-out %.so %_pic.a,$(install-lib))
577 ifeq (yes,$(build-shared))
579 install-lib-nosubdir: $(install-lib.so:%=$(libdir)/%)
581 # Find which .so's have versions.
582 versioned := $(strip $(foreach so,$(install-lib.so),\
583                                $(patsubst %,$(so),$($(so)-version))))
585 # Install all the unversioned shared libraries.
586 $(addprefix $(libdir)/,$(filter-out $(versioned),$(install-lib.so))): \
587 $(libdir)/%.so: $(objpfx)%.so; $(do-install-program)
589 define make-link
590 cd $(@D); rm -f $(@F).new; $(LN_S) $(<F) $(@F).new; mv -f $(@F).new $(@F)
591 endef
593 ifdef libc.so-version
594 # For a library specified to be version N, install three files:
595 # libc.so       ->      libc.so.N       (e.g. libc.so.6)
596 # libc.so.6     ->      libc-VERSION.so (e.g. libc-1.10.so)
598 $(slibdir)/libc.so$(libc.so-version): $(slibdir)/libc-$(version).so
599         $(make-link)
600 $(slibdir)/libc-$(version).so: $(common-objpfx)libc.so; $(do-install-program)
601 install: $(slibdir)/libc.so$(libc.so-version)
603 ifndef subdir
604 # What we install as libc.so for programs to link against is in fact a
605 # link script.  It contains references for the various libraries we need.
606 # The libc.so object is not complete since some functions are only defined
607 # in libc.a and the dynamic linker is an etra object.
608 install: $(libdir)/libc.so
609 $(libdir)/libc.so: $(common-objpfx)libc.so$(libc.so-version) \
610                    $(elfobjdir)/$(rtld-installed-name) \
611                    $(common-objpfx)libc.a
612         (echo '/* Use the shared library, but some functions are only in';\
613          echo '   the static library, so try that secondarily.'; \
614          echo '   The dynamic linker defines some functions used by $(<F),';\
615          echo '   but ld uses definitions from libc.a before examining the';\
616          echo '   dependencies of $(<F) to find $(rtld-installed-name).  */';\
617          echo 'GROUP ( $(^F) )') > $@.new
618         mv -f $@.new $@
620 endif
622 else
623 install: $(slibdir)/libc.so
624 $(slibdir)/libc.so: $(common-objpfx)libc.so; $(do-install-program)
625 endif
628 ifneq (,$(versioned))
629 # Produce three sets of rules as above for all the smaller versioned libraries.
631 define o-iterator-doit
632 $(libdir)/$o: $(libdir)/$o$($o-version); $$(make-link)
633 endef
634 object-suffixes-left := $(versioned)
635 include $(o-iterator)
637 # Make symlinks in the build directory, because the versioned names might
638 # be referenced by a DT_NEEDED in another library.
639 define o-iterator-doit
640 $(objpfx)$o$($o-version): $(objpfx)$o; $$(make-link)
641 endef
642 object-suffixes-left := $(versioned)
643 include $(o-iterator)
646 ifeq (,$($(subdir)-version))
647 define o-iterator-doit
648 $(libdir)/$o$($o-version): $(libdir)/$(o:.so=)-$(version).so; $$(make-link)
649 endef
650 object-suffixes-left := $(versioned)
651 include $(o-iterator)
653 define o-iterator-doit
654 $(libdir)/$(o:.so=)-$(version).so: $(objpfx)$o; $$(do-install-program)
655 endef
656 object-suffixes-left := $(versioned)
657 include $(o-iterator)
658 else
659 define o-iterator-doit
660 $(libdir)/$o$($o-version): $(libdir)/$(o:.so=)-$($(subdir)-version).so;
661         $$(make-link)
662 endef
663 object-suffixes-left := $(versioned)
664 include $(o-iterator)
666 define o-iterator-doit
667 $(libdir)/$(o:.so=)-$($(subdir)-version).so: $(objpfx)$o;
668         $$(do-install-program)
669 endef
670 object-suffixes-left := $(versioned)
671 include $(o-iterator)
672 endif
673 endif
675 define do-install-so
676 $(do-install-program)
677 $(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
678            $(filter-out %.so,$@))
679 endef
681 so-versions := $(sort $(foreach so,$(install-lib.so),.so$($(so)-version)))
682 $(foreach v,$(so-versions),\
683           $(libdir)/lib$(libprefix)%$v): $(common-objpfx)lib%.so
684         $(do-install-so)
685 $(foreach v,$(so-versions),\
686           $(libdir)/$(libprefix)%$v): $(common-objpfx)%.so
687         $(do-install-so)
688 endif
690 ifdef install-bin
691 $(addprefix $(bindir)/,$(install-bin)): $(bindir)/%: $(objpfx)%
692         $(do-install-program)
693 endif
694 ifdef install-sbin
695 $(addprefix $(sbindir)/,$(install-sbin)): $(sbindir)/%: $(objpfx)%
696         $(do-install-program)
697 endif
698 ifdef install-lib
699 install-lib.a := $(filter lib%.a,$(install-lib))
700 install-lib-non.a := $(filter-out lib%.a,$(install-lib))
701 ifdef install-lib-non.a
702 $(addprefix $(libdir)/$(libprefix),$(install-lib-non.a)): \
703   $(libdir)/$(libprefix)%: $(objpfx)%
704         $(do-install)
705 endif
706 ifdef install-lib.a
707 $(install-lib.a:lib%.a=$(libdir)/lib$(libprefix)%.a): \
708   $(libdir)/lib$(libprefix)%.a: $(objpfx)lib%.a
709         $(do-install)
710         $(patsubst %,$(RANLIB) $@,$(filter-out $(non-lib.a),$(<F)))
711 endif
712 endif
713 ifdef install-data
714 $(addprefix $(datadir)/,$(install-data)): $(datadir)/%: %;$(do-install)
715 endif
716 headers := $(strip $(headers))
717 ifdef headers
718 $(addprefix $(includedir)/,$(headers)): \
719         $(includedir)/%: %;$(do-install)
720 endif   # headers
722 .PHONY: install-bin-nosubdir install-sbin-nosubdir install-lib-nosubdir \
723         install-data-nosubdir install-headers-nosubdir
724 install-bin-nosubdir: $(addprefix $(bindir)/,$(install-bin))
725 install-sbin-nosubdir: $(addprefix $(sbindir)/,$(install-sbin))
726 install-lib-nosubdir: $(addprefix $(libdir)/,\
727                        $(patsubst lib%.a,lib$(libprefix)%.a,$(install-lib.a)) \
728                        $(addprefix $(libprefix),$(install-lib-non.a)))
729 install-data-nosubdir: $(addprefix $(datadir)/,$(install-data))
730 install-headers-nosubdir: $(addprefix $(includedir)/,$(headers))
731 install-others-nosubdir: $(install-others)
733 # We need all the `-nosubdir' targets so that `install' in the parent
734 # doesn't depend on several things which each iterate over the subdirs.
735 # This rule makes `install-FOO' always use `install-FOO-nosubdir' as a
736 # subroutine.  Then in the parent `install-FOO' also causes subdir makes.
737 install-%:: install-%-nosubdir ;
739 .PHONY: install install-no-libc.a-nosubdir
740 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
741                             install-bin-nosubdir install-lib-nosubdir   \
742                             install-others-nosubdir install-sbin-nosubdir
743 install: install-no-libc.a-nosubdir
745 # Command to compile $< in $(objdir) using the native libraries.
746 define native-compile
747 cwd=`pwd`; cd $(@D); $(BUILD_CC) $(BUILD_CFLAGS) \
748            $(addprefix $$cwd/,$^) -o $(@F)
749 endef
751 # Command to compile $< in $(common-objdir) using the native libraries.
752 define common-objdir-compile
753 cd $(@D); $(BUILD_CC) $(BUILD_CFLAGS) $(<:$(common-objpfx)%=%) -o $(@F)
754 endef
756 # We always want to use configuration definitions.
757 BUILD_CFLAGS = -include $(common-objpfx)config.h
759 # Support the GNU standard name for this target.
760 .PHONY: check
761 check: tests
763 .PHONY: TAGS
764 TAGS: $(common-objpfx)distinfo-$(subdir) $(..)MakeTAGS
765         $(MAKE) $(addprefix -f ,$^) $@
767 $(..)po/%.pot: $(common-objpfx)distinfo-$(subdir) $(..)MakeTAGS FORCE
768         $(MAKE) $(addprefix -f ,$(filter-out FORCE,$^)) $@
769 FORCE:
772 .PHONY: echo-headers
773 echo-headers:
774         @echo $(headers)
777 # Common cleaning targets.
779 .PHONY: common-mostlyclean common-clean mostlyclean clean
780 clean: common-clean
781 mostlyclean: common-mostlyclean
783 # Remove the object files.
784 common-mostlyclean:
785         -rm -f $(addprefix $(objpfx),$(tests) $(others) \
786                                      $(addsuffix .o,$(tests) $(others)) \
787                                      $(addsuffix .out,$(tests)))
788         -rm -f $(addprefix $(objpfx),$(extra-objs) $(install-lib))
789         -rm -f core $(common-objpfx)stub-$(subdir)
790         $(rmobjs)
791 define rmobjs
792 $(foreach o,$(object-suffixes),
793 -rm -f $(addprefix $(objpfx),stamp$o-$(subdir)) $(o-objects))
794 endef
796 # Also remove the dependencies and generated source files.
797 common-clean: common-mostlyclean
798         -rm -f $(addprefix $(objpfx),$(generated)) $(+depfiles)
799         -rm -f $(addprefix $(common-objpfx),$(common-generated))
800         -rm -f $(common-objpfx)distinfo-$(subdir)
802 # Produce a file `stub-$(subdir)' which contains `#define __stub_FUNCTION'
803 # for each function which is a stub.  We grovel over all the .d files
804 # looking for references to source files in sysdeps/stub.  Then we grovel
805 # over each referenced source file to see what stub function it defines.
807 .PHONY: stubs # The parent Makefile calls this target.
808 stubs: $(common-objpfx)stub-$(subdir)
809 s = $(sysdep_dir)/stub
810 $(common-objpfx)stub-$(subdir): $(+depfiles)
811 # Use /dev/null since `...` might expand to empty.
812         (s=`cd $s; /bin/pwd`; \
813          $(patsubst %/,cd %;,$(objpfx)) \
814          sed -n 's/^stub_warning *(\([^)]*\).*$$/#define __stub_\1/p' \
815              `sed -n 's@^.*$s/\([a-z0-9_-]*\.c\).*$$@'"$$s"/'\1@p' \
816                   $(patsubst $(objpfx)%,%,$^) /dev/null` \
817              /dev/null) > $@T
818         mv -f $@T $@
820 # Make the distribution tar file.
822 .PHONY: dist
823 dist: $(common-objpfx)distinfo-$(subdir) $(..)Make-dist
824         $(MAKE) -f $< -f $(word 2,$^) $(Make-dist-args)
826 # Avoid depending on source files found in sysdeps dirs,
827 # because the references affect implicit rule selection.
828 dist: $(filter-out %.c %.S %.s,$(distribute))
830 # We used to simply export all these variables, but that frequently made the
831 # environment get too large.  Instead, we write all the information into
832 # a generated makefile fragment `distinfo', and then include it with -f in
833 # the sub-make that makes the distribution (above).
834 $(common-objpfx)distinfo-$(subdir): Makefile $(..)Makerules
835         $(distinfo-vars)
836         mv -f $@.new $@
837 .PHONY: subdir_distinfo distinfo
838 subdir_distinfo: distinfo
839 distinfo: $(common-objpfx)distinfo-$(subdir)
841 define distinfo-vars
842 rm -f $@.new
843 echo > $@.new 'subdir := $(subdir)'
844 $(foreach var,subdir-dirs sources elided-routines sysdep_routines \
845               headers sysdep_headers distribute dont_distribute generated \
846               others tests extra-libs $(extra-libs:%=%-routines) \
847               versioned \
848               $(addprefix install-,lib lib.so data bin sbin others),
849 echo >> $@.new '$(subdir)-$(var) := $($(var))'
850 echo >> $@.new '$(var) = $$($(subdir)-$(var))')
851 endef
853 ifneq (,$(strip $(gpl2lgpl)))
854 ifneq (,$(wildcard $(..)gpl2lgpl.sed))
855 # Snarf from the master source and frob the copying notice.
856 $(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
857         sed -f $^ > $@-tmp
858 # So I don't edit them by mistake.
859         chmod a-w $@-tmp
860         mv -f $@-tmp $@
861         test ! -d CVS || cvs commit -m'Updated from $^' $@
862 endif
863 endif