]> sourceware.org Git - glibc.git/blame - Makefile
Update.
[glibc.git] / Makefile
CommitLineData
ec503662 1# Copyright (C) 1991-2002, 2003 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# Master Makefile for the GNU C library
21#
22ifneq (,)
23This makefile requires GNU Make.
24endif
25
aa802e96
UD
26include Makeconfig
27
28f540f4
RM
28
29# This is the default target; it makes everything except the tests.
30.PHONY: all
edf5b2d7 31all: lib others
28f540f4 32\f
1400de2e
RM
33ifneq ($(AUTOCONF),no)
34
4d06461a 35ifeq ($(with-cvs),yes)
1400de2e 36define autoconf-it-cvs
379bb425 37test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
28f540f4 38endef
4d06461a 39else
1400de2e
RM
40autoconf-it-cvs =
41endif
42
4d06461a
UD
43define autoconf-it
44@-rm -f $@.new
1400de2e 45$(AUTOCONF) $(ACFLAGS) $< > $@.new
4d06461a
UD
46chmod a-w,a+x $@.new
47mv -f $@.new $@
1400de2e 48$(autoconf-it-cvs)
4d06461a 49endef
c8d32817 50
dbdb6189
RM
51configure: configure.in aclocal.m4; $(autoconf-it)
52%/configure: %/configure.in aclocal.m4; $(autoconf-it)
28f540f4 53
1400de2e
RM
54endif # $(AUTOCONF) = no
55
56
57# We don't want to run anything here in parallel.
58.NOTPARALLEL:
59
28f540f4 60# These are the targets that are made by making them in each subdirectory.
edf5b2d7
UD
61+subdir_targets := subdir_lib objects objs others subdir_mostlyclean \
62 subdir_clean subdir_distclean subdir_realclean \
c238ecf7 63 tests xtests subdir_lint.out \
c823a4d2 64 subdir_update-abi subdir_check-abi subdir_distinfo \
28f540f4 65 subdir_echo-headers subdir_echo-distinfo \
57ba7bb4 66 subdir_install \
3c5edd4d 67 subdir_testclean \
57ba7bb4 68 $(addprefix install-, no-libc.a bin lib data headers others)
28f540f4 69\f
739d440d
UD
70headers := limits.h values.h features.h gnu-versions.h bits/libc-lock.h \
71 bits/xopen_lim.h gnu/libc-version.h
28f540f4
RM
72
73echo-headers: subdir_echo-headers
74
762a2918
UD
75# The headers are in the include directory.
76subdir-dirs = include
77vpath %.h $(subdir-dirs)
78
28f540f4 79# What to install.
8d57beea 80install-others = $(inst_includedir)/gnu/stubs.h
6c3ebebd 81install-bin-script = glibcbug
56552e42 82
a18f587d 83ifeq (yes,$(build-shared))
6736e93b 84headers += gnu/lib-names.h
a18f587d 85endif
28f540f4 86
28f540f4
RM
87include Makerules
88
737547be 89ifeq ($(build-programs),yes)
6c3ebebd 90others: $(addprefix $(objpfx),$(install-bin-script))
737547be
UD
91endif
92
28f540f4
RM
93# Install from subdirectories too.
94install: subdir_install
8d57beea 95
6736e93b
UD
96# Explicit dependency so that `make install-headers' works
97install-headers: install-headers-nosubdir
98
5148d49f
UD
99# Make sure that the dynamic linker is installed before libc.
100$(inst_slibdir)/libc-$(version).so: elf/ldso_install
101
102.PHONY: elf/ldso_install
103elf/ldso_install:
104 $(MAKE) -C $(@D) $(@F)
105
b43b13ac 106# Create links for shared libraries using the `ldconfig' program if possible.
7cc27f44 107# Ignore the error if we cannot update /etc/ld.so.cache.
1ef32c3d
UD
108ifeq (no,$(cross-compiling))
109ifeq (yes,$(build-shared))
409dfcea
UD
110install: install-symbolic-link
111.PHONY: install-symbolic-link
112install-symbolic-link: subdir_install
9d141cae 113 $(symbolic-link-prog) $(symbolic-link-list)
7ef90c15 114 rm -f $(symbolic-link-list)
9d141cae 115
8d57beea 116install:
b4a555d6 117 -test ! -x $(common-objpfx)elf/ldconfig || LC_ALL=C LANGUAGE=C \
03c0d6ef 118 $(common-objpfx)elf/ldconfig $(addprefix -r ,$(install_root)) \
5732c4df 119 $(slibdir) $(libdir)
cc3fa755
UD
120ifneq (no,$(PERL))
121ifeq (/usr,$(prefix))
122ifeq (,$(install_root))
5bc2f642 123 CC="$(CC)" $(PERL) scripts/test-installation.pl $(common-objpfx)
cc3fa755
UD
124endif
125endif
126endif
1ef32c3d
UD
127endif
128endif
28f540f4 129
01a36ad3
RM
130# Build subdirectory lib objects.
131lib-noranlib: subdir_lib
28f540f4 132
01a36ad3
RM
133ifeq (yes,$(build-shared))
134# Build the shared object from the PIC object library.
135lib: $(common-objpfx)libc.so
136endif
9bfce4bf
RM
137
138
139# This is a handy script for running any dynamically linked program against
140# the current libc build for testing.
141$(common-objpfx)testrun.sh: $(common-objpfx)config.make \
142 $(..)Makeconfig $(..)Makefile
143 (echo '#!/bin/sh'; \
144 echo "GCONV_PATH='$(common-objpfx)iconvdata' \\"; \
145 echo 'exec $(run-program-prefix) $${1+"$$@"}'; \
146 ) > $@T
147 chmod a+x $@T
148 mv -f $@T $@
149postclean-generated += testrun.sh
150
151others: $(common-objpfx)testrun.sh
28f540f4 152\f
97a47867
UD
153# Makerules creates a file `stubs' in each subdirectory, which
154# contains `#define __stub_FUNCTION' for each function defined in that
155# directory which is a stub.
6bc31da0 156# Here we paste all of these together into <gnu/stubs.h>.
28f540f4 157
97a47867 158subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)$(dir)/stubs)
28f540f4
RM
159
160# Since stubs.h is never needed when building the library, we simplify the
161# hairy installation process by producing it in place only as the last part
b9b49b44
UD
162# of the top-level `make install'. It depends on subdir_install, which
163# iterates over all the subdirs; subdir_install in each subdir depends on
164# the subdir's stubs file. Having more direct dependencies would result in
165# extra iterations over the list for subdirs and many recursive makes.
d62507dd 166$(inst_includedir)/gnu/stubs.h: include/stubs-prologue.h subdir_install
5107cf1d 167 $(make-target-directory)
28f540f4 168 @rm -f $(objpfx)stubs.h
d62507dd 169 (sed '/^@/d' $<; LC_ALL=C sort $(subdir-stubs)) > $(objpfx)stubs.h
13a0be88 170 if test -r $@ && cmp -s $(objpfx)stubs.h $@; \
ba1ffaa1 171 then echo 'stubs.h unchanged'; \
d36e7692 172 else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
28f540f4
RM
173 rm -f $(objpfx)stubs.h
174\f
df4ef2ab
UD
175# The `glibcbug' script contains the version number and it shall be rebuild
176# whenever this changes or the `glibcbug.in' file.
5290baf0 177$(objpfx)glibcbug: $(common-objpfx)config.status glibcbug.in
af3878df 178 cd $(<D) && CONFIG_FILES=$(@F) CONFIG_HEADERS= $(SHELL) $(<F)
df4ef2ab 179\f
28f540f4 180# This makes the Info or DVI file of the documentation from the Texinfo source.
fef0b717
UD
181.PHONY: info dvi pdf html
182info dvi pdf html:
c0e45674 183 $(MAKE) $(PARALLELMFLAGS) -C manual $@
28f540f4
RM
184\f
185# This makes all the subdirectory targets.
186
187# For each target, make it depend on DIR/target for each subdirectory DIR.
188$(+subdir_targets): %: $(addsuffix /%,$(subdirs))
189
190# Compute a list of all those targets.
191all-subdirs-targets := $(foreach dir,$(subdirs),\
192 $(addprefix $(dir)/,$(+subdir_targets)))
193
194# The action for each of those is to cd into the directory and make the
195# target there.
196$(all-subdirs-targets):
c0e45674 197 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
28f540f4
RM
198
199.PHONY: $(+subdir_targets) $(all-subdirs-targets)
200\f
201# Targets to clean things up to various degrees.
202
3c5edd4d
UD
203.PHONY: clean realclean distclean distclean-1 parent-clean parent-mostlyclean \
204 tests-clean
28f540f4
RM
205
206# Subroutines of all cleaning targets.
207parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules.
4ddde9ee 208 -rm -f $(foreach o,$(object-suffixes-for-libc),\
60092701
RM
209 $(common-objpfx)$(patsubst %,$(libtype$o),c)) \
210 $(addprefix $(objpfx),$(install-lib))
28f540f4 211parent-clean: parent-mostlyclean common-clean
da2d1bc5
UD
212
213postclean = $(addprefix $(common-objpfx),$(postclean-generated)) \
eaeeb1eb 214 $(addprefix $(objpfx),sysd-dirs sysd-rules) \
4fcddf8e 215 $(addprefix $(objpfx),sysd-sorted soversions.mk soversions.i)
28f540f4
RM
216
217clean: parent-clean
218# This is done this way rather than having `subdir_clean' be a
219# dependency of this target so that libc.a will be removed before the
220# subdirectories are dealt with and so they won't try to remove object
221# files from it when it's going to be removed anyway.
222 @$(MAKE) subdir_clean no_deps=t
b5c69d99 223 -rm -f $(postclean)
28f540f4
RM
224mostlyclean: parent-mostlyclean
225 @$(MAKE) subdir_mostlyclean no_deps=t
da2d1bc5 226 -rm -f $(postclean)
28f540f4 227
3c5edd4d
UD
228tests-clean:
229 @$(MAKE) subdir_testclean no_deps=t
230
806e4a4a 231tests: $(objpfx)c++-types-check.out
2750c39c 232ifneq ($(CXX),no)
0a76d15e
UD
233ifneq (,$(wildcard scripts/data/c++-types-$(config-machine)-$(config-os).data))
234$(objpfx)c++-types-check.out: scripts/data/c++-types-$(config-machine)-$(config-os).data
235 scripts/check-c++-types.sh $^ $(CXX) $(filter-out -std=gnu99,$(CFLAGS)) $(CPPFLAGS) > $@
236else
2750c39c 237ifneq (,$(wildcard scripts/data/c++-types-$(base-machine)-$(config-os).data))
806e4a4a
UD
238$(objpfx)c++-types-check.out: scripts/data/c++-types-$(base-machine)-$(config-os).data
239 scripts/check-c++-types.sh $^ $(CXX) $(filter-out -std=gnu99,$(CFLAGS)) $(CPPFLAGS) > $@
240else
241$(objpfx)c++-types-check.out:
242 @echo 'WARNING C++ tests not run; create a c++-types-XXX file'
243 @echo "not run" > $@
244endif
2750c39c 245endif
0a76d15e 246endif
806e4a4a 247
28f540f4
RM
248# The realclean target is just like distclean for the parent, but we want
249# the subdirs to know the difference in case they care.
250realclean distclean: parent-clean
251# This is done this way rather than having `subdir_distclean' be a
252# dependency of this target so that libc.a will be removed before the
253# subdirectories are dealt with and so they won't try to remove object
254# files from it when it's going to be removed anyway.
da2d1bc5
UD
255 @$(MAKE) distclean-1 no_deps=t distclean-1=$@ avoid-generated=yes \
256 sysdep-subdirs="$(sysdep-subdirs)"
257 -rm -f $(postclean)
28f540f4
RM
258
259# Subroutine of distclean and realclean.
260distclean-1: subdir_$(distclean-1)
261 -rm -f $(config-generated)
60092701
RM
262 -rm -f $(addprefix $(objpfx),config.status config.cache config.log)
263 -rm -f $(addprefix $(objpfx),config.make config-name.h config.h)
9a0a462c 264 -rm -f $(addprefix $(objpfx),glibcbug)
28f540f4
RM
265ifdef objdir
266 -rm -f $(objpfx)Makefile
267endif
268 -rm -f $(sysdep-$(distclean-1))
269\f
270.PHONY: echo_subdirs
271echo_subdirs:;@echo '$(subdirs)'
272
273.PHONY: echo-distinfo parent_echo-distinfo
274echo-distinfo: parent_echo-distinfo subdir_echo-distinfo
275parent_echo-distinfo:
276 @echo $(addprefix +header+,$(headers)) \
277 $(addprefix +nodist+,$(generated))
6a441471 278
2f6d1f1b 279\f
28f540f4
RM
280# Make the distribution tarfile.
281
a709dd43
UD
282distribute := README README.libm INSTALL FAQ FAQ.in NOTES NEWS BUGS \
283 PROJECTS COPYING.LIB COPYING ChangeLog ChangeLog.[0-9] \
afa0569f
UD
284 ChangeLog.1[0-9] Makefile Makeconfig Makerules Rules \
285 Make-dist MakeTAGS extra-lib.mk o-iterator.mk configure \
286 configure.in aclocal.m4 config.h.in config.make.in \
287 config-name.in Makefile.in sysdep.h set-hooks.h \
288 libc-symbols.h version.h shlib-versions rpm/Makefile \
289 rpm/template rpm/rpmrc glibcbug.in abi-tags stub-tag.h \
dabb1db4 290 test-skeleton.c include/des.h include/libc-internal.h \
e8ef6f28 291 include/shlib-compat.h include/pthread.h Versions.def \
53da80ab 292 cppflags-iterator.mk tls.make.c \
ec503662 293 include/stubs-prologue.h include/gnu/stubs.h \
4009bf40 294 include/atomic.h bits/atomic.h \
53da80ab 295 INTERFACE CONFORMANCE NAMESPACE LICENSES \
5bc2f642 296 $(addprefix scripts/, \
a709dd43
UD
297 rellns-sh config.sub config.guess \
298 mkinstalldirs move-if-change install-sh \
5edb9387 299 test-installation.pl gen-FAQ.pl versions.awk\
6e3d59bc 300 gen-sorted.awk abi-versions.awk abilist.awk \
cc1b8268 301 firstversions.awk documented.sh cpp \
ec503662 302 output-format.sed gen-as-const.awk \
abbedc3f
RM
303 merge-abilist.awk extract-abilist.awk \
304 rpm2dynsym.sh \
572d7b38 305 ) \
806e4a4a 306 $(wildcard scripts/data/*.data) \
94659495 307 $(wildcard abilist/*.abilist)
28f540f4
RM
308
309distribute := $(strip $(distribute))
c7562c74 310generated := $(generated) stubs.h
28f540f4 311
aaf688e8
UD
312README: README.template version.h
313 -rm -f $@
314 sed -e 's/RELEASE/$(release)/' -e 's/VERSION/$(version)/' < $< > $@
315# Make it unwritable so I won't change it by mistake.
316 chmod 444 $@
317ifeq ($(with-cvs),yes)
318 test ! -d CVS || cvs $(CVSOPTS) commit -m'Remade for $(release)-$(version)' $@
319endif
28f540f4
RM
320
321define format-me
322@rm -f $@
323makeinfo --no-validate --no-warn --no-headers $< -o $@
324-chmod a-w $@
325endef
a35cb74d 326INSTALL: manual/install.texi; $(format-me)
28f540f4 327NOTES: manual/creature.texi; $(format-me)
714a562f 328manual/dir-add.texi manual/dir-add.info: FORCE
fe7bdd63 329 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
5bc2f642 330FAQ: scripts/gen-FAQ.pl FAQ.in
61952351 331 $(PERL) $^ > $@.new && rm -f $@ && mv $@.new $@ && chmod a-w $@
a35cb74d
UD
332ifeq ($(with-cvs),yes)
333 test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: $(PERL) $^' $@
334endif
f671aeab 335FORCE:
6a441471
RM
336
337rpm/%: subdir_distinfo
a709dd43 338 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
33a934a3 339
b6342936 340iconvdata/% localedata/% po/% manual/%:
f4017d20
UD
341 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
342
a53bad16
UD
343# glibc 2.0 contains some header files which aren't used with glibc 2.1
344# anymore.
345# These rules should remove those headers
346ifeq (,$(install_root))
347ifeq ($(old-glibc-headers),yes)
348install: remove-old-headers
349endif
350endif
351
352headers2_0 := __math.h bytesex.h confname.h direntry.h elfclass.h \
353 errnos.h fcntlbits.h huge_val.h ioctl-types.h \
354 ioctls.h iovec.h jmp_buf.h libc-lock.h local_lim.h \
355 mathcalls.h mpool.h nan.h ndbm.h posix1_lim.h \
356 posix2_lim.h posix_opt.h resourcebits.h schedbits.h \
357 selectbits.h semaphorebits.h sigaction.h sigcontext.h \
358 signum.h sigset.h sockaddrcom.h socketbits.h stab.def \
359 statbuf.h statfsbuf.h stdio-lock.h stdio_lim.h \
360 syscall-list.h termbits.h timebits.h ustatbits.h \
361 utmpbits.h utsnamelen.h waitflags.h waitstatus.h \
362 xopen_lim.h gnu/types.h sys/ipc_buf.h \
363 sys/kernel_termios.h sys/msq_buf.h sys/sem_buf.h \
a7ab2023 364 sys/shm_buf.h sys/socketcall.h sigstack.h
a53bad16 365
b195f6bc 366.PHONY: remove-old-headers
a53bad16
UD
367remove-old-headers:
368 rm -f $(addprefix $(inst_includedir)/, $(headers2_0))
This page took 0.195323 seconds and 5 git commands to generate.