1 # Copyright (C) 1991, 1992, 1993, 1994, 1995 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.
23 This makefile requires GNU Make.
26 ifneq "$(origin +included-Makeconfig)" "file"
28 +included-Makeconfig := yes
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))
39 else # Not configured.
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
52 ifeq ($(filter /%,$(ARCH)),)
53 objdir := $(..)$(ARCH)
59 # $(common-objdir) is the place to put objects and
60 # such that are not specific to a single subdir.
63 common-objpfx = $(objpfx)
64 common-objdir = $(objdir)
71 # This is a kludge. make wizards might grok.
72 common-objpfx = sysdeps/../
78 # Get the values defined by options to `configure'.
79 include $(common-objpfx)config.make
81 # Force the user to configure before making.
82 $(common-objpfx)config.make:
83 @echo The GNU C library has not been configured. >&2
84 @echo Run \`configure\' to configure it before building. >&2
87 # Get the user's configuration parameters.
88 ifneq ($(wildcard $(..)configparms),)
89 include $(..)configparms
92 ifneq ($(wildcard $(objpfx)configparms),)
93 include $(objpfx)configparms
97 sysdep_dir := $(..)sysdeps
98 export sysdep_dir := $(sysdep_dir)
101 #### These are the configuration variables. You can define values for
102 #### the variables below in the file `configparms'.
103 #### Do NOT edit this file.
107 # Common prefix for machine-independent installation directories.
112 # Common prefix for machine-dependent installation directories.
114 exec_prefix = $(prefix)
117 # Where to install the library and object files.
119 libdir = $(exec_prefix)/lib
122 # Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
123 # the prefix is spliced between `lib' and the name, so the linker switch
124 # `-l$(libprefix)NAME' finds the library; for other files the prefix is
125 # just prepended to the whole file name.
130 # Where to install the header files.
132 includedir = $(exec_prefix)/include
135 # Where to install machine-independent data files.
136 # These are the timezone database, and eventually the locale database.
138 datadir = $(prefix)/share
141 # Where to install the timezone data files (which are machine-independent).
143 zonedir = $(datadir)/zoneinfo
146 # Where to install programs.
148 bindir = $(exec_prefix)/bin
151 # Where to install administrative programs.
153 sbindir = $(exec_prefix)/sbin
156 # Where to install the Info files.
158 infodir = $(prefix)/info
161 # Where to install default configuration files. These include the local
162 # timezone specification and network data base files.
164 sysconfdir = $(prefix)/etc
167 # What timezone should be the installed default (e.g., US/Eastern).
168 # Run `make -C time echo-zonenames' to see a list of available zone names.
169 # The local timezone can be changed with `zic -l TIMEZONE' at any time.
174 # Where to install the "localtime" timezone file; this is the file whose
175 # contents $(localtime) specifies. If this is a relative pathname, it is
176 # relative to $(zonedir). It is a good idea to put this somewhere
177 # other than there, so the zoneinfo directory contains only universal data,
178 # localizing the configuration data elsewhere.
179 ifndef localtime-file
180 localtime-file = $(sysconfdir)/localtime
183 # What timezone's DST rules should be used when a POSIX-style TZ
184 # environment variable doesn't specify any rules. For 1003.1 compliance
185 # this timezone must use rules that are as U.S. federal law defines DST.
186 # Run `make -C time echo-zonenames' to see a list of available zone names.
187 # This setting can be changed with `zic -p TIMEZONE' at any time.
188 # If you want POSIX.1 compatibility, use `America/New_York'.
190 posixrules = America/New_York
193 # Where to install the "posixrules" timezone file; this is file
194 # whose contents $(posixrules) specifies. If this is a relative
195 # pathname, it is relative to $(zonedir).
196 ifndef posixrules-file
197 posixrules-file = posixrules
201 # Directory where your system's native header files live.
202 # This is used on Unix systems to generate some GNU libc header files.
204 sysincludedir = /usr/include
208 # Commands to install files.
210 INSTALL_DATA = $(INSTALL) -m 644
212 ifndef INSTALL_PROGRAM
213 INSTALL_PROGRAM = $(INSTALL)
220 # The name of the C compiler.
221 # If you've got GCC, and it works, use it.
222 ifeq ($(origin CC),default)
226 # The name of the C compiler to use for compilations of programs to run on
227 # the host that is building the library. If you set CC to a
228 # cross-compiler, you must set this to the normal compiler.
233 # Default flags to pass the C compiler.
234 ifndef default_cflags
238 # Flags to pass the C compiler when assembling preprocessed assembly code
239 # (`.S' files). On some systems the assembler doesn't understand the `#' line
240 # directives the preprocessor produces. If you have troubling compiling
241 # assembly code, try using -P here to suppress these directives.
246 # Command for linking programs with the C library.
248 +link = $(CC) -nostdlib $(LDFLAGS) -o $@ \
249 $(addprefix $(csu-objpfx),start.o $(+preinit)) \
250 $(^:lib=$(common-objpfx)libc.a) $(gnulib) $(common-objpfx)libc.a \
251 $(addprefix $(csu-objpfx),$(+postinit))
261 csu-objpfx = $(objpfx)
263 csu-objpfx = $(..)csu/
274 # Extra flags to pass to GCC.
275 +gccwarn := -Wall -Wwrite-strings -Wno-parentheses
277 # This is the program that generates makefile
278 # dependencies from C source files.
283 # The program that makes Emacs-style TAGS files.
286 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
287 # perhaps others) to preprocess assembly code in some cases.
291 #### End of configuration variables.
294 # This tells some versions of GNU make before 3.63 not to export all variables.
297 # We want to echo the commands we're running without
298 # umpteem zillion filenames along with it (we use `...' instead)
299 # but we don't want this echoing done when the user has said
300 # he doesn't want to see commands echoed by using -s.
301 ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
302 +cmdecho := echo >/dev/null
307 # These are the flags given to the compiler to tell
308 # it what sort of optimization and/or debugging output to do.
310 # If `CFLAGS' was defined, use that.
312 +cflags := $(filter-out -I%,$(CFLAGS))
316 # If none of the above worked, default to "-g".
317 ifeq "$(strip $(+cflags))" ""
318 +cflags := $(default_cflags)
319 endif # $(+cflags) == ""
321 # If using gcc, add flags that only it will grok.
322 ifneq "$(findstring gcc,$(CC))" ""
323 +cflags := $(+cflags) $(+gccwarn)
329 # Don't duplicate options if we inherited variables from the parent.
330 +cflags := $(sort $(+cflags))
333 # These are flags given to the C compiler to tell it to look for include
334 # files (including ones given in angle brackets) in the current directory
335 # and in the parent library source directory.
336 # `+sysdep-includes' will be defined by Makerules.
337 +includes = -I. $(filter-out -I,-I$(patsubst %/,%,$(..))) \
338 $(includes) $(+sysdep-includes) $(last-includes)
341 # These are the variables that the implicit compilation rules use.
342 CPPFLAGS = $(+includes) $(defines) -include $(..)libc-symbols.h \
343 $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@))
344 override CFLAGS = $(+cflags) $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@))
347 # This is the macro that the implicit linking rules use.
348 ifneq "$(filter -g,$(+cflags))" "" # -g is in $(+cflags)
353 # Enable object files for different versions of the library.
354 # Various things use $(object-suffixes) to know what all to make.
355 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
356 # to pass different flags for each flavor.
357 libtypes = $(foreach o,$(object-suffixes),$(libtype$o))
358 object-suffixes := .o
360 ifeq (yes,$(build-shared))
361 # Under --enable-shared, we will build a shared library of PIC objects.
362 # The PIC object files are named foo.so.
363 object-suffixes += .so
366 libtype.so := lib%_pic.a
368 ifeq (yes,$(build-profile))
369 # Under --enable-profile, we will build a static library of profiled objects.
370 # The profiled object files are named foo.po.
371 object-suffixes += .po
373 libtype.po = lib%_p.a
375 ifeq (yes,$(build-omitfp))
376 # Under --enable-omitfp, we build an the library optimized without
377 # debugging information using -fomit-frame-pointer, and build an extra
378 # library with debugging information. The debuggable objects are named foo.go.
379 object-suffixes += .go
381 CFLAGS-.o = -g0 -O99 -fomit-frame-pointer
382 CFLAGS-.so += $(CFLAGS.o)
383 libtype.go = lib%_g.a
387 +gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
389 ifneq ($(BUILD_CC),$(CC))
390 cross-compiling := yes
392 cross-compiling := no
396 endif # Makeconfig not yet included