]> sourceware.org Git - glibc.git/blame - Makefile
Update.
[glibc.git] / Makefile
CommitLineData
379bb425 1# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 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
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
2c6fe0bd
UD
15# License along with the GNU C Library; see the file COPYING.LIB. If not,
16# write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17# Boston, MA 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
4d06461a 33ifeq ($(with-cvs),yes)
28f540f4 34define autoconf-it
587dbc6f 35@-rm -f $@.new
28f540f4 36autoconf $(ACFLAGS) $< > $@.new
587dbc6f 37chmod a-w,a+x $@.new
28f540f4 38mv -f $@.new $@
379bb425 39test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
28f540f4 40endef
4d06461a
UD
41else
42define autoconf-it
43@-rm -f $@.new
44autoconf $(ACFLAGS) $< > $@.new
45chmod a-w,a+x $@.new
46mv -f $@.new $@
47endef
48endif
28f540f4 49
dbdb6189
RM
50configure: configure.in aclocal.m4; $(autoconf-it)
51%/configure: %/configure.in aclocal.m4; $(autoconf-it)
28f540f4 52
28f540f4 53# These are the targets that are made by making them in each subdirectory.
edf5b2d7
UD
54+subdir_targets := subdir_lib objects objs others subdir_mostlyclean \
55 subdir_clean subdir_distclean subdir_realclean \
56 tests subdir_lint.out \
6a441471 57 subdir_distinfo \
28f540f4 58 subdir_echo-headers subdir_echo-distinfo \
57ba7bb4
UD
59 subdir_install \
60 $(addprefix install-, no-libc.a bin lib data headers others)
28f540f4 61\f
5107cf1d 62headers := errno.h sys/errno.h bits/errno.h limits.h values.h \
dc30f461
UD
63 features.h gnu-versions.h bits/libc-lock.h bits/xopen_lim.h \
64 gnu/libc-version.h
28f540f4
RM
65
66echo-headers: subdir_echo-headers
67
762a2918
UD
68# The headers are in the include directory.
69subdir-dirs = include
70vpath %.h $(subdir-dirs)
71
28f540f4 72# What to install.
8d57beea 73install-others = $(inst_includedir)/gnu/stubs.h
56552e42
UD
74install-bin = glibcbug
75
a18f587d 76ifeq (yes,$(build-shared))
c0e45674 77install-others += $(inst_includedir)/gnu/lib-names.h
a18f587d 78endif
28f540f4 79
28f540f4
RM
80include Makerules
81
82# Install from subdirectories too.
83install: subdir_install
8d57beea 84
9756dfe1 85# Make sure that the dynamic linker is installed before libc.
da2d1bc5
UD
86$(inst_slibdir)/libc-$(version).so: elf/ldso_install
87
88.PHONY: elf/ldso_install
89elf/ldso_install:
90 $(MAKE) -C $(@D) $(@F)
9756dfe1 91
6973fc01 92# Create links for shared libraries using the `ldconfig' program is possible.
7cc27f44 93# Ignore the error if we cannot update /etc/ld.so.cache.
1ef32c3d
UD
94ifeq (no,$(cross-compiling))
95ifeq (yes,$(build-shared))
8d57beea 96install:
7cc27f44 97 -test ! -x $(common-objpfx)elf/ldconfig || \
1228ed5c 98 $(common-objpfx)elf/ldconfig -d $(inst_slibdir) $(inst_libdir)
cc3fa755
UD
99ifneq (no,$(PERL))
100ifeq (/usr,$(prefix))
101ifeq (,$(install_root))
5bc2f642 102 CC="$(CC)" $(PERL) scripts/test-installation.pl $(common-objpfx)
cc3fa755
UD
103endif
104endif
105endif
1ef32c3d
UD
106endif
107endif
28f540f4 108
01a36ad3
RM
109# Build subdirectory lib objects.
110lib-noranlib: subdir_lib
28f540f4 111
01a36ad3
RM
112ifeq (yes,$(build-shared))
113# Build the shared object from the PIC object library.
114lib: $(common-objpfx)libc.so
115endif
28f540f4 116\f
97a47867
UD
117# Makerules creates a file `stubs' in each subdirectory, which
118# contains `#define __stub_FUNCTION' for each function defined in that
119# directory which is a stub.
6bc31da0 120# Here we paste all of these together into <gnu/stubs.h>.
28f540f4 121
97a47867 122subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)$(dir)/stubs)
28f540f4
RM
123
124# Since stubs.h is never needed when building the library, we simplify the
125# hairy installation process by producing it in place only as the last part
b9b49b44
UD
126# of the top-level `make install'. It depends on subdir_install, which
127# iterates over all the subdirs; subdir_install in each subdir depends on
128# the subdir's stubs file. Having more direct dependencies would result in
129# extra iterations over the list for subdirs and many recursive makes.
130$(inst_includedir)/gnu/stubs.h: subdir_install
5107cf1d 131 $(make-target-directory)
28f540f4
RM
132 @rm -f $(objpfx)stubs.h
133 (echo '/* This file is automatically generated.';\
134 echo ' It defines a symbol `__stub_FUNCTION'\'' for each function';\
135 echo ' in the C library which is a stub, meaning it will fail';\
136 echo ' every time called, usually setting errno to ENOSYS. */';\
b9b49b44 137 sort $(subdir-stubs)) > $(objpfx)stubs.h
13a0be88 138 if test -r $@ && cmp -s $(objpfx)stubs.h $@; \
ba1ffaa1 139 then echo 'stubs.h unchanged'; \
d36e7692 140 else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
28f540f4
RM
141 rm -f $(objpfx)stubs.h
142\f
8a523922 143ifeq (yes,$(build-shared))
afd4eb37 144
73237de3 145$(inst_includedir)/gnu/lib-names.h: $(common-objpfx)gnu/lib-names.h $(+force)
5107cf1d 146 $(make-target-directory)
56552e42
UD
147 if test -r $@ && cmp -s $< $@; \
148 then echo 'gnu/lib-names.h unchanged'; \
149 else $(INSTALL_DATA) $< $@; fi
afd4eb37 150endif
ba1ffaa1 151\f
df4ef2ab
UD
152# The `glibcbug' script contains the version number and it shall be rebuild
153# whenever this changes or the `glibcbug.in' file.
5290baf0 154$(objpfx)glibcbug: $(common-objpfx)config.status glibcbug.in
af3878df 155 cd $(<D) && CONFIG_FILES=$(@F) CONFIG_HEADERS= $(SHELL) $(<F)
df4ef2ab 156\f
28f540f4
RM
157# This makes the Info or DVI file of the documentation from the Texinfo source.
158.PHONY: info dvi
159info dvi:
c0e45674 160 $(MAKE) $(PARALLELMFLAGS) -C manual $@
28f540f4
RM
161\f
162# This makes all the subdirectory targets.
163
164# For each target, make it depend on DIR/target for each subdirectory DIR.
165$(+subdir_targets): %: $(addsuffix /%,$(subdirs))
166
167# Compute a list of all those targets.
168all-subdirs-targets := $(foreach dir,$(subdirs),\
169 $(addprefix $(dir)/,$(+subdir_targets)))
170
171# The action for each of those is to cd into the directory and make the
172# target there.
173$(all-subdirs-targets):
c0e45674 174 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
28f540f4
RM
175
176.PHONY: $(+subdir_targets) $(all-subdirs-targets)
177\f
178# Targets to clean things up to various degrees.
179
180.PHONY: clean realclean distclean distclean-1 parent-clean parent-mostlyclean
181
182# Subroutines of all cleaning targets.
183parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules.
4ddde9ee 184 -rm -f $(foreach o,$(object-suffixes-for-libc),\
60092701
RM
185 $(common-objpfx)$(patsubst %,$(libtype$o),c)) \
186 $(addprefix $(objpfx),$(install-lib))
28f540f4 187parent-clean: parent-mostlyclean common-clean
da2d1bc5
UD
188
189postclean = $(addprefix $(common-objpfx),$(postclean-generated)) \
4ddde9ee
UD
190 $(addprefix $(objpfx),sysd-Makefile sysd-dirs sysd-rules) \
191 $(objpfx)soversions.mk
28f540f4
RM
192
193clean: parent-clean
194# This is done this way rather than having `subdir_clean' be a
195# dependency of this target so that libc.a will be removed before the
196# subdirectories are dealt with and so they won't try to remove object
197# files from it when it's going to be removed anyway.
198 @$(MAKE) subdir_clean no_deps=t
199mostlyclean: parent-mostlyclean
200 @$(MAKE) subdir_mostlyclean no_deps=t
da2d1bc5 201 -rm -f $(postclean)
28f540f4
RM
202
203# The realclean target is just like distclean for the parent, but we want
204# the subdirs to know the difference in case they care.
205realclean distclean: parent-clean
206# This is done this way rather than having `subdir_distclean' be a
207# dependency of this target so that libc.a will be removed before the
208# subdirectories are dealt with and so they won't try to remove object
209# files from it when it's going to be removed anyway.
da2d1bc5
UD
210 @$(MAKE) distclean-1 no_deps=t distclean-1=$@ avoid-generated=yes \
211 sysdep-subdirs="$(sysdep-subdirs)"
212 -rm -f $(postclean)
28f540f4
RM
213
214# Subroutine of distclean and realclean.
215distclean-1: subdir_$(distclean-1)
216 -rm -f $(config-generated)
60092701
RM
217 -rm -f $(addprefix $(objpfx),config.status config.cache config.log)
218 -rm -f $(addprefix $(objpfx),config.make config-name.h config.h)
9a0a462c 219 -rm -f $(addprefix $(objpfx),glibcbug)
28f540f4
RM
220ifdef objdir
221 -rm -f $(objpfx)Makefile
222endif
223 -rm -f $(sysdep-$(distclean-1))
224\f
225.PHONY: echo_subdirs
226echo_subdirs:;@echo '$(subdirs)'
227
228.PHONY: echo-distinfo parent_echo-distinfo
229echo-distinfo: parent_echo-distinfo subdir_echo-distinfo
230parent_echo-distinfo:
231 @echo $(addprefix +header+,$(headers)) \
232 $(addprefix +nodist+,$(generated))
6a441471 233
2f6d1f1b 234\f
28f540f4
RM
235# Make the distribution tarfile.
236
5bc2f642
UD
237distribute := README README.libm INSTALL FAQ NOTES NEWS PROJECTS \
238 BUGS COPYING.LIB COPYING ChangeLog ChangeLog.[0-9] \
239 Makefile Makeconfig Makerules Rules Make-dist MakeTAGS \
240 extra-lib.mk o-iterator.mk libc.map configure \
241 configure.in aclocal.m4 config.h.in config.make.in \
242 config-name.in Makefile.in sysdep.h set-hooks.h \
243 libc-symbols.h version.h shlib-versions rpm/Makefile \
244 rpm/template rpm/rpmrc glibcbug.in abi-tags stub-tag.h \
245 test-skeleton.c include/des.h \
246 $(addprefix scripts/, \
247 rellns-sh config.sub config.guess printsources \
248 mkinstalldirs move-if-change install-sh =__ify \
249 test-installation.pl gen-FAQ.pl)
28f540f4
RM
250
251distribute := $(strip $(distribute))
c7562c74 252generated := $(generated) stubs.h
28f540f4 253
8d57beea 254README: README.template version.h ; # Make-dist should update README.
28f540f4
RM
255
256define format-me
257@rm -f $@
258makeinfo --no-validate --no-warn --no-headers $< -o $@
259-chmod a-w $@
260endef
a35cb74d 261INSTALL: manual/install.texi; $(format-me)
28f540f4 262NOTES: manual/creature.texi; $(format-me)
714a562f 263manual/dir-add.texi manual/dir-add.info: FORCE
fe7bdd63 264 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
5bc2f642 265FAQ: scripts/gen-FAQ.pl FAQ.in
61952351 266 $(PERL) $^ > $@.new && rm -f $@ && mv $@.new $@ && chmod a-w $@
a35cb74d
UD
267ifeq ($(with-cvs),yes)
268 test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: $(PERL) $^' $@
269endif
f671aeab 270FORCE:
6a441471
RM
271
272rpm/%: subdir_distinfo
c0e45674 273 $(MAKE) $(PARALLELMFLAGS) -C $(@D) subdirs='$(subdirs)' $(@F)
33a934a3 274
f4017d20
UD
275iconvdata/%:
276 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
277
33a934a3
UD
278# This is a special goal for people making binary distributions. Normally
279# everybody uses the DES based crypt library but for the distribution we
280# need the only-MD5 based one as well.
281md5-crypt/libmd5crypt:
c0e45674 282 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
This page took 0.093395 seconds and 5 git commands to generate.