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