Update.
[glibc/history.git] / Makeconfig
blob9c7df17ffdb5e26b72300f5fa777ac05c34bbcf3
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 #       Makefile configuration options for the GNU C library.
22 ifneq (,)
23 This makefile requires GNU Make.
24 endif
26 all: # Make this the default goal
28 ifneq "$(origin +included-Makeconfig)" "file"
30 +included-Makeconfig := yes
32 ifdef subdir
33 .. := ../
34 endif
36 # If config.make exists, the source directory was configured,
37 # so don't try to be clever and find another directory to build in.
38 ifneq (,$(wildcard $(..)config.make))
39 ARCH =
40 machine =
41 else    # Not configured.
42 ifndef ARCH
43 ifdef machine
44 ARCH = $(machine)
45 endif # machine
46 endif # ARCH
47 endif # config.make
49 # Directory for object files and libc.a.  If this is not defined, the
50 # object files live in the subdirectories where their sources live, and
51 # libc.a lives in the parent directory (this probably doesn't work any
52 # more).
53 ifdef ARCH
54 ifeq ($(filter /%,$(ARCH)),)
55 objdir := $(..)$(ARCH)
56 else
57 objdir = $(ARCH)
58 endif
59 endif
61 # $(common-objdir) is the place to put objects and
62 # such that are not specific to a single subdir.
63 ifdef objdir
64 objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
65 common-objpfx = $(objdir)/
66 common-objdir = $(objdir)
67 else
68 objpfx :=
69 ifdef ..
70 common-objpfx = $(..)
71 common-objdir = ..
72 else
73 # This is a kludge.  make wizards might grok.
74 common-objpfx = sysdeps/../
75 common-objdir = .
76 endif
77 endif
79 # Root of the sysdeps tree.
80 sysdep_dir := $(..)sysdeps
81 export sysdep_dir := $(sysdep_dir)
83 # Get the values defined by options to `configure'.
84 include $(common-objpfx)config.make
86 # We have a special subdir for each binary format.
87 # For now, only ELF is fully supported.
88 ifeq ($(elf),yes)
89 binfmt-subdir = elf
90 else
91 binfmt-subdir =
92 endif
94 # Complete path to sysdep dirs.
95 full-config-sysdirs := $(filter /%, $(config-sysdirs)) \
96                        $(addprefix $(..), $(filter-out /%, $(config-sysdirs)))
97 export full-config-sysdirs := $(full-config-sysdirs)
99 # Run config.status to update config.make and config.h.  We don't show the
100 # dependence of config.h to Make, because it is only touched when it
101 # changes and so config.status would be run every time; the dependence of
102 # config.make should suffice to force regeneration and re-exec, and the new
103 # image will notice if config.h changed.
104 $(common-objpfx)config.make: $(common-objpfx)config.status \
105                              $(..)config.make.in $(..)config.h.in
106         cd $(<D); $(SHELL) $(<F)
108 # Find all the sysdeps configure fragments, to make sure we re-run
109 # configure when any of them changes.
110 $(common-objpfx)config.status: $(..)version.h $(..)configure \
111                                $(foreach dir,$(full-config-sysdirs),\
112                                          $(wildcard \
113                                            $(dir)/Implies) \
114                                          $(patsubst %.in,%,\
115                                                     $(firstword $(wildcard \
116  $(addprefix $(dir)/,configure configure.in)))))
117         @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
118          echo The GNU C library has not been configured. >&2; \
119          echo Run \`configure\' to configure it before building. >&2; \
120          echo Try \`configure --help\' for more details. >&2; \
121          exit 1; fi
123 # Get the user's configuration parameters.
124 ifneq ($(wildcard $(..)configparms),)
125 include $(..)configparms
126 endif
127 ifneq ($(objpfx),)
128 ifneq ($(wildcard $(common-objpfx)configparms),)
129 include $(common-objpfx)configparms
130 endif
131 endif
133 ####
134 ####    These are the configuration variables.  You can define values for
135 ####    the variables below in the file `configparms'.
136 ####    Do NOT edit this file.
137 ####
140 # Set this to either `stdio' or `libio', to compile in either GNU stdio
141 # or GNU libio.
142 ifndef stdio
143 stdio = stdio
144 endif
146 # Common prefix for machine-independent installation directories.
147 ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
148 prefix = /usr/local
149 endif
151 # Common prefix for machine-dependent installation directories.
152 ifeq ($(origin exec_prefix),undefined)
153 exec_prefix = $(prefix)
154 endif
156 # Where to install the library and object files.
157 ifndef libdir
158 libdir = $(exec_prefix)/lib
159 endif
160 inst_libdir = $(install_root)$(libdir)
162 # Where to install the shared library and dynamic linker.
163 ifndef slibdir
164 slibdir = $(exec_prefix)/lib
165 endif
166 inst_slibdir = $(install_root)$(slibdir)
168 # Prefix to put on files installed in $(libdir).  For libraries `libNAME.a',
169 # the prefix is spliced between `lib' and the name, so the linker switch
170 # `-l$(libprefix)NAME' finds the library; for other files the prefix is
171 # just prepended to the whole file name.
172 ifeq ($(origin libprefix),undefined)
173 libprefix =
174 endif
176 # Where to install the header files.
177 ifndef includedir
178 includedir = $(exec_prefix)/include
179 endif
180 inst_includedir = $(install_root)$(includedir)
182 # Where to install machine-independent data files.
183 # These are the timezone database, and the locale database.
184 ifndef datadir
185 datadir = $(prefix)/share
186 endif
187 inst_datadir = $(install_root)$(datadir)
189 # Where to install the timezone data files (which are machine-independent).
190 ifndef zonedir
191 zonedir = $(datadir)/zoneinfo
192 endif
193 inst_zonedir = $(install_root)$(zonedir)
195 # Where to install the locale and message catalog data files (which are
196 # machine-independent).
197 ifndef localedir
198 localedir = $(datadir)/locale
199 endif
200 inst_localedir = $(install_root)$(localedir)
202 # Where to install the locale charmap source files.
203 ifndef i18ndir
204 i18ndir = $(datadir)/i18n
205 endif
206 inst_i18ndir = $(install_root)$(i18ndir)
209 # Where to install programs.
210 ifndef bindir
211 bindir = $(exec_prefix)/bin
212 endif
213 inst_bindir = $(install_root)$(bindir)
215 # Where to install administrative programs.
216 ifndef rootsbindir
217 rootsbindir = $(exec_prefix)/sbin
218 endif
219 inst_rootsbindir = $(install_root)$(rootsbindir)
221 ifndef sbindir
222 sbindir = $(exec_prefix)/sbin
223 endif
224 inst_sbindir = $(install_root)$(sbindir)
226 # Where to install the Info files.
227 ifndef infodir
228 infodir = $(prefix)/info
229 endif
230 inst_infodir = $(install_root)$(infodir)
232 # Where to install default configuration files.  These include the local
233 # timezone specification and network data base files.
234 ifndef sysconfdir
235 sysconfdir = $(prefix)/etc
236 endif
237 inst_sysconfdir = $(install_root)$(sysconfdir)
239 # What timezone should be the installed default (e.g., US/Eastern).
240 # Run `make -C time echo-zonenames' to see a list of available zone names.
241 # The local timezone can be changed with `zic -l TIMEZONE' at any time.
242 ifndef localtime
243 localtime = Factory
244 endif
246 # Where to install the "localtime" timezone file; this is the file whose
247 # contents $(localtime) specifies.  If this is a relative pathname, it is
248 # relative to $(zonedir).  It is a good idea to put this somewhere
249 # other than there, so the zoneinfo directory contains only universal data,
250 # localizing the configuration data elsewhere.
251 ifndef localtime-file
252 localtime-file = $(sysconfdir)/localtime
253 inst_localtime-file = $(install_root)$(localtime-file)
254 endif
256 # What to use for leap second specifications in compiling the default
257 # timezone files.  Set this to `/dev/null' for no leap second handling as
258 # 1003.1 requires, or to `leapseconds' for proper leap second handling.
259 # Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
260 # This variable determines the default: if it's `/dev/null',
261 # ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
262 ifndef leapseconds
263 leapseconds = /dev/null
264 endif
266 # What timezone's DST rules should be used when a POSIX-style TZ
267 # environment variable doesn't specify any rules.  For 1003.1 compliance
268 # this timezone must use rules that are as U.S. federal law defines DST.
269 # Run `make -C time echo-zonenames' to see a list of available zone names.
270 # This setting can be changed with `zic -p TIMEZONE' at any time.
271 # If you want POSIX.1 compatibility, use `America/New_York'.
272 ifndef posixrules
273 posixrules = America/New_York
274 endif
276 # Where to install the "posixrules" timezone file; this is file
277 # whose contents $(posixrules) specifies.  If this is a relative
278 # pathname, it is relative to $(zonedir).
279 ifndef posixrules-file
280 posixrules-file = posixrules
281 endif
284 # Directory where your system's native header files live.
285 # This is used on Unix systems to generate some GNU libc header files.
286 ifndef sysincludedir
287 sysincludedir = /usr/include
288 endif
291 # Commands to install files.
292 ifndef INSTALL_DATA
293 INSTALL_DATA = $(INSTALL) -m 644
294 endif
295 ifndef INSTALL_PROGRAM
296 INSTALL_PROGRAM = $(INSTALL)
297 endif
298 ifndef INSTALL
299 INSTALL = install
300 endif
303 # The name of the C compiler.
304 # If you've got GCC, and it works, use it.
305 ifeq ($(origin CC),default)
306 CC := gcc
307 endif
309 # The name of the C compiler to use for compilations of programs to run on
310 # the host that is building the library.  If you set CC to a
311 # cross-compiler, you must set this to the normal compiler.
312 ifndef BUILD_CC
313 BUILD_CC = $(CC)
314 endif
316 # Default flags to pass the C compiler.
317 ifndef default_cflags
318 default_cflags := -g -O
319 endif
321 # Flags to pass the C compiler when assembling preprocessed assembly code
322 # (`.S' files).  On some systems the assembler doesn't understand the `#' line
323 # directives the preprocessor produces.  If you have troubling compiling
324 # assembly code, try using -P here to suppress these directives.
325 ifndef asm-CPPFLAGS
326 asm-CPPFLAGS =
327 endif
329 # Installed name of the startup code.
330 ifneq ($(elf),yes)
331 # When not using ELF, there is just one startfile, called crt0.o.
332 start-installed-name = crt0.o
333 else
334 # In the ELF universe, crt0.o is called crt1.o, and there are
335 # some additional bizarre files.
336 start-installed-name = crt1.o
337 have-initfini = yes
338 endif
341 # Command for linking programs with the C library.
342 ifndef +link
343 +link = $(CC) -nostdlib -nostartfiles -o $@ \
344               $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS)  \
345               $(addprefix $(csu-objpfx),$(start-installed-name)) \
346               $(+preinit) $(+prector) \
347               $(filter-out $(addprefix $(csu-objpfx),start.o \
348                                                      $(start-installed-name))\
349                            $(+preinit) $(link-extra-libs) \
350                            $(common-objpfx)libc% $(+postinit),$^) \
351               $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
352 endif
353 ifndef config-LDFLAGS
354 ifeq (yes,$(build-shared))
355 config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
356 endif
357 endif
358 ifndef link-libc
359 ifeq (yes,$(build-shared))
360 # We need the versioned name of libc.so in the deps of $(others) et al
361 # so that the symlink to libc.so is created before anything tries to
362 # run the linked programs.
363 link-libc = -Wl,-rpath-link=$(rpath-link) \
364             $(common-objpfx)libc.so$(libc.so-version) \
365             $(elfobjdir)/$(rtld-installed-name) \
366             $(common-objpfx)libc.a $(gnulib)
367 # Choose the default search path for the dynamic linker based on
368 # where we will install libraries.
369 ifneq ($(libdir),$(slibdir))
370 default-rpath = $(slibdir):$(libdir)
371 else
372 default-rpath = $(libdir)
373 endif
374 # This is how to find at build-time things that will be installed there.
375 rpath-link = $(common-objdir):$(mathobjdir):$(elfobjdir):$(nssobjdir)
376 mathobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)math)
377 elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
378 nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
379 else
380 link-libc = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
381 endif
382 endif
383 ifndef link-extra-libs
384 ifeq (yes,$(build-shared))
385 ifneq ($(common-objpfx),$(objpfx))
386 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
387         $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
388                    $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
389 else
390 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
391 endif
392 else
393 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
394 endif
395 endif
396 ifndef gnulib
397 gnulib := -lgcc
398 endif
399 ifeq ($(elf),yes)
400 +preinit = $(addprefix $(csu-objpfx),crti.o)
401 +postinit = $(addprefix $(csu-objpfx),crtn.o)
402 +prector = `$(CC) --print-file-name=crtbegin.o`
403 +postctor = `$(CC) --print-file-name=crtend.o`
404 endif
405 csu-objpfx = $(common-objpfx)csu/
406 elf-objpfx = $(common-objpfx)elf/
407 db-objpfx = $(common-objpfx)db/
409 # How to run a program we just linked with our library.
410 # The program binary is assumed to be $(word 2,$^).
411 built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
412 ifneq (yes,$(build-shared))
413 built-program-cmd = $(built-program-file)
414 else
415 comma = ,
416 sysdep-library-path = \
417 $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
418                                        $(filter -Wl$(comma)-rpath-link=%,\
419                                                 $(sysdep-LDFLAGS)))))
420 define built-program-cmd
421 LD_LIBRARY_PATH=$(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \
422 $(elf-objpfx)$(rtld-installed-name) $(built-program-file)
423 endef
424 endif
426 ifndef LD
427 LD := ld -X
428 endif
430 ifndef  RANLIB
431 RANLIB = ranlib
432 endif
434 # Extra flags to pass to GCC.
435 +gccwarn := -Wall -Wwrite-strings -Wno-parentheses -Winline -Wstrict-prototypes
437 # This is the program that generates makefile
438 # dependencies from C source files.
439 ifndef +mkdep
440 +mkdep = $(CC) -M
441 endif
443 # The program that makes Emacs-style TAGS files.
444 ETAGS   := etags -T
446 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
447 # perhaps others) to preprocess assembly code in some cases.
448 M4 = m4
450 ####
451 #### End of configuration variables.
452 ####
454 # This tells some versions of GNU make before 3.63 not to export all variables.
455 .NOEXPORT:
457 # We want to echo the commands we're running without
458 # umpteen zillion filenames along with it (we use `...' instead)
459 # but we don't want this echoing done when the user has said
460 # he doesn't want to see commands echoed by using -s.
461 ifneq   "$(findstring s,$(MAKEFLAGS))" ""       # if -s
462 +cmdecho        := echo >/dev/null
463 else                                            # not -s
464 +cmdecho        := echo
465 endif                                           # -s
467 # These are the flags given to the compiler to tell
468 # it what sort of optimization and/or debugging output to do.
469 ifndef  +cflags
470 # If `CFLAGS' was defined, use that.
471 ifdef           CFLAGS
472 +cflags := $(filter-out -I%,$(CFLAGS))
473 endif           # CFLAGS
474 endif   # +cflags
476 # If none of the above worked, default to "-g -O".
477 ifeq    "$(strip $(+cflags))" ""
478 +cflags := $(default_cflags)
479 endif   # $(+cflags) == ""
481 +cflags := $(+cflags) $(+gccwarn)
482 +gcc-nowarn := -w
484 # Don't duplicate options if we inherited variables from the parent.
485 +cflags := $(sort $(+cflags))
488 # These are flags given to the C compiler to tell it to look for include
489 # files (including ones given in angle brackets) in the current directory
490 # and in the parent library source directory.
491 # `+sysdep-includes' will be defined by Makerules.
492 +includes = -I. $(filter-out -I,-I$(patsubst %/,%,$(..))) $($(stdio)-include) \
493             $(includes) $(+sysdep-includes) $(last-includes)
495 # Since libio has several internal header files, we use a -I instead
496 # of many little headers in the top level source directory.
497 libio-include = -I$(..)libio
499 # These are the variables that the implicit compilation rules use.
500 CPPFLAGS = $(+includes) $(defines) -include $(..)libc-symbols.h \
501            $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) \
502            $(CPPFLAGS-$(@F))
503 override CFLAGS = $(+cflags) $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) \
504                   $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
507 # This is the macro that the implicit linking rules use.
508 ifneq "$(filter -g,$(+cflags))" "" # -g is in $(+cflags)
509 LDFLAGS := -g
510 endif
513 # Enable object files for different versions of the library.
514 # Various things use $(object-suffixes) to know what all to make.
515 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
516 # to pass different flags for each flavor.
517 libtypes = $(foreach o,$(object-suffixes),$(libtype$o))
518 object-suffixes := .o
519 all-object-suffixes := .o .so .po .go .bo
520 libtype.o := lib%.a
521 ifeq (yes,$(build-shared))
522 # Under --enable-shared, we will build a shared library of PIC objects.
523 # The PIC object files are named foo.so.
524 object-suffixes += .so
525 CPPFLAGS-.so = -DPIC
526 CFLAGS-.so = -fPIC -fno-common
527 libtype.so := lib%_pic.a
528 endif
529 ifeq (yes,$(build-profile))
530 # Under --enable-profile, we will build a static library of profiled objects.
531 # The profiled object files are named foo.po.
532 object-suffixes += .po
533 CPPFLAGS-.po = -DPROF
534 CFLAGS-.po = -pg
535 libtype.po = lib%_p.a
536 endif
537 ifeq (yes,$(build-omitfp))
538 # Under --enable-omitfp, we build an the library optimized without
539 # debugging information using -fomit-frame-pointer, and build an extra
540 # library with debugging information.  The debuggable objects are named foo.go.
541 object-suffixes += .go
542 CFLAGS-.go = -g
543 CFLAGS-.o = -g0 -O99 -fomit-frame-pointer
544 CFLAGS-.so += $(CFLAGS-.o)
545 libtype.go = lib%_g.a
546 endif
547 ifeq (yes,$(build-bounded))
548 # Under --enable-bounded, we build the library with `-fbounded-pointers -g'
549 # to runtime bounds checking.  The bounded-pointer objects are named foo.bo.
550 object-suffixes += .bo
551 CPPFLAGS-.bo = -DBOUNDED_POINTERS
552 CFLAGS-.bo = -g -fbounded-pointers
553 libtype.bo = lib%_b.a
554 endif
557 +gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
559 ifndef BUILD_CC
560 BUILD_CC = $(CC)
561 endif
563 # Figure out the version numbers from version.h.
565 $(common-objpfx)version.mk: $(..)version.h $(..)Makeconfig
566         sed -n -e 's/^.*RELEASE.*"\([^"]*\)".*$$/release=\1/p' \
567                -e 's/^.*VERSION.*"\([^"]*\)".*$$/version=\1/p' \
568             < $< > $@-new
569         mv -f $@-new $@
571 ifeq (yes, $(build-shared))
573 # Process the shlib-versions file, which tells us what shared library
574 # version numbers to use when we install shared objects on this system.
575 -include $(common-objpfx)soversions.mk
576 $(common-objpfx)soversions.mk: $(..)shlib-versions $(..)Makeconfig \
577                                $(wildcard $(patsubst %, $(..)%/shlib-versions,\
578                                                         $(add-ons))) \
579                                $(common-objpfx)config.make
580         (file="$(wildcard $(patsubst %,$(..)%/shlib-versions,$(add-ons))) \
581                $(..)shlib-versions"; \
582          for f in $$file; do \
583            sed 's/#.*$$//' $$f | while read conf versions; do \
584              test -n "$$versions" && \
585              test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
586                         : "$$conf"` != 0 || continue; \
587              for v in $$versions; do \
588                lib=`echo $$v | sed 's/=.*$$//'`; \
589                if eval "test -z \"\$$vers_lib$$lib\""; then \
590                  eval vers_lib$${lib}=yes; \
591                  number=`echo $$v | sed "s/^.*=//"`; \
592                  case $$number in \
593                    [0-9]*) echo "$$lib.so-version=.$$number"; \
594                            echo "all-sonames+=$$lib.so\$$($$lib.so-version)";;\
595                    *) echo "$$lib.so-version=$$number"; \
596                       echo "all-sonames+=\$$($$lib.so-version)";;  \
597                  esac; \
598                fi; \
599              done; \
600            done; \
601          done;) > $@T; exit 0
602         mv -f $@T $@
604 # Get $(version) defined with the release version number.
605 -include $(common-objpfx)version.mk
607 # Generate the header containing the names of all shared libraries.
608 # We use a stamp file to avoid uncessary recompilations.
609 before-compile += $(common-objpfx)gnu/lib-names.h
610 $(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp
611 $(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
612         $(make-target-directory)
613         @rm -f ${@:stmp=T} $@
614         (echo '/* This file is automatically generated.';\
615          echo '   It defines macros to allow user program to find the shared';\
616          echo '   library files which come as part of GNU libc.  */';\
617          echo '#ifndef __GNU_LIB_NAMES_H'; \
618          echo '#define __GNU_LIB_NAMES_H        1'; \
619          echo; \
620          (libs='$(all-sonames)';\
621           for l in $$libs; do \
622             upname=`echo $$l | sed 's/[.]so.*//' | \
623                     tr 'abcdefghijklmnopqrstuvwxyz-' \
624                        'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
625             echo "#define       $${upname}_SO   \"$$l\""; \
626           done;) | sort; \
627          echo; \
628          echo '#endif   /* gnu/lib-names.h */';) > ${@:stmp=T}
629         if test -r ${@:stmp=h} && cmp -s ${@:stmp=h} ${@:stmp=T}; \
630         then rm -f ${@:stmp=T}; \
631         else mv -f ${@:stmp=T} ${@:stmp=h}; fi
632         touch $@
634 common-generated += gnu/lib-names.h gnu/lib-names.stmp
636 # The name under which the run-time dynamic linker is installed.
637 # We are currently going for the convention that `/lib/ld.so.1'
638 # names the SVR4/ELF ABI-compliant dynamic linker.
639 ifndef rtld-installed-name
640 ifdef ld.so-version
641 rtld-installed-name = $(ld.so-version)
642 else
643 rtld-installed-name = ld.so.1
644 endif
645 endif
647 ifndef rtld-version-installed-name
648 rtld-version-installed-name = ld-$(version).so
649 endif
651 endif # build-shared
653 endif # Makeconfig not yet included