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