]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
Tue Nov 7 12:29:46 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
[thirdparty/glibc.git] / Makeconfig
CommitLineData
28f540f4
RM
1# Copyright (C) 1991, 1992, 1993, 1994, 1995 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# Makefile configuration options for the GNU C library.
21#
22ifneq (,)
23This makefile requires GNU Make.
24endif
25
26ifneq "$(origin +included-Makeconfig)" "file"
27
28+included-Makeconfig := yes
29
30ifdef subdir
31.. := ../
32endif
33
34# If config.make exists, the source directory was configured,
35# so don't try to be clever and find another directory to build in.
36ifneq (,$(wildcard $(..)config.make))
37ARCH =
38machine =
39else # Not configured.
40ifndef ARCH
41ifdef machine
42ARCH = $(machine)
43endif # machine
44endif # ARCH
45endif # config.make
46
47# Directory for object files and libc.a. If this is not defined, the
48# object files live in the subdirectories where their sources live, and
49# libc.a lives in the parent directory (this probably doesn't work any
50# more).
51ifdef ARCH
52ifeq ($(filter /%,$(ARCH)),)
53objdir := $(..)$(ARCH)
54else
55objdir = $(ARCH)
56endif
57endif
58
59# $(common-objdir) is the place to put objects and
60# such that are not specific to a single subdir.
61ifdef objdir
62objpfx = $(objdir)/
63common-objpfx = $(objpfx)
64common-objdir = $(objdir)
65else
66objpfx :=
67ifdef ..
68common-objpfx = $(..)
69common-objdir = ..
70else
71# This is a kludge. make wizards might grok.
72common-objpfx = sysdeps/../
73common-objdir = .
74endif
75endif
76
28f540f4
RM
77
78# Get the values defined by options to `configure'.
79include $(common-objpfx)config.make
80
273d56ce
RM
81# Run config.status to update config.make and config.h. We don't show the
82# dependence of config.h to Make, because it is only touched when it
83# changes and so config.status would be run every time; the dependence of
84# config.make should suffice to force regeneration and re-exec, and the new
85# image will notice if config.h changed.
86$(common-objpfx)config.make: $(common-objpfx)config.status
87 cd $(<D); $(SHELL) $(<F)
88
28f540f4 89# Force the user to configure before making.
273d56ce
RM
90$(common-objpfx)config.status: $(..)configure
91 @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
92 echo The GNU C library has not been configured. >&2; \
93 echo Run \`configure\' to configure it before building. >&2; \
94 echo Try \`configure --help\' for more details. >&2; \
95 exit 1; fi
28f540f4
RM
96
97# Get the user's configuration parameters.
98ifneq ($(wildcard $(..)configparms),)
99include $(..)configparms
100endif
101ifneq ($(objpfx),)
102ifneq ($(wildcard $(objpfx)configparms),)
103include $(objpfx)configparms
104endif
105endif
106
107sysdep_dir := $(..)sysdeps
108export sysdep_dir := $(sysdep_dir)
109\f
110####
111#### These are the configuration variables. You can define values for
112#### the variables below in the file `configparms'.
113#### Do NOT edit this file.
114####
115
116
deab9dea
RM
117# Set this to either `stdio' or `libio', to compile in either GNU stdio
118# or GNU libio.
119ifndef stdio
120stdio = stdio
121endif
122
28f540f4 123# Common prefix for machine-independent installation directories.
487253ea 124ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
28f540f4
RM
125prefix = /usr/local
126endif
127
128# Common prefix for machine-dependent installation directories.
487253ea 129ifeq ($(origin exec_prefix),undefined)
28f540f4
RM
130exec_prefix = $(prefix)
131endif
132
133# Where to install the library and object files.
134ifndef libdir
135libdir = $(exec_prefix)/lib
136endif
137
138# Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
139# the prefix is spliced between `lib' and the name, so the linker switch
140# `-l$(libprefix)NAME' finds the library; for other files the prefix is
141# just prepended to the whole file name.
487253ea 142ifeq ($(origin libprefix),undefined)
28f540f4
RM
143libprefix =
144endif
145
146# Where to install the header files.
147ifndef includedir
148includedir = $(exec_prefix)/include
149endif
150
28f540f4 151# Where to install machine-independent data files.
a2fe9c76 152# These are the timezone database, and the locale database.
28f540f4
RM
153ifndef datadir
154datadir = $(prefix)/share
155endif
156
157# Where to install the timezone data files (which are machine-independent).
158ifndef zonedir
159zonedir = $(datadir)/zoneinfo
160endif
161
3ec41e03
RM
162# Where to install the locale and message catalog data files (which are
163# machine-independent).
a2fe9c76
RM
164ifndef localedir
165localedir = $(datadir)/locale
166endif
167
3ec41e03 168# Where to install the locale charmap source files.
a2fe9c76
RM
169ifndef nlsdir
170nlsdir = $(datadir)/nls
171endif
172
173
28f540f4
RM
174# Where to install programs.
175ifndef bindir
176bindir = $(exec_prefix)/bin
177endif
178
179# Where to install administrative programs.
180ifndef sbindir
181sbindir = $(exec_prefix)/sbin
182endif
183
184# Where to install the Info files.
185ifndef infodir
186infodir = $(prefix)/info
187endif
188
189# Where to install default configuration files. These include the local
190# timezone specification and network data base files.
191ifndef sysconfdir
192sysconfdir = $(prefix)/etc
193endif
194
195# What timezone should be the installed default (e.g., US/Eastern).
196# Run `make -C time echo-zonenames' to see a list of available zone names.
197# The local timezone can be changed with `zic -l TIMEZONE' at any time.
198ifndef localtime
199localtime = Factory
200endif
201
202# Where to install the "localtime" timezone file; this is the file whose
203# contents $(localtime) specifies. If this is a relative pathname, it is
204# relative to $(zonedir). It is a good idea to put this somewhere
205# other than there, so the zoneinfo directory contains only universal data,
206# localizing the configuration data elsewhere.
207ifndef localtime-file
208localtime-file = $(sysconfdir)/localtime
209endif
210
211# What timezone's DST rules should be used when a POSIX-style TZ
212# environment variable doesn't specify any rules. For 1003.1 compliance
213# this timezone must use rules that are as U.S. federal law defines DST.
214# Run `make -C time echo-zonenames' to see a list of available zone names.
215# This setting can be changed with `zic -p TIMEZONE' at any time.
216# If you want POSIX.1 compatibility, use `America/New_York'.
217ifndef posixrules
218posixrules = America/New_York
219endif
220
221# Where to install the "posixrules" timezone file; this is file
222# whose contents $(posixrules) specifies. If this is a relative
223# pathname, it is relative to $(zonedir).
224ifndef posixrules-file
225posixrules-file = posixrules
226endif
227
228
229# Directory where your system's native header files live.
230# This is used on Unix systems to generate some GNU libc header files.
231ifndef sysincludedir
232sysincludedir = /usr/include
233endif
234
235
236# Commands to install files.
237ifndef INSTALL_DATA
238INSTALL_DATA = $(INSTALL) -m 644
239endif
240ifndef INSTALL_PROGRAM
241INSTALL_PROGRAM = $(INSTALL)
242endif
243ifndef INSTALL
244INSTALL = install
245endif
246
247
248# The name of the C compiler.
249# If you've got GCC, and it works, use it.
250ifeq ($(origin CC),default)
251CC := gcc
252endif
253
254# The name of the C compiler to use for compilations of programs to run on
255# the host that is building the library. If you set CC to a
256# cross-compiler, you must set this to the normal compiler.
257ifndef BUILD_CC
258BUILD_CC = $(CC)
259endif
260
261# Default flags to pass the C compiler.
262ifndef default_cflags
263default_cflags := -g
264endif
265
266# Flags to pass the C compiler when assembling preprocessed assembly code
267# (`.S' files). On some systems the assembler doesn't understand the `#' line
268# directives the preprocessor produces. If you have troubling compiling
269# assembly code, try using -P here to suppress these directives.
270ifndef asm-CPPFLAGS
271asm-CPPFLAGS =
272endif
273
274# Command for linking programs with the C library.
275ifndef +link
8e3cc80f
RM
276+link = $(CC) -nostdlib -nostartfiles -o $@ \
277 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) \
278 $(addprefix $(csu-objpfx),start.o $(+preinit)) \
279 $(^:$(common-objpfx)libc.a=$(link-libc)) \
280 $(addprefix $(csu-objpfx),$(+postinit))
28f540f4 281endif
b122c703
RM
282ifndef config-LDFLAGS
283ifeq (yes,$(build-shared))
db65048b 284config-LDFLAGS = -Wl,-dynamic-linker=$(libdir)/$(rtld-installed-name)
b122c703
RM
285endif
286endif
3fe9de0d
RM
287ifndef link-libc
288ifeq (yes,$(build-shared))
8e3cc80f
RM
289link-libc = -Wl,-rpath-link=$(common-objdir) -Wl,-rpath=$(libdir) \
290 $(common-objpfx)libc.so $(gnulib)
3fe9de0d
RM
291else
292link-libc = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
293endif
294endif
28f540f4
RM
295ifndef gnulib
296gnulib := -lgcc
297endif
96f873b9
RM
298ifeq ($(elf),yes)
299+preinit = crti.o
300+postinit = crtn.o
301endif
302ifdef objpfx
303csu-objpfx = $(objpfx)
03a75825 304elf-objpfx = $(objpfx)
96f873b9 305else
883bc19b 306csu-objpfx = $(..)csu/
03a75825 307elf-objpfx = $(..)elf/
96f873b9 308endif
28f540f4 309
b122c703
RM
310ifeq (yes,$(build-shared))
311ifndef rtld-installed-name
312rtld-installed-name = ld.so
313endif
314endif
315
03a75825
RM
316# How to run a program we just linked with our library.
317# The program binary is assumed to be $(word 2,$^).
318built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
319ifneq (yes,$(build-shared))
320built-program-cmd = $(built-program-file)
321else
322, = ,
323define built-program-cmd
324LD_LIBRARY_PATH=$(common-objdir)$(patsubst -Wl$,-rpath-link=%,:%,\
325 $(filter -Wl$,-rpath-link=%,\
326 $(sysdep-LDFLAGS))) \
327$(elf-objpfx)ld.so $(built-program-file)
328endef
329endif
330
28f540f4
RM
331ifndef LD
332LD := ld -X
333endif
334
335ifndef RANLIB
336RANLIB = ranlib
337endif
338
339# Extra flags to pass to GCC.
bf40c56f 340+gccwarn := -Wall -Wwrite-strings -Wno-parentheses -Winline
28f540f4
RM
341
342# This is the program that generates makefile
343# dependencies from C source files.
344ifndef +mkdep
345+mkdep = $(CC) -M
346endif
347
348# The program that makes Emacs-style TAGS files.
349ETAGS := etags -T
350
351# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
352# perhaps others) to preprocess assembly code in some cases.
353M4 = m4
354
355####
356#### End of configuration variables.
357####
358\f
359# This tells some versions of GNU make before 3.63 not to export all variables.
360.NOEXPORT:
361
362# We want to echo the commands we're running without
363# umpteem zillion filenames along with it (we use `...' instead)
364# but we don't want this echoing done when the user has said
365# he doesn't want to see commands echoed by using -s.
366ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
367+cmdecho := echo >/dev/null
368else # not -s
369+cmdecho := echo
370endif # -s
371
372# These are the flags given to the compiler to tell
373# it what sort of optimization and/or debugging output to do.
374ifndef +cflags
375# If `CFLAGS' was defined, use that.
376ifdef CFLAGS
377+cflags := $(filter-out -I%,$(CFLAGS))
378endif # CFLAGS
379endif # +cflags
380
381# If none of the above worked, default to "-g".
382ifeq "$(strip $(+cflags))" ""
383+cflags := $(default_cflags)
384endif # $(+cflags) == ""
385
386# If using gcc, add flags that only it will grok.
387ifneq "$(findstring gcc,$(CC))" ""
388+cflags := $(+cflags) $(+gccwarn)
389+gcc-nowarn := -w
390else
391+gcc-nowarn :=
392endif # gcc
393
394# Don't duplicate options if we inherited variables from the parent.
395+cflags := $(sort $(+cflags))
396
397
398# These are flags given to the C compiler to tell it to look for include
399# files (including ones given in angle brackets) in the current directory
400# and in the parent library source directory.
401# `+sysdep-includes' will be defined by Makerules.
402+includes = -I. $(filter-out -I,-I$(patsubst %/,%,$(..))) \
403 $(includes) $(+sysdep-includes) $(last-includes)
404
405
406# These are the variables that the implicit compilation rules use.
407CPPFLAGS = $(+includes) $(defines) -include $(..)libc-symbols.h \
53afa8d9
RM
408 $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@))
409override CFLAGS = $(+cflags) $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@))
28f540f4
RM
410
411
412# This is the macro that the implicit linking rules use.
413ifneq "$(filter -g,$(+cflags))" "" # -g is in $(+cflags)
414LDFLAGS := -g
415endif
416
f0bf9cb9
RM
417
418# Enable object files for different versions of the library.
419# Various things use $(object-suffixes) to know what all to make.
420# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
421# to pass different flags for each flavor.
422libtypes = $(foreach o,$(object-suffixes),$(libtype$o))
423object-suffixes := .o
424libtype.o := lib%.a
425ifeq (yes,$(build-shared))
426# Under --enable-shared, we will build a shared library of PIC objects.
427# The PIC object files are named foo.so.
428object-suffixes += .so
429CPPFLAGS-.so = -DPIC
430CFLAGS-.so = -fPIC
431libtype.so := lib%_pic.a
432endif
433ifeq (yes,$(build-profile))
434# Under --enable-profile, we will build a static library of profiled objects.
435# The profiled object files are named foo.po.
436object-suffixes += .po
437CFLAGS-.po = -p
438libtype.po = lib%_p.a
439endif
440ifeq (yes,$(build-omitfp))
441# Under --enable-omitfp, we build an the library optimized without
442# debugging information using -fomit-frame-pointer, and build an extra
443# library with debugging information. The debuggable objects are named foo.go.
444object-suffixes += .go
445CFLAGS-.go = -g
446CFLAGS-.o = -g0 -O99 -fomit-frame-pointer
447CFLAGS-.so += $(CFLAGS.o)
448libtype.go = lib%_g.a
449endif
450
451
28f540f4
RM
452+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
453
454ifneq ($(BUILD_CC),$(CC))
455cross-compiling := yes
456else
457cross-compiling := no
458endif
459
460
461endif # Makeconfig not yet included