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