]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
Update.
[thirdparty/glibc.git] / Makeconfig
CommitLineData
f3787738 1# Copyright (C) 1991-2000,01,02 Free Software Foundation, Inc.
28f540f4
RM
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
41bdb6e2
AJ
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
28f540f4
RM
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
41bdb6e2 12# Lesser General Public License for more details.
28f540f4 13
41bdb6e2
AJ
14# You should have received a copy of the GNU Lesser General Public
15# License along with the GNU C Library; if not, write to the Free
16# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17# 02111-1307 USA.
28f540f4
RM
18
19#
20# Makefile configuration options for the GNU C library.
21#
22ifneq (,)
23This makefile requires GNU Make.
24endif
25
3e5f5557
UD
26all: # Make this the default goal
27
28f540f4
RM
28ifneq "$(origin +included-Makeconfig)" "file"
29
30+included-Makeconfig := yes
31
32ifdef subdir
33.. := ../
34endif
35
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.
38ifneq (,$(wildcard $(..)config.make))
39ARCH =
40machine =
41else # Not configured.
42ifndef ARCH
43ifdef machine
44ARCH = $(machine)
45endif # machine
46endif # ARCH
47endif # config.make
48
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).
53ifdef ARCH
54ifeq ($(filter /%,$(ARCH)),)
55objdir := $(..)$(ARCH)
56else
57objdir = $(ARCH)
58endif
59endif
60
094bacdb 61# $(common-objdir) is the place to put objects and
28f540f4
RM
62# such that are not specific to a single subdir.
63ifdef objdir
6e953631
UD
64objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
65common-objpfx = $(objdir)/
28f540f4
RM
66common-objdir = $(objdir)
67else
68objpfx :=
69ifdef ..
70common-objpfx = $(..)
71common-objdir = ..
72else
73# This is a kludge. make wizards might grok.
74common-objpfx = sysdeps/../
75common-objdir = .
76endif
77endif
78
f332db02
RM
79# Root of the sysdeps tree.
80sysdep_dir := $(..)sysdeps
81export sysdep_dir := $(sysdep_dir)
82
28f540f4
RM
83# Get the values defined by options to `configure'.
84include $(common-objpfx)config.make
85
0501d603
UD
86# We have a special subdir for each binary format.
87# For now, only ELF is fully supported.
88ifeq ($(elf),yes)
89binfmt-subdir = elf
90else
0a54e401
UD
91# This is probably better than nothing.
92binfmt-subdir = aout
0501d603
UD
93endif
94
57ba7bb4 95# Complete path to sysdep dirs.
0a55a284 96export full_config_sysdirs := $(addprefix $(..),$(config-sysdirs))
57ba7bb4 97
273d56ce
RM
98# Run config.status to update config.make and config.h. We don't show the
99# dependence of config.h to Make, because it is only touched when it
100# changes and so config.status would be run every time; the dependence of
101# config.make should suffice to force regeneration and re-exec, and the new
102# image will notice if config.h changed.
19361cb7
UD
103$(common-objpfx)config.make: $(common-objpfx)config.status \
104 $(..)config.make.in $(..)config.h.in
273d56ce
RM
105 cd $(<D); $(SHELL) $(<F)
106
7da3079b
RM
107# Find all the sysdeps configure fragments, to make sure we re-run
108# configure when any of them changes.
5290baf0 109$(common-objpfx)config.status: $(..)version.h $(..)configure \
0a55a284 110 $(foreach dir,$(full_config_sysdirs),\
e50ec9f9 111 $(wildcard \
57ba7bb4 112 $(dir)/Implies) \
f332db02
RM
113 $(patsubst %.in,%,\
114 $(firstword $(wildcard \
57ba7bb4 115 $(addprefix $(dir)/,configure configure.in)))))
273d56ce
RM
116 @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
117 echo The GNU C library has not been configured. >&2; \
118 echo Run \`configure\' to configure it before building. >&2; \
119 echo Try \`configure --help\' for more details. >&2; \
120 exit 1; fi
28f540f4 121
74015205
UD
122# We don't want CPPFLAGS to be exported to the command running configure.
123unexport CPPFLAGS
124
28f540f4
RM
125# Get the user's configuration parameters.
126ifneq ($(wildcard $(..)configparms),)
127include $(..)configparms
128endif
129ifneq ($(objpfx),)
6e953631
UD
130ifneq ($(wildcard $(common-objpfx)configparms),)
131include $(common-objpfx)configparms
28f540f4
RM
132endif
133endif
28f540f4
RM
134\f
135####
136#### These are the configuration variables. You can define values for
137#### the variables below in the file `configparms'.
138#### Do NOT edit this file.
139####
140
141
142# Common prefix for machine-independent installation directories.
487253ea 143ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
28f540f4
RM
144prefix = /usr/local
145endif
146
0413b54c
UD
147# Decide whether we shall build the programs or not. We always do this
148# unless the user tells us (in configparms) or we are building for a
149# standalone target.
150ifndef build-programs
151ifneq ($(config-os),none)
152build-programs=yes
153else
154build-programs=no
155endif
156endif
157
28f540f4 158# Common prefix for machine-dependent installation directories.
487253ea 159ifeq ($(origin exec_prefix),undefined)
28f540f4
RM
160exec_prefix = $(prefix)
161endif
162
163# Where to install the library and object files.
164ifndef libdir
165libdir = $(exec_prefix)/lib
166endif
8d57beea 167inst_libdir = $(install_root)$(libdir)
28f540f4 168
094bacdb
RM
169# Where to install the shared library and dynamic linker.
170ifndef slibdir
171slibdir = $(exec_prefix)/lib
172endif
8d57beea 173inst_slibdir = $(install_root)$(slibdir)
094bacdb 174
28f540f4
RM
175# Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
176# the prefix is spliced between `lib' and the name, so the linker switch
177# `-l$(libprefix)NAME' finds the library; for other files the prefix is
178# just prepended to the whole file name.
487253ea 179ifeq ($(origin libprefix),undefined)
28f540f4
RM
180libprefix =
181endif
182
183# Where to install the header files.
184ifndef includedir
185includedir = $(exec_prefix)/include
186endif
8d57beea 187inst_includedir = $(install_root)$(includedir)
28f540f4 188
28f540f4 189# Where to install machine-independent data files.
a2fe9c76 190# These are the timezone database, and the locale database.
28f540f4
RM
191ifndef datadir
192datadir = $(prefix)/share
193endif
8d57beea 194inst_datadir = $(install_root)$(datadir)
28f540f4
RM
195
196# Where to install the timezone data files (which are machine-independent).
197ifndef zonedir
198zonedir = $(datadir)/zoneinfo
199endif
8d57beea 200inst_zonedir = $(install_root)$(zonedir)
28f540f4 201
4a33c2f5 202# Where to install the locale files.
a2fe9c76 203ifndef localedir
4a33c2f5 204localedir = $(libdir)/locale
a2fe9c76 205endif
8d57beea 206inst_localedir = $(install_root)$(localedir)
a2fe9c76 207
4a33c2f5
UD
208# Where to install the message catalog data files (which are
209# machine-independent).
210ifndef msgcatdir
211msgcatdir = $(datadir)/locale
212endif
213inst_msgcatdir = $(install_root)$(msgcatdir)
214
3ec41e03 215# Where to install the locale charmap source files.
19bc17a9
RM
216ifndef i18ndir
217i18ndir = $(datadir)/i18n
a2fe9c76 218endif
8d57beea 219inst_i18ndir = $(install_root)$(i18ndir)
a2fe9c76 220
6973fc01
UD
221# Where to install the shared object for charset transformation.
222ifndef gconvdir
223gconvdir = $(libdir)/gconv
224endif
225inst_gconvdir = $(install_root)$(gconvdir)
226
28f540f4
RM
227# Where to install programs.
228ifndef bindir
229bindir = $(exec_prefix)/bin
230endif
8d57beea 231inst_bindir = $(install_root)$(bindir)
28f540f4 232
7f0ff1b0
UD
233# Where to install internal programs.
234ifndef libexecdir
235libexecdir = $(exec_prefix)/libexec
236endif
237inst_libexecdir = $(install_root)$(libexecdir)
238
28f540f4 239# Where to install administrative programs.
1ef32c3d
UD
240ifndef rootsbindir
241rootsbindir = $(exec_prefix)/sbin
242endif
8d57beea 243inst_rootsbindir = $(install_root)$(rootsbindir)
1ef32c3d 244
28f540f4
RM
245ifndef sbindir
246sbindir = $(exec_prefix)/sbin
247endif
8d57beea 248inst_sbindir = $(install_root)$(sbindir)
28f540f4
RM
249
250# Where to install the Info files.
251ifndef infodir
252infodir = $(prefix)/info
253endif
8d57beea 254inst_infodir = $(install_root)$(infodir)
28f540f4
RM
255
256# Where to install default configuration files. These include the local
257# timezone specification and network data base files.
258ifndef sysconfdir
259sysconfdir = $(prefix)/etc
260endif
8d57beea 261inst_sysconfdir = $(install_root)$(sysconfdir)
28f540f4
RM
262
263# What timezone should be the installed default (e.g., US/Eastern).
264# Run `make -C time echo-zonenames' to see a list of available zone names.
265# The local timezone can be changed with `zic -l TIMEZONE' at any time.
266ifndef localtime
267localtime = Factory
268endif
269
270# Where to install the "localtime" timezone file; this is the file whose
271# contents $(localtime) specifies. If this is a relative pathname, it is
272# relative to $(zonedir). It is a good idea to put this somewhere
273# other than there, so the zoneinfo directory contains only universal data,
274# localizing the configuration data elsewhere.
275ifndef localtime-file
0d8733c4
UD
276localtime-file = $(sysconfdir)/localtime
277inst_localtime-file = $(install_root)$(localtime-file)
28f540f4
RM
278endif
279
59dd8641
RM
280# What to use for leap second specifications in compiling the default
281# timezone files. Set this to `/dev/null' for no leap second handling as
282# 1003.1 requires, or to `leapseconds' for proper leap second handling.
283# Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
284# This variable determines the default: if it's `/dev/null',
285# ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
286ifndef leapseconds
287leapseconds = /dev/null
288endif
289
28f540f4
RM
290# What timezone's DST rules should be used when a POSIX-style TZ
291# environment variable doesn't specify any rules. For 1003.1 compliance
292# this timezone must use rules that are as U.S. federal law defines DST.
293# Run `make -C time echo-zonenames' to see a list of available zone names.
294# This setting can be changed with `zic -p TIMEZONE' at any time.
295# If you want POSIX.1 compatibility, use `America/New_York'.
296ifndef posixrules
297posixrules = America/New_York
298endif
299
300# Where to install the "posixrules" timezone file; this is file
301# whose contents $(posixrules) specifies. If this is a relative
302# pathname, it is relative to $(zonedir).
303ifndef posixrules-file
304posixrules-file = posixrules
305endif
306
307
308# Directory where your system's native header files live.
309# This is used on Unix systems to generate some GNU libc header files.
310ifndef sysincludedir
311sysincludedir = /usr/include
312endif
313
314
315# Commands to install files.
316ifndef INSTALL_DATA
317INSTALL_DATA = $(INSTALL) -m 644
318endif
07627f49
UD
319ifndef INSTALL_SCRIPT
320INSTALL_SCRIPT = $(INSTALL)
321endif
28f540f4
RM
322ifndef INSTALL_PROGRAM
323INSTALL_PROGRAM = $(INSTALL)
324endif
325ifndef INSTALL
326INSTALL = install
327endif
328
329
330# The name of the C compiler.
331# If you've got GCC, and it works, use it.
332ifeq ($(origin CC),default)
333CC := gcc
334endif
335
336# The name of the C compiler to use for compilations of programs to run on
337# the host that is building the library. If you set CC to a
338# cross-compiler, you must set this to the normal compiler.
339ifndef BUILD_CC
340BUILD_CC = $(CC)
341endif
342
343# Default flags to pass the C compiler.
344ifndef default_cflags
1d5c2feb
UD
345ifeq ($(release),stable)
346default_cflags := -g -O2
347else
a8922de8 348default_cflags := -g -O
28f540f4 349endif
1d5c2feb 350endif
28f540f4
RM
351
352# Flags to pass the C compiler when assembling preprocessed assembly code
353# (`.S' files). On some systems the assembler doesn't understand the `#' line
354# directives the preprocessor produces. If you have troubling compiling
355# assembly code, try using -P here to suppress these directives.
356ifndef asm-CPPFLAGS
357asm-CPPFLAGS =
358endif
359
9a0a462c
UD
360# ELF always supports init/fini sections
361ifeq ($(elf),yes)
362have-initfini = yes
363endif
364
779ae82e 365# Installed name of the startup code.
9a0a462c
UD
366ifneq ($(have-initfini),yes)
367# When not having init/fini, there is just one startfile, called crt0.o.
779ae82e
UD
368start-installed-name = crt0.o
369else
9a0a462c 370# On systems having init/fini, crt0.o is called crt1.o, and there are
779ae82e
UD
371# some additional bizarre files.
372start-installed-name = crt1.o
779ae82e 373endif
af09bfb5
RM
374# On systems that do not need a special startfile for statically linked
375# binaries, simply set it to the normal name.
376ifndef static-start-installed-name
377static-start-installed-name = $(start-installed-name)
378endif
779ae82e 379
f13df7c7
UD
380ifeq (yesyesyes,$(build-shared)$(elf)$(have-z-combreloc))
381combreloc-LDFLAGS = -Wl,-z,combreloc
382LDFLAGS.so += $(combreloc-LDFLAGS)
383LDFLAGS-rtld += $(combreloc-LDFLAGS)
384endif
385
28f540f4
RM
386# Command for linking programs with the C library.
387ifndef +link
8e3cc80f 388+link = $(CC) -nostdlib -nostartfiles -o $@ \
482eec0d 389 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
f13df7c7 390 $(combreloc-LDFLAGS) \
779ae82e
UD
391 $(addprefix $(csu-objpfx),$(start-installed-name)) \
392 $(+preinit) $(+prector) \
393 $(filter-out $(addprefix $(csu-objpfx),start.o \
394 $(start-installed-name))\
395 $(+preinit) $(link-extra-libs) \
396 $(common-objpfx)libc% $(+postinit),$^) \
5ae9d168 397 $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
28f540f4 398endif
e1586792
UD
399# Command for statically linking programs with the C library.
400ifndef +link-static
401+link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
402 $(sysdep-LDFLAGS) $(LDFLAGS) \
af09bfb5 403 $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
e1586792
UD
404 $(+preinit) $(+prector) \
405 $(filter-out $(addprefix $(csu-objpfx),start.o \
406 $(start-installed-name))\
407 $(+preinit) $(link-extra-libs-static) \
408 $(common-objpfx)libc% $(+postinit),$^) \
409 $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
410endif
ac556388
GM
411# Command for statically linking bounded-pointer programs with the C library.
412ifndef +link-bounded
413+link-bounded = $(CC) -nostdlib -nostartfiles -static -fbounded-pointers -o $@ \
414 $(sysdep-LDFLAGS) $(LDFLAGS) \
415 $(addprefix $(csu-objpfx),b$(static-start-installed-name)) \
416 $(+preinit) $(+prector) \
4362aba5 417 $(filter-out $(addprefix $(csu-objpfx),start.ob \
ac556388
GM
418 $(start-installed-name))\
419 $(+preinit) $(link-extra-libs-bounded) \
420 $(common-objpfx)libc% $(+postinit),$^) \
421 $(link-extra-libs-bounded) $(link-libc-bounded) $(+postctor) $(+postinit)
422endif
b122c703 423ifndef config-LDFLAGS
994431ed 424ifeq (yesyes,$(build-shared)$(elf))
094bacdb 425config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
b122c703
RM
426endif
427endif
3fe9de0d
RM
428ifndef link-libc
429ifeq (yes,$(build-shared))
ad10cac8 430ifeq ($(elf),yes)
aa1075ea
RM
431# We need the versioned name of libc.so in the deps of $(others) et al
432# so that the symlink to libc.so is created before anything tries to
433# run the linked programs.
4d6acc61 434link-libc = -Wl,-rpath-link=$(rpath-link) \
aa1075ea 435 $(common-objpfx)libc.so$(libc.so-version) \
a44d2393 436 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
4d6acc61 437# This is how to find at build-time things that will be installed there.
b11f5954 438rpath-dirs = math elf dlfcn nss nis rt resolv crypt
ad10cac8 439else
27abf7a3 440ifneq (,$(filter aix aix%,$(config-os)))
0a3b7e6a 441link-libc = $(common-objpfx)libc.a \
ad10cac8
UD
442 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
443rpath-dirs = math dlfcn nss nis rt resolv crypt
444endif
445endif
e72bfd87
UD
446rpath-link = \
447$(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
47707456 448elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
3fe9de0d 449else
ce85d65b
UD
450nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
451resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
4ac5087b 452link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
3fe9de0d
RM
453endif
454endif
900bec85 455
ad10cac8
UD
456# Differences in the linkers on the various platforms.
457ifeq ($(elf),yes)
458LDFLAGS-rpath-ORIGIN = -Wl,-rpath,'$$ORIGIN'
459LDFLAGS-soname-fname = -Wl,-soname,$(@F)
460LDFLAGS-rdynamic = -rdynamic
461LDFLAGS-Bsymbolic = -Bsymbolic
462else
27abf7a3 463ifneq (,$(filter aix aix%,$(config-os)))
ad10cac8
UD
464LDFLAGS-rpath-ORIGIN =
465LDFLAGS-soname-fname =
466LDFLAGS-rdynamic = -Wl,-bdynamic
467LDFLAGS-Bsymbolic = -Wl,-bsymbolic
468endif
469endif
470
f01010de
UD
471# Choose the default search path for the dynamic linker based on
472# where we will install libraries.
473ifneq ($(libdir),$(slibdir))
474default-rpath = $(slibdir):$(libdir)
475else
476default-rpath = $(libdir)
477endif
478
57ba7bb4
UD
479ifndef link-extra-libs
480ifeq (yes,$(build-shared))
c57abfa7
UD
481ifneq ($(common-objpfx),$(objpfx))
482link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
483 $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
484 $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
485else
57ba7bb4 486link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
c57abfa7 487endif
57ba7bb4
UD
488else
489link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
490endif
491endif
e1586792
UD
492
493# The static libraries.
66000494 494ifeq (yes,$(build-static))
e1586792
UD
495link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
496link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
66000494
UD
497else
498ifeq (yes,$(build-shared))
499# We can try to link the programs with lib*_pic.a...
a94b2ac0 500link-libc-static = $(gnulib) $(common-objpfx)libc_pic.a
66000494
UD
501link-extra-libs-static = $(link-extra-libs)
502endif
503endif
ac556388 504link-libc-bounded = $(common-objpfx)libc_b.a $(gnulib) $(common-objpfx)libc_b.a
e64911d1 505link-extra-libs-bounded = $(foreach lib,$(LDLIBS-$(@F:%-bp=%)),$(common-objpfx)$(lib)_b.a)
e1586792 506
28f540f4
RM
507ifndef gnulib
508gnulib := -lgcc
509endif
96f873b9 510ifeq ($(elf),yes)
e75154a6
RM
511+preinit = $(addprefix $(csu-objpfx),crti.o)
512+postinit = $(addprefix $(csu-objpfx),crtn.o)
5ae9d168
UD
513+prector = `$(CC) --print-file-name=crtbegin.o`
514+postctor = `$(CC) --print-file-name=crtend.o`
66715f83 515+interp = $(addprefix $(elf-objpfx),interp.os)
96f873b9 516endif
6e953631
UD
517csu-objpfx = $(common-objpfx)csu/
518elf-objpfx = $(common-objpfx)elf/
28f540f4 519
03a75825
RM
520# How to run a program we just linked with our library.
521# The program binary is assumed to be $(word 2,$^).
522built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
ad10cac8 523ifeq (yesyes,$(build-shared)$(elf))
196980f5 524comma = ,
11336c16
UD
525sysdep-library-path = \
526$(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
527 $(filter -Wl$(comma)-rpath-link=%,\
528 $(sysdep-LDFLAGS)))))
27abf7a3
RM
529run-program-prefix = $(if $(filter $(notdir $(built-program-file)),\
530 $(tests-static)),, \
85857f93
UD
531 $(elf-objpfx)$(rtld-installed-name) \
532 --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)))
8658ceda
UD
533else
534run-program-prefix =
535endif
ac556388
GM
536# Never use $(run-program-prefix) for the statically-linked %-bp test programs
537built-program-cmd = $(patsubst %,$(run-program-prefix),\
538 $(filter-out %-bp,$(built-program-file))) \
539 $(built-program-file)
03a75825 540
28f540f4
RM
541ifndef LD
542LD := ld -X
543endif
544
545ifndef RANLIB
546RANLIB = ranlib
547endif
548
549# Extra flags to pass to GCC.
6cc7d725
UD
550ifeq ($(all-warnings),yes)
551+gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes -Wcast-qual -Wbad-function-cast -Wmissing-noreturn -Wmissing-prototypes -Wmissing-declarations -Wcomment -Wcomments -Wtrigraphs -Wsign-compare -Wfloat-equal -Wmultichar
552else
6796bc80 553+gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
6cc7d725 554endif
28f540f4
RM
555
556# This is the program that generates makefile
557# dependencies from C source files.
558ifndef +mkdep
559+mkdep = $(CC) -M
560endif
561
562# The program that makes Emacs-style TAGS files.
78759725 563ETAGS := etags
28f540f4
RM
564
565# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
566# perhaps others) to preprocess assembly code in some cases.
567M4 = m4
568
73237de3
UD
569# To force installation of files even if they are older than the
570# installed files. This variable is included in the dependency list
571# of all installation targets.
572ifeq ($(force-install),yes)
573+force = force-install
574else
575+force =
576endif
577
28f540f4
RM
578####
579#### End of configuration variables.
580####
581\f
582# This tells some versions of GNU make before 3.63 not to export all variables.
583.NOEXPORT:
584
585# We want to echo the commands we're running without
6d52618b 586# umpteen zillion filenames along with it (we use `...' instead)
28f540f4
RM
587# but we don't want this echoing done when the user has said
588# he doesn't want to see commands echoed by using -s.
589ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
590+cmdecho := echo >/dev/null
591else # not -s
592+cmdecho := echo
593endif # -s
594
595# These are the flags given to the compiler to tell
596# it what sort of optimization and/or debugging output to do.
597ifndef +cflags
598# If `CFLAGS' was defined, use that.
599ifdef CFLAGS
600+cflags := $(filter-out -I%,$(CFLAGS))
601endif # CFLAGS
602endif # +cflags
603
fd26970f 604# If none of the above worked, default to "-g -O".
28f540f4
RM
605ifeq "$(strip $(+cflags))" ""
606+cflags := $(default_cflags)
607endif # $(+cflags) == ""
608
28f540f4
RM
609+cflags := $(+cflags) $(+gccwarn)
610+gcc-nowarn := -w
28f540f4
RM
611
612# Don't duplicate options if we inherited variables from the parent.
613+cflags := $(sort $(+cflags))
614
615
616# These are flags given to the C compiler to tell it to look for include
762a2918
UD
617# files (including ones given in angle brackets) in the current directory,
618# in the parent library source directory and in the include directory.
28f540f4 619# `+sysdep-includes' will be defined by Makerules.
bdbf022d
UD
620+includes = -I$(..)include -I. \
621 $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
934b77ac 622 $(libio-include) $(includes) \
dbe7a0f5 623 $(+sysdep-includes) $(last-includes) $(sysincludes)
28f540f4 624
96aa2d94 625# Since libio has several internal header files, we use a -I instead
762a2918 626# of many little headers in the include directory.
96aa2d94 627libio-include = -I$(..)libio
28f540f4
RM
628
629# These are the variables that the implicit compilation rules use.
ce460d04
RM
630# Note that we can't use -std=* in CPPFLAGS, because it overrides
631# the implicit -lang-asm and breaks cpp behavior for .S files--notably
632# it causes cpp to stop predefining __ASSEMBLER__.
3387a425 633CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
ae8b36f7 634 -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
0a951d0e 635 $(CPPFLAGS-$(suffix $@)) \
d29724f8
RM
636 $(foreach lib,$(libof-$(basename $(@F))) \
637 $(libof-$(<F)) $(libof-$(@F)),$(CPPFLAGS-$(lib))) \
0a951d0e 638 $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F)) $(CPPFLAGS-$(basename $(@F)))
ce460d04
RM
639override CFLAGS = -std=gnu99 \
640 $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
14e9dd67 641 $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
28f540f4 642
cc3fa755
UD
643# If everything is compiled with -fPIC (implicitly) we must tell this by
644# defining the PIC symbol.
645ifeq (yes,$(build-pic-default))
646pic-default = -DPIC
647endif
648
f0bf9cb9
RM
649# Enable object files for different versions of the library.
650# Various things use $(object-suffixes) to know what all to make.
651# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
652# to pass different flags for each flavor.
91641c65 653libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
a35cb74d 654all-object-suffixes := .o .os .op .og .ob .oS
650425ce 655object-suffixes :=
cc3fa755 656CPPFLAGS-.o = $(pic-default)
14e9dd67 657CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
66000494 658ifeq (yes,$(build-static))
f0bf9cb9 659libtype.o := lib%.a
650425ce
UD
660object-suffixes += .o
661endif
f0bf9cb9
RM
662ifeq (yes,$(build-shared))
663# Under --enable-shared, we will build a shared library of PIC objects.
40a55d20
UD
664# The PIC object files are named foo.os.
665object-suffixes += .os
b5567b2a 666CPPFLAGS-.os = -DPIC -DSHARED
14e9dd67 667CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
40a55d20 668libtype.os := lib%_pic.a
26b4d766
UD
669# This can be changed by a sysdep makefile
670pic-ccflag = -fPIC
f0bf9cb9
RM
671endif
672ifeq (yes,$(build-profile))
673# Under --enable-profile, we will build a static library of profiled objects.
40a55d20
UD
674# The profiled object files are named foo.op.
675object-suffixes += .op
cc3fa755 676CPPFLAGS-.op = -DPROF $(pic-default)
40a55d20
UD
677CFLAGS-.op = -pg
678libtype.op = lib%_p.a
f0bf9cb9
RM
679endif
680ifeq (yes,$(build-omitfp))
ab95290c 681# Under --enable-omitfp, we build the library optimized without
f0bf9cb9 682# debugging information using -fomit-frame-pointer, and build an extra
40a55d20
UD
683# library with debugging information. The debuggable objects are named foo.og.
684object-suffixes += .og
cc3fa755 685CPPFLAGS-.og = $(pic-default)
40a55d20 686CFLAGS-.og = -g
14e9dd67
UD
687CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
688CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
40a55d20 689libtype.og = lib%_g.a
f0bf9cb9 690endif
ab95290c
UD
691
692bppfx = BP-
5a97622d
UD
693ifeq (yes,$(build-bounded))
694# Under --enable-bounded, we build the library with `-fbounded-pointers -g'
40a55d20 695# to runtime bounds checking. The bounded-pointer objects are named foo.ob.
58ff985d
GM
696# We disable sibling-call optimizations so that stack traces will be complete
697# and thus aid debugging, since after all, BPs are a debugging tool.
40a55d20 698object-suffixes += .ob
ab95290c 699CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
e64911d1 700CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls -fno-strict-aliasing
40a55d20 701libtype.ob = lib%_b.a
5a97622d 702endif
f0bf9cb9 703
9afc8a59
UD
704object-suffixes-for-libc := $(object-suffixes)
705
706ifeq (yes,$(build-shared))
707# Build special library that contains the static-only routines for libc.
708object-suffixes-for-libc += .oS
709
710# Must build the routines as PIC, though, because they can end up in (users')
711# shared objects. We don't want to use CFLAGS-os because users may, for
712# example, make that processor-specific.
713CFLAGS-.oS = $(CFLAGS-.o) $(pic-ccflag)
6ca96fe2 714CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC
9afc8a59
UD
715libtype.oS = lib%_nonshared.a
716endif
717
718
28f540f4
RM
719+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
720
96bda0ea
RM
721ifndef BUILD_CC
722BUILD_CC = $(CC)
723endif
e72bfd87
UD
724
725move-if-change = $(SHELL) $(..)scripts/move-if-change
a641835a 726\f
281e6031
UD
727-include $(common-objpfx)sysd-dirs
728
729ifeq ($(sysd-dirs-done),t)
730-include $(common-objpfx)sysd-sorted
731subdirs = $(sorted-subdirs)
732endif
9a0a462c 733
4de1d597
RM
734ifeq (yes, $(build-shared))
735
f3787738
RM
736# This is a pair of implicit rules to preprocess a file with # comments,
737# %ifdef et al, based on config.h settings or other %include'd files.
738# We use chained rules instead of a pipeline here so that we can properly
739# check the exit status of cpp rather than using its bad output when there
740# is a preprocessing error. Another rule should depend on the output file
741# `FOO.v', and along with that `FOO.v.i' should be given dependencies
742# listing both its input files, and any header files that it may reference
743# (but no commands).
744%.v.i: $(common-objpfx)config.h
745 sed '/^[ ]*#/d;s/^[ ]*%/#/' $(filter-out FORCE %.h,$^) \
8027e188 746 | $(CC) -E -undef $(CPPFLAGS) \
f3787738
RM
747 -DASSEMBLER -x assembler-with-cpp - \
748 > $@T
749 mv -f $@T $@
750%.v: %.v.i
751 sed '/^[ ]*#/d;/^[ ]*$$/d' $< > $@T
752 mv -f $@T $@
480d827b 753
4de1d597
RM
754# Process the shlib-versions file, which tells us what shared library
755# version numbers to use when we install shared objects on this system.
281e6031
UD
756# We need to wait until $(subdirs) is complete.
757ifeq ($(sysd-sorted-done),t)
4de1d597 758-include $(common-objpfx)soversions.mk
eca3eb3b 759ifndef avoid-generated
f3787738
RM
760$(common-objpfx)shlib-versions.v.i: \
761 $(..)shlib-versions $(wildcard $(patsubst %, $(..)%/shlib-versions,\
762 $(add-ons) \
763 $(subdirs)))
764$(common-objpfx)soversions.i: $(common-objpfx)shlib-versions.v
a8c01776 765 default_setname='$(filter-out %_default,$(oldest-abi:%=GLIBC_%))'; \
f3787738
RM
766 while read conf version setname; do \
767 test -n "$$version" && \
768 test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
769 : "$$conf"` != 0 || continue; \
770 if test "x$$version" = xDEFAULT; then \
771 default_setname="$$setname"; \
772 else \
a8c01776 773 $(abi-default_setname) \
f3787738
RM
774 lib=`echo $$version | sed 's/=.*$$//'`; \
775 if eval test -z "\$${versioned_$${lib}}"; then \
776 eval versioned_$${lib}=yes; \
777 number=`echo $$version | sed "s/^.*=//"`; \
778 echo $$lib $$number $${setname:-$${default_setname}}; \
af260314 779 fi; \
f3787738
RM
780 fi; \
781 done < $< > $@T; exit 0
ba7e89ec
RM
782 mv -f $@T $@
783$(common-objpfx)soversions.mk: $(common-objpfx)soversions.i
1bc777b8
UD
784 (while read lib number setname; do \
785 case $$number in \
786 [0-9]*) echo "$$lib.so-version=.$$number"; \
787 echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
788 *) echo "$$lib.so-version=$$number"; \
789 echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
790 esac; \
791 done; \
792 echo soversions.mk-done = t;) < $< > $@T; exit 0
4de1d597 793 mv -f $@T $@
eca3eb3b 794endif
281e6031 795endif
eca3eb3b 796
f3787738
RM
797postclean-generated += soversions.mk soversions.i \
798 shlib-versions.v shlib-versions.v.i
4de1d597 799
c0e45674
UD
800# Generate the header containing the names of all shared libraries.
801# We use a stamp file to avoid uncessary recompilations.
802before-compile += $(common-objpfx)gnu/lib-names.h
1bc777b8 803ifeq ($(soversions.mk-done),t)
60c34a30 804$(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
ad10cac8
UD
805ifneq (,$(findstring aix,$(config-os)))
806$(common-objpfx)gnu/lib-names.stmp: $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h
807 $(make-target-directory)
808 @rm -f ${@:stmp=T} $@
809 @cp $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h $(common-objpfx)gnu
810 touch $@
811else
c0e45674
UD
812$(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
813 $(make-target-directory)
814 @rm -f ${@:stmp=T} $@
815 (echo '/* This file is automatically generated.';\
816 echo ' It defines macros to allow user program to find the shared';\
817 echo ' library files which come as part of GNU libc. */';\
818 echo '#ifndef __GNU_LIB_NAMES_H'; \
819 echo '#define __GNU_LIB_NAMES_H 1'; \
820 echo; \
821 (libs='$(all-sonames)';\
822 for l in $$libs; do \
a8322b4f
UD
823 name=`echo $$l | sed 's/.*=//'`; \
824 upname=`echo $$l | sed 's/=.*//' | \
7cc27f44
UD
825 tr 'abcdefghijklmnopqrstuvwxyz-' \
826 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
a8322b4f
UD
827 upname2=`echo $$name | sed 's/[.]so.*//' | \
828 tr 'abcdefghijklmnopqrstuvwxyz-' \
829 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
830 echo "#define $${upname}_SO \"$$name\""; \
831 if test $$upname != $$upname2; then \
832 echo "#define $${upname2}_SO \"$$name\""; \
833 fi; \
c0e45674
UD
834 done;) | sort; \
835 echo; \
836 echo '#endif /* gnu/lib-names.h */';) > ${@:stmp=T}
7e7a548e 837 $(move-if-change) ${@:stmp=T} ${@:stmp=h}
c0e45674 838 touch $@
1bc777b8 839endif
ad10cac8 840endif
c0e45674
UD
841
842common-generated += gnu/lib-names.h gnu/lib-names.stmp
d41c6f61
UD
843
844# The name under which the run-time dynamic linker is installed.
845# We are currently going for the convention that `/lib/ld.so.1'
846# names the SVR4/ELF ABI-compliant dynamic linker.
847ifndef rtld-installed-name
848ifdef ld.so-version
849rtld-installed-name = $(ld.so-version)
850else
851rtld-installed-name = ld.so.1
852endif
853endif
854
1ef32c3d
UD
855ifndef rtld-version-installed-name
856rtld-version-installed-name = ld-$(version).so
857endif
858
f649c201
UD
859endif # build-shared
860
cbdee279 861
94e365c6
UD
862ifeq ($(elf),yes)
863dlfcn = dlfcn
864ifeq ($(build-shared),yes)
865libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
866else
867libdl = $(common-objpfx)dlfcn/libdl.a
868endif
869else
ad10cac8
UD
870ifneq (,$(findstring aix,$(config-os)))
871ifeq ($(build-shared),yes)
872dlfcn = dlfcn
873libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
874else
875# No libdl without shared libs on AIX
876dlfcn =
877libdl =
878endif
879else
880# No ELF, no AIX - no libdl, at least for now.
94e365c6
UD
881dlfcn =
882libdl =
883endif
ad10cac8 884endif
94e365c6 885
bb41a976
UD
886# These are the subdirectories containing the library source. The order
887# is more or less arbitrary. The sorting step will take care of the
888# dependencies. Only the $(binfmt-subdir) should always be kept at the
889# end of the list.
8d6f1731 890all-subdirs = csu assert ctype locale intl catgets math setjmp signal \
934b77ac 891 stdlib stdio-common libio malloc string wcsmbs time dirent \
b0b67c47 892 grp pwd posix io termios resource misc socket sysvipc gmon \
b11f5954 893 gnulib iconv iconvdata wctype manual shadow po argp \
aaf688e8 894 crypt $(add-ons) nss localedata timezone rt conform debug \
63f791d3 895 $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
f3c1143b 896all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
bb41a976 897
b22fc5f5
UD
898# The mach and hurd subdirectories have many generated header files which
899# much of the rest of the library depends on, so it is best to build them
900# first (and mach before hurd, at that). The before-compile additions in
901# sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
902# not to exist when making in other directories, but it will be slower that
903# way with more somewhat expensive `make' invocations.
904subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
905 $(filter-out mach hurd,$(subdirs))
906
b7e2d9a5 907ifndef avoid-generated
9c4c0024 908all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
b22fc5f5 909$(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
0155a773
UD
910 $(AWK) 'BEGIN { subdirs = ""; inhibit = "" }; \
911 /^#/ { next }; \
912 /^[^-]/ { subdirs = subdirs " " $$0 }; \
913 /^-/ { inhibit = inhibit " " substr($$0, 2) }; \
914 END { printf "sysdep-subdirs =%s\n", subdirs; \
915 printf "sysdep-inhibit-subdirs =%s\n", inhibit; \
916 print "sysd-dirs-done = t" }' \
48252123 917 $(patsubst $<,/dev/null,$^) > $@-tmp
b22fc5f5
UD
918 mv -f $@-tmp $@
919
bb41a976
UD
920all-Depend-files = $(wildcard $(..)*/Depend)
921$(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
922 $(common-objpfx)sysd-dirs $(..)Makeconfig
281e6031
UD
923 { { dirs='$(patsubst $(..)%/Depend,$(..)%,$(filter %/Depend,$^))';\
924 for d in $$dirs; do \
925 while read on; do \
926 echo "depend $$d $$on"; \
927 done < $$d/Depend; \
928 done; \
929 for f in $(all-subdirs); do \
930 echo $$f; \
931 done; \
932 } | $(AWK) -f $< && \
933 echo sysd-sorted-done = t; \
934 } > $@-tmp
bb41a976 935 mv -f $@-tmp $@
b7e2d9a5 936endif
bb41a976 937
083973f3 938# Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here.
f1d71039
RM
939sysdep-makeconfigs := $(wildcard $(patsubst %,$(..)%/Makeconfig,\
940 $(config-sysdirs) $(add-ons)))
941
083973f3
RM
942ifneq (,$(sysdep-makeconfigs))
943include $(sysdep-makeconfigs)
944endif
945
946
28f540f4 947endif # Makeconfig not yet included
c238ecf7
UD
948
949# Local Variables:
950# mode: makefile
951# End: