Update.
[glibc.git] / Makerules
blob10cbd972e4c5ec17cd17e8098d5b24b5f9e97bcf
1 # Copyright (C) 1991, 92, 93, 94, 95, 96, 97 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 # The name of the symbol table archive member.  The default is suitable for
76 # BSD style archives.  It can be overridden in sysdep Makefiles when SYSV
77 # style archive are used.
78 ifeq (no,$(elf))
79 ar-symtab-name = __.SYMDEF
80 else
81 ar-symtab-name = # The null name is used in ELF archives.
82 endif
84 # This variable is used in ``include $(o-iterator)'' after defining
85 # $(o-iterator-doit) to produce some desired rule using $o for the object
86 # suffix, and setting $(object-suffixes-left) to $(object-suffixes); a copy
87 # is produced for each object suffix in use.
88 o-iterator = $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-left))
90 # Include any system-specific makefiles.
92 # This is here so things in sysdep Makefiles can easily depend on foo.h as
93 # appropriate and not worry about where foo.h comes from, which may be
94 # system dependent and not known by that Makefile.
95 vpath %.h $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
96                                       $(+sysdep_dirs) $(..)))
98 # Some sysdep makefiles use this to distinguish being included here from
99 # being included individually by a subdir makefile (hurd/Makefile needs this).
100 in-Makerules := yes
102 ifndef avoid-generated
103 -include $(+sysdir_pfx)sysd-Makefile
104 ifneq ($(sysd-Makefile-sysdirs),$(config-sysdirs))
105 sysd-Makefile-force = FORCE
106 FORCE:
107 endif
108 $(+sysdir_pfx)sysd-Makefile: $(+sysdir_pfx)config.make $(..)Makerules \
109                              $(sysd-Makefile-force)
110         -@rm -f $@T
111         (echo 'sysd-Makefile-sysdirs := $(config-sysdirs)';                   \
112          for dir in $(config-sysdirs); do                                     \
113            file=$$dir/Makefile;                                               \
114            case $$dir in                                                      \
115              /*) rel= ;;                                                      \
116              *)  rel=$(..) ;;                                                 \
117            esac;                                                              \
118            if [ -f $$rel$$file ]; then                                        \
119              case $$dir in                                                    \
120                /*) echo include "$$file" ;;                                   \
121                *)  echo include "\$$(..)$$file" ;;                            \
122              esac;                                                            \
123            else true; fi;                                                     \
124          done;                                                                \
125          echo 'sysd-Makefile-done=t') > $@T
126         mv -f $@T $@
127 endif
129 ifndef sysd-Makefile-done
130 # Don't do deps until this exists, because it might change the sources list.
131 no_deps=t
132 endif
135 # Reorder before-compile so that mach things come first, and hurd things
136 # second, before all else.  The mach and hurd subdirectories have many
137 # generated header files which the much of rest of the library depends on,
138 # so it is best to build them first (and mach before hurd, at that).
139 before-compile := $(filter $(common-objpfx)mach% $(common-objpfx)hurd%,\
140                            $(before-compile)) \
141                   $(filter-out $(common-objpfx)mach% $(common-objpfx)hurd%,\
142                                $(before-compile))
144 # Remove existing files from `before-compile'.  Things are added there when
145 # they must exist for dependency generation to work right, but once they
146 # exist there is no further need for every single file to depend on them,
147 # and those gratuitous dependencies result in many gratuitous
148 # recompilations.
149 before-compile := $(filter-out $(wildcard $(before-compile)),$(before-compile))
151 # Don't let any before-compile file be an intermediate and get removed.
152 ifdef before-compile
153 $(before-compile):
154 endif
156 # Generate an ordered list of implicit rules which find the source files in
157 # each sysdep directory.  The old method was to use vpath to search all the
158 # sysdep directories.  However, that had the problem that a .S file in a
159 # later directory would be chosen over a .c file in an earlier directory,
160 # which does not preserve the desired sysdeps ordering behavior.
162 # When making the list of .d files to include, we can't know which ones
163 # have source in .s files, and thus do not in fact need a .d file.
164 # So we must define rules to make .d files for .s files.
165 define make-dummy-dep
166 $(addprefix ln $(common-objpfx)dummy.d ,$(filter-out $(wildcard $@),$@))
167 endef
168 $(common-objpfx)dummy.d:
169         echo '# .s files cannot contain includes, so they need no deps.' > $@
171 # It matters that this set of rules, for compiling from sources in
172 # the current directory (the $srcdir/$subdir) come before the
173 # generated sysdep rules in included from sysd-rules below.  When
174 # compiling in the source tree, generated sources go into the current
175 # directory, and those should be chosen before any sources in sysdeps.
176 define o-iterator-doit
177 $(objpfx)%$o: %.S $(before-compile); $$(compile-command.S)
178 endef
179 object-suffixes-left := $(object-suffixes)
180 include $(o-iterator)
181 $(objpfx)%.d: %.S $(before-compile); $(+make-deps)
183 define o-iterator-doit
184 $(objpfx)%$o: %.s $(before-compile); $$(compile-command.s)
185 endef
186 object-suffixes-left := $(object-suffixes)
187 include $(o-iterator)
188 $(objpfx)%.d: %.s $(common-objpfx)dummy.d; $(make-dummy-dep)
190 define o-iterator-doit
191 $(objpfx)%$o: %.c $(before-compile); $$(compile-command.c)
192 endef
193 object-suffixes-left := $(object-suffixes)
194 include $(o-iterator)
195 $(objpfx)%.d: %.c $(before-compile); $(+make-deps)
197 # Omit the objpfx rules when building in the source tree, because
198 # objpfx is empty and so these rules just override the ones above.
199 ifdef objpfx
200 # Define first rules to find the source files in $(objpfx).
201 # Generated source files will end up there.
202 define o-iterator-doit
203 $(objpfx)%$o: $(objpfx)%.S $(before-compile); $$(compile-command.S)
204 endef
205 object-suffixes-left := $(object-suffixes)
206 include $(o-iterator)
207 $(objpfx)%.d: $(objpfx)%.S $(before-compile); $(+make-deps)
209 define o-iterator-doit
210 $(objpfx)%$o: $(objpfx)%.s $(before-compile); $$(compile-command.s)
211 endef
212 object-suffixes-left := $(object-suffixes)
213 include $(o-iterator)
214 $(objpfx)%.d: $(objpfx)%.s $(common-objpfx)dummy.d; $(make-dummy-dep)
216 define o-iterator-doit
217 $(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c)
218 endef
219 object-suffixes-left := $(object-suffixes)
220 include $(o-iterator)
221 $(objpfx)%.d: $(objpfx)%.c $(before-compile); $(+make-deps)
222 endif
224 # System-dependent makefiles can put in `inhibit-sysdep-asm' wildcard
225 # patterns matching sysdep directories whose assembly source files should
226 # be suppressed.
227 ifdef inhibit-sysdep-asm
228 define open-check-inhibit-asm
229 case $$sysdir in $(subst $(empty) ,|,$(inhibit-sysdep-asm))) : ;; *)
230 endef
231 close-check-inhibit-asm = ;; esac ;
232 endif
234 # Don't include sysd-rules until sysd-Makefile is already there and has been
235 # included.  It might define inhibit-sysdep-asm, which would affect the
236 # contents of sysd-rules.
237 ifdef sysd-Makefile-done
238 -include $(+sysdir_pfx)sysd-rules
239 ifneq ($(sysd-rules-sysdirs),$(config-sysdirs))
240 # The value of $(+sysdep_dirs) the sysd-rules was computed for
241 # differs from the one we are using now.  So force a rebuild of sysd-rules.
242 sysd-rules-force = FORCE
243 FORCE:
244 endif
245 endif
246 $(+sysdir_pfx)sysd-rules: $(+sysdir_pfx)config.make $(..)Makerules \
247                           $(wildcard $(foreach dir,$(sysdirs),\
248                                                $(dir)/Makefile))\
249                           $(sysd-rules-force)
250         -@rm -f $@T
251         (echo 'sysd-rules-sysdirs := $(config-sysdirs)';                      \
252          for sysdir in $(config-sysdirs); do                                  \
253            case $$sysdir in \
254              /*) dir=$$sysdir ;; \
255              *)  dir="\$$(..)$$sysdir" ;; \
256            esac; \
257            for o in $(all-object-suffixes); do \
258              $(open-check-inhibit-asm) \
259              echo "\$$(objpfx)%$$o: $$dir/%.S \$$(before-compile); \
260                   \$$(compile-command.S)";                                    \
261              echo "\$$(objpfx)%$$o: $$dir/%.s \$$(before-compile); \
262                   \$$(compile-command.s)";                                    \
263              $(close-check-inhibit-asm) \
264              echo "\$$(objpfx)%$$o: $$dir/%.c \$$(before-compile); \
265                   \$$(compile-command.c)";                                    \
266            done; \
267            $(open-check-inhibit-asm) \
268            echo "\$$(objpfx)%.d: $$dir/%.s \$$(common-objpfx)dummy.d; \
269                 \$$(make-dummy-dep)";                          \
270            echo "\$$(objpfx)%.d: $$dir/%.S \$$(before-compile); \
271                 \$$(+make-deps)";                                             \
272            $(close-check-inhibit-asm)   \
273            echo "\$$(objpfx)%.d: $$dir/%.c \$$(before-compile); \
274                 \$$(+make-deps)";                                             \
275          done;                                                                \
276          echo 'sysd-rules-done = t') > $@T
277         mv -f $@T $@
279 ifndef sysd-rules-done
280 # Don't do deps until this exists, because it provides rules to make the deps.
281 no_deps=t
282 endif
285 ifndef compile-command.S
286 compile-command.S = $(compile.S) $(OUTPUT_OPTION)
287 endif
288 ifndef compile-command.s
289 compile-command.s = $(COMPILE.s) $< $(OUTPUT_OPTION)
290 endif
291 ifndef compile-command.c
292 compile-command.c = $(compile.c) $(OUTPUT_OPTION)
293 endif
295 # GCC can grok options after the file name, and it looks nicer that way.
296 compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS)
297 compile.S = \
298   $(CC) $< -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@))
299 COMPILE.S = \
300   $(CC) -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@))
301 COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS)
303 # We need this for the output to go in the right place.  It will default to
304 # empty if make was configured to work with a cc that can't grok -c and -o
305 # together.  You can't compile the C library with such a compiler.
306 OUTPUT_OPTION = -o $@
308 S-CPPFLAGS = $(asm-CPPFLAGS)
309 define +make-deps
310 $(make-target-directory)
311 -@rm -f $@
312 $(+mkdep) $< $(CPPFLAGS) $($(<:$*.%=%)-CPPFLAGS) | \
313 sed \
314 -e 's,$(subst .,\.,$*)\.o,$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
315 $(sed-remove-objpfx) > $(@:.d=.T)
316 mv -f $(@:.d=.T) $@
317 endef
318 ifneq (,$(objpfx))
319 # Continuation lines here are dangerous because they introduce spaces!
320 define sed-remove-objpfx
321 -e 's@ $(subst .,\.,$(subst @,\@,$(common-objpfx)))@ $$(common-objpfx)@g' \
322 -e 's@^$(subst .,\.,$(subst @,\@,$(common-objpfx)))@$$(common-objpfx)@g'
323 endef
324 endif
326 # Shared library building.
328 ifeq (yes,$(build-shared))
330 # Pattern rule to build a shared object from an archive of PIC objects.
331 # This must come after the installation rules so Make doesn't try to
332 # build shared libraries in place from the installed *_pic.a files.
333 # $(LDLIBS-%.so) may contain -l switches to generate run-time dependencies
334 # on other shared objects.
335 lib%.so: lib%_pic.a; $(build-shlib)
337 ifeq ($(have-no-whole-archive),yes)
338 no-whole-archive = -Wl,--no-whole-archive
339 else
340 no-whole-archive =
341 endif
343 ifeq ($(versioning),yes)
344 load-map-file = $($(@F:%.so=%)-map:%=-Wl,--version-script=%)
345 else
346 load-map-file =
347 endif
349 interp-obj = $(common-objpfx)interp.so
350 $(interp-obj): $(common-objpfx)%.so: $(..)%.c
351         $(compile-command.c)
352 common-generated += interp.so
353 CFLAGS-interp.c = -D'RUNTIME_LINKER="$(slibdir)/$(rtld-installed-name)"'
355 $(common-objpfx)libc.so: $(interp-obj)
356 $(patsubst %,$(objpfx)%.so,$(extra-libs)): $(interp-obj)
358 define build-shlib
359 $(LINK.o) -shared -o $@ $(sysdep-LDFLAGS) $(config-LDFLAGS)  \
360           -B$(csu-objpfx) $(load-map-file) \
361           -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \
362           $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
363           -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link) \
364           -Wl,--whole-archive $^ $(no-whole-archive) \
365           $(LDLIBS-$(@F:lib%.so=%).so)
366           test -z "$($(@F)-version)" || \
367             (rm -f $@$($(@F)-version); $(LN_S) $(@F) $@$($(@F)-version))
368 endef
370 # Don't try to use -lc when making libc.so itself.
371 # Also omits crti.o and crtn.o, which we do not want
372 # since we define our own `.init' section specially.
373 LDFLAGS-c.so = -nostdlib -nostartfiles
374 # But we still want to link libc.so against -lgcc.
375 LDLIBS-c.so = -lgcc
376 # Give libc.so an entry point and make it directly runnable itself.
377 LDFLAGS-c.so += -e __libc_main
378 # Use our own special initializer and finalizer files for libc.so.
379 $(common-objpfx)libc.so: $(elfobjdir)/soinit.so \
380                          $(common-objpfx)libc_pic.a \
381                          $(elfobjdir)/sofini.so $(elfobjdir)/ld.so
382         $(build-shlib)
383 endif
385 # Some files must not be compiled with the exception handler mechanism
386 # enabled (introduced in gcc-2.8).  Use $(no-exceptions) in the
387 # appropriate CFLAGS definition.
388 ifeq ($(have-no-exceptions),yes)
389 no-exceptions = -fno-exceptions
390 else
391 no-exceptions =
392 endif
394 # Figure out the source filenames in this directory.
396 override sources        := $(addsuffix .c,$(filter-out $(elided-routines),\
397                                                        $(routines) $(aux) \
398                                                        $(sysdep_routines)))
399 sysdep_routines := $(sysdep_routines)
401 headers := $(headers) $(sysdep_headers)
403 # This is the list of all object files, gotten by
404 # replacing every ".c" in `sources' with a ".o".
405 override objects        := $(addprefix $(objpfx),$(sources:.c=.o))
408 # The makefile may define $(extra-libs) with `libfoo libbar'
409 # to build libfoo.a et al from the modules listed in $(libfoo-routines).
410 ifdef extra-libs
411 # extra-lib.mk is included once for each extra lib to define rules
412 # to build it, and to add its objects to the various variables.
413 # During its evaluation, $(lib) is set to the name of the library.
414 extra-libs-left := $(extra-libs)
415 include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
416 endif
418 +depfiles := $(strip $(sources:.c=.d) \
419                      $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.so=.o))) \
420                      $(addsuffix .d,$(others) $(tests)))
421 +depfiles := $(addprefix $(objpfx),\
422                          $(filter-out $(addsuffix .d,$(omit-deps)),\
423                                       $(+depfiles)))
425 ifdef +depfiles
426 ifneq ($(no_deps),t)
427 -include $(+depfiles)
428 endif
429 endif
430 \f\f
431 # Maximize efficiency by minimizing the number of rules.
432 .SUFFIXES:      # Clear the suffix list.
433 # Add the suffixes we use.
434 .SUFFIXES: .a $(object-suffixes) .S .s .c .h .d
436 # Generic rule for making directories.
438 # mkdir isn't smart enough to strip a trailing /.
439         mkdir $(@:%/=%)
441 # Make sure that object files are not removed
442 # when they are intermediates between sources and library members.
443 .PRECIOUS: $(addprefix $(objpfx)%,$(object-suffixes))
445 # Make sure that the parent library archive is never removed.
446 .PRECIOUS: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
448 # Use the verbose option of ar and tar when not running silently.
449 ifeq    "$(findstring s,$(MAKEFLAGS))" ""       # if not -s
450 verbose := v
451 else                                            # -s
452 verbose :=
453 endif                                           # not -s
455 ARFLAGS := r$(verbose)
457 # This makes all the object files in the parent library archive.
459 .PHONY: lib libobjs lib-noranlib
460 lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
462 # Pattern rule for libraries: depend on the __.SYMDEF member updated by ranlib.
463 lib%.a: lib%.a($(ar-symtab-name)) ;
465 # For object-suffix $o, the list of objects with that suffix.
466 # Makefiles can define `elide-routines.so = foo' to leave foo.so out.
467 o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\
468                                                        $(elide-routines$o)),\
469                                             $(objects)))
471 libobjs: $(foreach o,$(object-suffixes),\
472                    $(common-objpfx)$(patsubst %,$(libtype$o),c)(\
473                    $(notdir $(o-objects))))
474 lib-noranlib: libobjs
475 others: $(addprefix $(objpfx),$(install-lib))
477 ifndef objects
479 # Create the stamp$o files to keep the parent makefile happy.
480 subdir_lib: $(foreach o,$(object-suffixes),$(objpfx)stamp$o-$(subdir))
481 $(foreach o,$(object-suffixes),$(objpfx)stamp$o-$(subdir)):
482         $(make-target-directory)
483         rm -f $@; > $@
484 else
486 # Define a pattern rule that will match many targets libc.a(foo.%), for
487 # each foo.o in $(objects) (% will just happen always to match `o').  This is
488 # the only way to define a rule that updates many targets at once with one
489 # sequence of commands.
490 define o-iterator-doit
491 $(common-objpfx)$(patsubst %,$(libtype$o),c)(\
492 $(addsuffix .%,$(filter-out $(elide-routines$o),$(notdir $(objects:.o=))))): \
493   $(objpfx)stamp.%-$(subdir) ;
494 endef
495 object-suffixes-left := $(object-suffixes)
496 include $(o-iterator)
498 # The pattern rule tells Make to remake $(objpfx)stamp.%-$(subdir) as
499 # the way to update all the foo.% object files in $(objects).  Now we
500 # define explicit rules to update each $(objpfx)stamp.SUFFIX-$(subdir)
501 # timestamp file; these rules (one explicit rule is generated for each
502 # object suffix) will update the parent archive with ar.  Use a static
503 # pattern rule so $* is set to the object type during the commands.
504 define o-iterator-doit
505 $(objpfx)stamp$o-$(subdir): $(objpfx)stamp%-$(subdir): $(o-objects); $$(do-ar)
506 endef
507 object-suffixes-left := $(object-suffixes)
508 include $(o-iterator)
509 define do-ar
510 topdir=`cd $(..).; pwd`; \
511 $(patsubst %/,cd %;,$(objpfx)) \
512 $(SHELL) $$topdir/autolock.sh ${O%-lib}.lck $(AR) cru$(verbose) ${O%-lib} \
513                                                   $(patsubst $(objpfx)%,%,$^)
514 rm -f $@
515 touch $@
516 endef
517 O%-lib = $(..)$(patsubst %,$(libtype$*),c)
519 endif
521 # Rules to update the $(ar-symtab-name) member with ranlib,
522 # one for each object flavor.
523 define o-iterator-doit
524 $(common-objpfx)$(patsubst %,$(libtype$o),c)($(ar-symtab-name)): \
525           $(common-objpfx)$(patsubst %,$(libtype$o),c)(\
526             $(patsubst $(objpfx)%,%,$(o-objects))) $(subdirs-stamp-o); \
527         $(SHELL) $$(..)./autolock.sh \
528           $$(common-objpfx)$$(patsubst %,$$(libtype$o),c).lck \
529           $$(RANLIB) $$(common-objpfx)$$(patsubst %,$$(libtype$o),c)
530 endef
531 ifndef subdir
532 subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%-$d)
533 subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
534 $(subdirs-stamps): subdir_lib;
535 endif
536 object-suffixes-left = $(object-suffixes)
537 include $(o-iterator)
540 # This makes all the object files.
541 .PHONY: objects objs
542 objects objs: $(foreach o,$(object-suffixes),$(o-objects)) \
543               $(addprefix $(objpfx),$(extra-objs))
545 # Canned sequence for building an extra library archive.
546 define build-extra-lib
547 $(patsubst %/,cd %;,$(objpfx)) \
548 $(AR) cru$(verbose) $(@:$(objpfx)%=%) \
549       $(patsubst $(objpfx)%,%,$^)
550 $(RANLIB) $@
551 endef
553 # Installation.
555 # $(install-lib) are installed from the object directory into $(libdir);
556 # files in $(install-lib) matching `lib%.a' are ranlib'd after installation
557 # unless they also appear in $(non-lib.a).  $(install-data) are installed
558 # as they are into $(datadir).  $(headers) are installed as they are in
559 # $(includedir).  $(install-bin) and $(install-sbin) are installed from the
560 # object directory into $(bindir) and $(sbindir), respectively.
561 # $(install-others) are absolute path names of files to install; rules to
562 # install them are defined elsewhere.
564 # The simple library name to install libc.a under.
565 # This could be defined by a sysdep Makefile.
566 ifndef libc-name
567 libc-name := c
568 endif
570 define do-install
571 $(make-target-directory)
572 $(INSTALL_DATA) $< $@
573 endef
575 # Make the target directory if it doesn't exist, using the `mkinstalldirs'
576 # script that does `mkdir -p' even if `mkdir' doesn't support that flag.
577 define make-target-directory
578 $(addprefix $(..)./mkinstalldirs ,\
579             $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%)))
580 endef
582 # Any directory (parent or subdir) that has any object files to build
583 # should install libc.a; this way "make install" in a subdir is guaranteed
584 # to install everything it changes.
585 ifdef objects
586 installed-libcs := $(foreach o,$(object-suffixes),\
587                              $(inst_libdir)/$(patsubst %,$(libtype$o),\
588                                                      $(libprefix)$(libc-name)))
589 installed-libcs := $(filter-out %_pic.a,$(installed-libcs))
590 install: $(installed-libcs)
591 $(installed-libcs): $(inst_libdir)/lib$(libprefix)%: lib
592         $(make-target-directory)
593         $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@
594 # Running ranlib after installing makes the __.SYMDEF time stamp up to
595 # date, which avoids messages from some linkers.
596         $(RANLIB) $@
597 endif
599 define do-install-program
600 $(make-target-directory)
601 $(INSTALL_PROGRAM) $< $@.new
602 mv -f $@.new $@
603 endef
605 install-lib.so := $(filter %.so,$(install-lib:%_pic.a=%.so))
606 install-lib := $(filter-out %.so %_pic.a,$(install-lib))
607 ifeq (yes,$(build-shared))
609 install-lib-nosubdir: $(install-lib.so:%=$(inst_libdir)/%)
611 # Find which .so's have versions.
612 versioned := $(strip $(foreach so,$(install-lib.so),\
613                                $(patsubst %,$(so),$($(so)-version))))
615 # Install all the unversioned shared libraries.
616 $(addprefix $(inst_slibdir)/, $(filter-out $(versioned),$(install-lib.so))): \
617         $(inst_slibdir)/%.so: $(objpfx)%.so; $(do-install-program)
619 ifneq ($(findstring -s,$(LN_S)),)
620 define make-link
621 rm -f $@.new
622 $(SHELL) $(..)rellns-sh $< $@.new
623 mv -f $@.new $@
624 endef
625 else
626 # If we have no symbolic links don't bother with rellns-sh.
627 define make-link
628 rm -f $@.new
629 $(LN_S) $< $@.new
630 mv -f $@.new $@
631 endef
632 endif
634 # XXX The following will have to be changed when `ldconfig' is available.
635 ifneq (yes,$(cross-compiling))
636 ifeq (yes,$(has-ldconfig))
637 define make-shlib-link
639 endef
640 endif
641 endif
642 ifndef make-shlib-link
643 define make-shlib-link
644 $(make-link)
645 endef
646 endif
648 ifdef libc.so-version
649 # For a library specified to be version N, install three files:
650 # libc.so       ->      libc.so.N       (e.g. libc.so.6)
651 # libc.so.6     ->      libc-VERSION.so (e.g. libc-1.10.so)
653 $(inst_slibdir)/libc.so$(libc.so-version): $(inst_slibdir)/libc-$(version).so
654         $(make-shlib-link)
655 $(inst_slibdir)/libc-$(version).so: $(common-objpfx)libc.so
656         $(do-install-program)
657 install: $(inst_slibdir)/libc.so$(libc.so-version)
659 ifndef subdir
660 # What we install as libc.so for programs to link against is in fact a
661 # link script.  It contains references for the various libraries we need.
662 # The libc.so object is not complete since some functions are only defined
663 # in libc.a and the dynamic linker is an etra object.
664 install: $(inst_libdir)/libc.so
665 $(inst_libdir)/libc.so: $(common-objpfx)libc.so$(libc.so-version) \
666                         $(elfobjdir)/$(rtld-installed-name) \
667                         $(inst_libdir)/lib$(libc-name).a
668         (echo '/* GNU ld script';\
669          echo '   Use the shared library, but some functions are only in';\
670          echo '   the static library, so try that secondarily.'; \
671          echo '   The dynamic linker defines some functions used by $(<F),';\
672          echo '   but ld uses definitions from libc.a before examining the';\
673          echo '   dependencies of $(<F) to find $(rtld-installed-name).  */';\
674          echo 'GROUP ( $(^F) )') > $@.new
675         mv -f $@.new $@
677 endif
679 else
680 install: $(inst_slibdir)/libc.so
681 $(inst_slibdir)/libc.so: $(common-objpfx)libc.so
682         $(do-install-program)
683 endif
686 ifneq (,$(versioned))
687 # Produce three sets of rules as above for all the smaller versioned libraries.
689 define o-iterator-doit
690 $(inst_libdir)/$o: $(inst_slibdir)/$o$($o-version); $$(make-link)
691 endef
692 object-suffixes-left := $(versioned)
693 include $(o-iterator)
695 # Make symlinks in the build directory, because the versioned names might
696 # be referenced by a DT_NEEDED in another library.
697 define o-iterator-doit
698 $(objpfx)$o$($o-version): $(objpfx)$o; $$(make-link)
699 endef
700 object-suffixes-left := $(versioned)
701 include $(o-iterator)
704 ifeq (,$($(subdir)-version))
705 define o-iterator-doit
706 $(inst_slibdir)/$o$($o-version): $(inst_slibdir)/$(o:.so=)-$(version).so;
707         $$(make-shlib-link)
708 endef
709 object-suffixes-left := $(versioned)
710 include $(o-iterator)
712 define o-iterator-doit
713 $(inst_slibdir)/$(o:.so=)-$(version).so: $(objpfx)$o; $$(do-install-program)
714 endef
715 object-suffixes-left := $(versioned)
716 include $(o-iterator)
717 else
718 define o-iterator-doit
719 $(inst_slibdir)/$o$($o-version): \
720   $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so;
721         $$(make-shlib-link)
722 endef
723 object-suffixes-left := $(versioned)
724 include $(o-iterator)
726 define o-iterator-doit
727 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so: $(objpfx)$o;
728         $$(do-install-program)
729 endef
730 object-suffixes-left := $(versioned)
731 include $(o-iterator)
732 endif
733 endif
735 define do-install-so
736 $(do-install-program)
737 $(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
738            $(filter-out %.so,$@))
739 endef
741 so-versions := $(sort $(foreach so,$(install-lib.so),.so$($(so)-version)))
742 $(foreach v,$(so-versions),\
743           $(inst_slibdir)/lib$(libprefix)%$v): $(common-objpfx)lib%.so
744         $(do-install-so)
745 $(foreach v,$(so-versions),\
746           $(inst_slibdir)/$(libprefix)%$v): $(common-objpfx)%.so
747         $(do-install-so)
748 endif
750 ifdef install-bin
751 $(addprefix $(inst_bindir)/,$(install-bin)): $(inst_bindir)/%: $(objpfx)%
752         $(do-install-program)
753 endif
754 ifdef install-rootsbin
755 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin)):
756    $(inst_rootsbindir)/%: $(objpfx)%
757         $(do-install-program)
758 endif
759 ifdef install-sbin
760 $(addprefix $(inst_sbindir)/,$(install-sbin)): $(inst_sbindir)/%: $(objpfx)%
761         $(do-install-program)
762 endif
763 ifdef install-lib
764 install-lib.a := $(filter lib%.a,$(install-lib))
765 install-lib-non.a := $(filter-out lib%.a,$(install-lib))
766 ifdef install-lib-non.a
767 $(addprefix $(inst_libdir)/$(libprefix),$(install-lib-non.a)): \
768   $(inst_libdir)/$(libprefix)%: $(objpfx)%
769         $(do-install)
770 endif
771 ifdef install-lib.a
772 $(install-lib.a:lib%.a=$(inst_libdir)/lib$(libprefix)%.a): \
773   $(inst_libdir)/lib$(libprefix)%.a: $(objpfx)lib%.a
774         $(do-install)
775         $(patsubst %,$(RANLIB) $@,$(filter-out $(non-lib.a),$(<F)))
776 endif
777 endif
778 ifdef install-data
779 $(addprefix $(inst_datadir)/,$(install-data)): $(inst_datadir)/%: %;
780         $(do-install)
781 endif
782 headers := $(strip $(headers))
783 ifdef headers
784 $(addprefix $(inst_includedir)/,$(headers)): $(inst_includedir)/%: %;
785         $(do-install)
786 endif   # headers
788 .PHONY: install-bin-nosubdir install-rootsbin-nosubdir install-sbin-nosubdir \
789         install-lib-nosubdir install-data-nosubdir install-headers-nosubdir
790 install-bin-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin))
791 install-rootsbin-nosubdir: \
792         $(addprefix $(inst_rootsbindir)/,$(install-rootsbin))
793 install-sbin-nosubdir: $(addprefix $(inst_sbindir)/,$(install-sbin))
794 install-lib-nosubdir: $(addprefix $(inst_libdir)/,\
795                        $(patsubst lib%.a,lib$(libprefix)%.a,$(install-lib.a)) \
796                        $(addprefix $(libprefix),$(install-lib-non.a)))
797 install-data-nosubdir: $(addprefix $(inst_datadir)/,$(install-data))
798 install-headers-nosubdir: $(addprefix $(inst_includedir)/,$(headers))
799 install-others-nosubdir: $(install-others)
801 # We need all the `-nosubdir' targets so that `install' in the parent
802 # doesn't depend on several things which each iterate over the subdirs.
803 # This rule makes `install-FOO' always use `install-FOO-nosubdir' as a
804 # subroutine.  Then in the parent `install-FOO' also causes subdir makes.
805 install-%:: install-%-nosubdir ;
807 .PHONY: install install-no-libc.a-nosubdir
808 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir\
809                             install-bin-nosubdir install-lib-nosubdir   \
810                             install-others-nosubdir install-rootsbin-nosubdir \
811                             install-sbin-nosubdir
812 install: install-no-libc.a-nosubdir
814 # Command to compile $< in $(objdir) using the native libraries.
815 define native-compile
816 $(make-target-directory)
817 $(patsubst %/,cd %;,$(objpfx)) \
818 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
819             $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(@F)
820 endef
822 # Command to compile $< in $(common-objdir) using the native libraries.
823 # We must cd to $(objdir) anyway so that $(..)config.h is valid.
824 define common-objdir-compile
825 $(patsubst %/,cd %;,$(objpfx)) \
826 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
827             $(firstword $(filter /%,$< $(shell pwd)/$<)) -o $(..)$(@F)
828 endef
830 # We always want to use configuration definitions.
831 # Note that this is only used for commands running in $(objpfx).
832 ALL_BUILD_CFLAGS = $(BUILD_CFLAGS) -include $(..)config.h
834 # Support the GNU standard name for this target.
835 .PHONY: check
836 check: tests
838 .PHONY: TAGS
839 TAGS: $(common-objpfx)distinfo-$(subdir) $(..)MakeTAGS
840         $(MAKE) $(addprefix -f ,$^) $@
842 $(..)po/%.pot: $(common-objpfx)distinfo-$(subdir) $(..)MakeTAGS FORCE
843         $(MAKE) $(addprefix -f ,$(filter-out FORCE,$^)) $@
844 FORCE:
847 .PHONY: echo-headers
848 echo-headers:
849         @echo $(headers)
852 # Common cleaning targets.
854 .PHONY: common-mostlyclean common-clean mostlyclean clean
855 clean: common-clean
856 mostlyclean: common-mostlyclean
858 # Remove the object files.
859 common-mostlyclean:
860         -rm -f $(addprefix $(objpfx),$(tests) $(test-srcs) $(others) \
861                                      $(addsuffix .o,$(tests) $(test-srcs) \
862                                                     $(others)) \
863                                      $(addsuffix .out,$(tests) $(test-srcs)))
864         -rm -f $(addprefix $(objpfx),$(extra-objs) $(install-lib))
865         -rm -f core $(common-objpfx)stub-$(subdir)
866         $(rmobjs)
867 define rmobjs
868 $(foreach o,$(object-suffixes),
869 -rm -f $(addprefix $(objpfx),stamp$o-$(subdir)) $(o-objects))
870 endef
872 # Also remove the dependencies and generated source files.
873 common-clean: common-mostlyclean
874         -rm -f $(addprefix $(objpfx),$(generated)) $(+depfiles)
875         -rm -fr $(addprefix $(objpfx),$(generated-dirs))
876         -rm -f $(addprefix $(common-objpfx),$(common-generated))
877         -rm -f $(common-objpfx)distinfo-$(subdir)
879 # Produce a file `stub-$(subdir)' which contains `#define __stub_FUNCTION'
880 # for each function which is a stub.  We grovel over all the .d files
881 # looking for references to source files in sysdeps/stub.  Then we grovel
882 # over each referenced source file to see what stub function it defines.
884 .PHONY: stubs # The parent Makefile calls this target.
885 stubs: $(common-objpfx)stub-$(subdir)
886 s = $(sysdep_dir)/stub
887 $(common-objpfx)stub-$(subdir): $(+depfiles)
888 # Use /dev/null since `...` might expand to empty.
889         (s=`cd $s; /bin/pwd`; \
890          $(patsubst %/,cd %;,$(objpfx)) \
891          sed -n 's/^stub_warning *(\([^)]*\).*$$/#define __stub_\1/p' \
892              `sed -n 's@^.*$s/\([a-z0-9_-]*\.c\).*$$@'"$$s"/'\1@p' \
893                   $(patsubst $(objpfx)%,%,$^) /dev/null` \
894              /dev/null) > $@T
895         mv -f $@T $@
897 # Make the distribution tar file.
899 .PHONY: dist
900 dist: $(common-objpfx)distinfo-$(subdir) $(..)Make-dist
901         $(MAKE) -f $< -f $(word 2,$^) $(Make-dist-args)
903 # Avoid depending on source files found in sysdeps dirs,
904 # because the references affect implicit rule selection.
905 dist: $(filter-out %.c %.S %.s,$(distribute))
907 # We used to simply export all these variables, but that frequently made the
908 # environment get too large.  Instead, we write all the information into
909 # a generated makefile fragment `distinfo', and then include it with -f in
910 # the sub-make that makes the distribution (above).
911 $(common-objpfx)distinfo-$(subdir): Makefile $(..)Makerules \
912                                     $(wildcard $(foreach dir,$(sysdirs),\
913                                                          $(dir)/Makefile))
914         $(distinfo-vars)
915         mv -f $@.new $@
916 .PHONY: subdir_distinfo distinfo
917 subdir_distinfo: distinfo
918 distinfo: $(common-objpfx)distinfo-$(subdir)
920 define distinfo-vars
921 rm -f $@.new
922 echo > $@.new 'subdir := $(subdir)'
923 $(foreach var,subdir-dirs sources elided-routines sysdep_routines \
924               headers sysdep_headers distribute dont_distribute generated \
925               others tests extra-libs $(extra-libs:%=%-routines) \
926               versioned \
927               $(addprefix install-,lib lib.so data bin sbin others),
928 echo >> $@.new '$(subdir)-$(var) := $($(var))'
929 echo >> $@.new '$(var) = $$($(subdir)-$(var))')
930 endef
932 ifneq (,$(strip $(gpl2lgpl)))
933 ifneq (,$(wildcard $(..)gpl2lgpl.sed))
934 # Snarf from the master source and frob the copying notice.
935 $(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
936         sed -f $^ > $@-tmp
937 # So I don't edit them by mistake.
938         chmod a-w $@-tmp
939         mv -f $@-tmp $@
940         test ! -d CVS || cvs commit -m'Updated from $^' $@
941 endif
942 endif