Fix overfull hbox.
[glibc/history.git] / Makeconfig
blob8d5472c96c8aaffae23418d6501d70273b92d356
1 # Copyright (C) 1991, 1992 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
16 # not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 # Cambridge, MA 02139, USA.
20 #       Makefile configuration options for the GNU C library.
22 ifneq (,)
23 This makefile requires GNU Make.
24 endif
26 ifneq "$(origin +included-Makeconfig)" "file"
28 +included-Makeconfig := yes
30 ifdef subdir
31 .. := ../
32 endif
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.
36 ifneq (,$(wildcard $(..)config.make))
37 ARCH =
38 machine =
39 else    # Not configured.
40 ifndef ARCH
41 ifdef machine
42 ARCH = $(machine)
43 endif # machine
44 endif # ARCH
45 endif # config.make
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).
51 ifdef ARCH
52 ifeq ($(filter /%,$(ARCH)),)
53 objdir := $(..)$(ARCH)
54 else
55 objdir = $(ARCH)
56 endif
57 endif
59 # $(common-objdir) is the place to put objects and 
60 # such that are not specific to a single subdir.
61 ifdef objdir
62 objpfx = $(objdir)/
63 common-objpfx = $(objpfx)
64 common-objdir = $(objdir)
65 else
66 objpfx :=
67 ifdef ..
68 common-objpfx = $(..)
69 common-objdir = ..
70 else
71 # This is a kludge.  make wizards might grok.
72 common-objpfx = sysdeps/../
73 endif
74 endif
76 libc.a = $(common-objpfx)libc.a
79 # Get the values defined by options to `configure'.
80 include $(common-objpfx)config.make
82 # Force the user to configure before making.
83 $(objpfx)config.make:
84         @echo The GNU C library has not been configured. >&2
85         @echo Run \`configure\' to configure it before building. >&2
86         @exit 1
88 # Get the user's configuration parameters.
89 ifneq ($(wildcard $(..)configparms),)
90 include $(..)configparms
91 endif
92 ifneq ($(objpfx),)
93 ifneq ($(wildcard $(objpfx)configparms),)
94 include $(objpfx)configparms
95 endif
96 endif
98 ####
99 ####    These are the configuration variables.  You can define values for
100 ####    the variables below in the file `configparms'.
101 ####    Do NOT edit this file.
102 ####
105 # Common prefix for machine-independent installation directories.
106 ifndef prefix
107 prefix = /usr/local
108 endif
110 # Common prefix for machine-dependent installation directories.
111 ifndef exec_prefix
112 exec_prefix = $(prefix)
113 endif
115 # Where to install the library and object files.
116 ifndef libdir
117 libdir = $(exec_prefix)/lib
118 endif
120 # Where to install the header files.
121 ifndef includedir
122 includedir = $(exec_prefix)/include
123 endif
125 # Define if the library should install its own <stddef.h>.
126 # Do this unless you are using version 2.2 or later of GCC.
127 ifndef stddef.h
128 stddef.h = stddef.h
129 endif
131 # Define if the library should install its own <stdarg.h>.
132 # Do this unless you are using version 2.3 or later of GCC.
133 ifndef stdarg.h
134 stdarg.h := stdarg.h $(wildcard va-*.h)
135 endif
137 # Where to install machine-independent data files.
138 # These are the timezone database, and eventually the locale database.
139 ifndef datadir
140 datadir = $(prefix)/lib
141 endif
143 # Where to install programs.
144 ifndef bindir
145 bindir = $(exec_prefix)/bin
146 endif
148 # What timezone should be the installed default (e.g., US/Eastern).
149 # Run `make -C time echo-zonenames' to see a list of available zone names.
150 # The local timezone can be changed with `zic -l TIMEZONE' at any time.
151 ifndef localtime
152 localtime = Factory
153 endif
155 # Where to install the "localtime" timezone file; this is the file
156 # whose contents $(localtime) specifies.  If this is a relative
157 # pathname, it is relative to $(datadir)/zoneinfo.
158 ifndef localtime-file
159 localtime-file = $(prefix)/etc/localtime
160 endif
162 # What timezone's DST rules should be used when a POSIX-style TZ
163 # environment variable doesn't specify any rules.  For 1003.1 compliance
164 # this timezone must use rules that are as U.S. federal law defines DST.
165 # Run `make -C time echo-zonenames' to see a list of available zone names.
166 # This setting can be changed with `zic -p TIMEZONE' at any time.
167 ifndef posixrules
168 posixrules = US/Eastern
169 endif
171 # Where to install the "posixrules" timezone file; this is file
172 # whose contents $(posixrules) specifies.  If this is a relative
173 # pathname, it is relative to $(datadir)/zoneinfo.
174 ifndef posixrules-file
175 posixrules-file = posixrules
176 endif
179 # Directory where your system's native header files live.
180 # This is used on Unix systems to generate some GNU libc header files.
181 ifndef sysincludedir
182 sysincludedir = /usr/include
183 endif
186 # Commands to install files.
187 ifndef INSTALL_DATA
188 INSTALL_DATA = $(INSTALL) -m 644
189 endif
190 ifndef INSTALL_PROGRAM
191 INSTALL_PROGRAM = $(INSTALL)
192 endif
193 ifndef INSTALL
194 INSTALL = install
195 endif
198 # The name of the C compiler.
199 # If you've got GCC, and it works, use it.
200 ifeq ($(origin CC),default)
201 CC := gcc
202 endif
204 # These are preprocessor macros we want to predefine.  Define HAVE_GNU_LD
205 # if using GNU ld (which you should do if possible).  If you do this, you
206 # may need the GNU assembler as well.  If you don't do this, your library
207 # won't work as well (and won't be strictly compliant with the ANSI C
208 # and POSIX.1 standards).
209 +defines = $(config-defines) $(defines)
211 # Default flags to pass the C compiler.
212 ifndef default_cflags
213 +default_cflags := -g
214 endif
216 # Flags to pass the C compiler when assembling preprocessed assembly code
217 # (`.S' files).  On some systems the assembler doesn't understand the `#' line
218 # directives the preprocessor produces.  If you have troubling compiling
219 # assembly code, try using -P here to suppress these directives.
220 ifndef asm-CPPFLAGS
221 asm-CPPFLAGS =
222 endif
224 # Command for linking programs with the C library.
225 ifndef +link
226 +link = $(CC) -nostdlib -o $@ $(common-objpfx)start.o $(^:lib=$(libc.a)) \
227         $(gnulib) $(libc.a)
228 endif
229 ifndef gnulib
230 gnulib := -lgcc
231 endif
233 ifndef LD
234 LD := ld -X
235 endif
237 ifndef  RANLIB
238 RANLIB = ranlib
239 endif
241 # Define non-empty if the C compiler understands -v (print version).
242 +cc_version = $(filter gcc,$(notdir $(firstword $(CC)))) # if using gcc
244 # Extra flags to pass to GCC.
245 +gccwarn := -Wall -Wwrite-strings
246 +gccopt := -fstrength-reduce
248 # This is the program that generates makefile
249 # dependencies from C source files.
250 ifndef +mkdep
251 +mkdep = $(CC) -M
252 endif
254 # The program that makes Emacs-style TAGS files.
255 ETAGS   := etags -T
257 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
258 # perhaps others) to preprocess assembly code in some cases.
259 M4 = m4
261 ####
262 #### End of configuration variables.
263 ####
265 # This tells some versions of GNU make before 3.63 not to export all variables.
266 .NOEXPORT:
268 # We want to echo the commands we're running without
269 # umpteem zillion filenames along with it (we use `...' instead)
270 # but we don't want this echoing done when the user has said
271 # he doesn't want to see commands echoed by using -s.
272 ifneq   "$(findstring s,$(MAKEFLAGS))" ""       # if -s
273 +cmdecho        := echo >/dev/null
274 else                                            # not -s
275 +cmdecho        := echo
276 endif                                           # -s
278 # These are the flags given to the compiler to tell
279 # it what sort of optimization and/or debugging output to do.
280 ifndef  +cflags
281 # If `CFLAGS' was defined, use that.
282 ifdef           CFLAGS
283 +cflags := $(filter-out -I%,$(CFLAGS))
284 endif           # CFLAGS
285 endif   # +cflags
287 # If none of the above worked, default to "-g".
288 ifeq    "$(strip $(+cflags))" ""
289 +cflags := $(+default_cflags)
290 endif   # $(+cflags) == ""
292 # If using gcc, add flags that only it will grok.
293 ifneq   "$(findstring gcc,$(CC))" ""
294 +cflags := $(+cflags) $(+gccwarn)
295 ifneq   "$(filter -O,$(+cflags))" ""
296 +cflags := $(+cflags) $(+gccopt)
297 +gcc-nowarn := -w
298 endif
299 else
300 +gcc-nowarn :=
301 endif   # gcc
303 # Don't duplicate options if we inherited variables from the parent.
304 +cflags := $(sort $(+cflags))
307 ifneq   "$(findstring v,$(MAKEFLAGS))" ""       # if -v
308 ifneq   "$(strip $(+cc_version))" ""
309 # If Make is telling us version info, tell the compiler to do so as well.
310 CC      := $(CC) -v
311 endif   # +cc_version
312 endif                                           # -v
314 # These are flags given to the C compiler to
315 # tell it to look for include files (including ones
316 # given in angle brackets) in the current directory
317 # and in the parent library source directory.
318 ifneq "$(..)" ""
319 +includes       = -I. -I$(patsubst %/,%,$(..)) $(includes)
320 else
321 +includes       = -I. $(includes)
322 endif
325 # These are the variables that the implicit compilation rules use.
326 CPPFLAGS = $(+includes) $(+defines) -DLIBC
327 override CFLAGS = $(+cflags)
330 # This is the macro that the implicit linking rules use.
331 ifneq "$(filter -g,$(+cflags))" "" # -g is in $(+cflags)
332 LDFLAGS := -g
333 endif
336 ifneq "$(filter -DHAVE_GNU_LD,$(CPPFLAGS))" ""
337 +gnu-stabs := yes
338 endif
341 endif # Makeconfig not yet included