]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makefile
update from main archive 960906
[thirdparty/glibc.git] / Makefile
CommitLineData
a2e1b046 1# Copyright (C) 1991, 92, 93, 94, 95, 96 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
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# Master Makefile for the GNU C library
21#
22ifneq (,)
23This makefile requires GNU Make.
24endif
25
26
27# This is the default target; it makes everything except the tests.
28.PHONY: all
edf5b2d7 29all: lib others
28f540f4
RM
30\f
31define autoconf-it
587dbc6f 32@-rm -f $@.new
28f540f4 33autoconf $(ACFLAGS) $< > $@.new
587dbc6f 34chmod a-w,a+x $@.new
28f540f4 35mv -f $@.new $@
a2fe9c76 36test ! -d CVS || cvs commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
28f540f4
RM
37endef
38
dbdb6189
RM
39configure: configure.in aclocal.m4; $(autoconf-it)
40%/configure: %/configure.in aclocal.m4; $(autoconf-it)
28f540f4
RM
41
42include Makeconfig
43
44ifndef avoid-generated
b86199fb 45-include $(objpfx)sysd-dirs
28f540f4
RM
46define \n
47
48
49endef
50sysdep-subdirs := $(subst $(\n), ,$(sysdep-subdirs))
51endif
52
53# These are the subdirectories containing the library source.
a641835a 54subdirs = csu assert ctype db locale intl catgets math setjmp signal stdlib \
a482b5a5 55 stdio-common $(stdio) malloc string wcsmbs time dirent grp pwd\
b8fe19fa 56 posix io termios resource misc login socket sysvipc gmon gnulib \
a8922de8 57 wctype manual shadow $(sysdep-subdirs) nss elf po $(add-ons)
28f540f4
RM
58export subdirs := $(subdirs) # Benign, useless in GNU make before 3.63.
59
60# The mach and hurd subdirectories have many generated header files which
24906b43 61# much of the rest of the library depends on, so it is best to build them
28f540f4
RM
62# first (and mach before hurd, at that). The before-compile additions in
63# sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
64# not to exist when making in other directories, but it will be slower that
65# way with more somewhat expensive `make' invocations.
66subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
67 $(filter-out mach hurd,$(subdirs))
68
69# All initialization source files.
70+subdir_inits := $(wildcard $(foreach dir,$(subdirs),$(dir)/init-$(dir).c))
71# All subdirectories containing initialization source files.
72+init_subdirs := $(patsubst %/,%,$(dir $(+subdir_inits)))
73
74
75# These are the targets that are made by making them in each subdirectory.
edf5b2d7
UD
76+subdir_targets := subdir_lib objects objs others subdir_mostlyclean \
77 subdir_clean subdir_distclean subdir_realclean \
78 tests subdir_lint.out \
6a441471 79 subdir_distinfo \
28f540f4 80 subdir_echo-headers subdir_echo-distinfo \
57ba7bb4
UD
81 subdir_install \
82 $(addprefix install-, no-libc.a bin lib data headers others)
28f540f4 83\f
de9ba9bd 84headers := errno.h sys/errno.h errnos.h limits.h values.h \
3d3ac840 85 features.h gnu-versions.h libc-lock.h
28f540f4
RM
86aux = sysdep $(libc-init) version
87
88echo-headers: subdir_echo-headers
89
90# What to install.
91install-others = $(includedir)/stubs.h
92
93ifeq (yes,$(gnu-ld))
94libc-init = set-init
95else
96libc-init = munch-init
97$(objpfx)munch-init.c: munch.awk munch-tmpl.c $(+subdir_inits)
98 awk -f $< subdirs='$(+init_subdirs)' $(word 2,$^) > $@-t
99 mv -f $@-t $@
100generated := $(generated) munch-init.c
101endif
102
103
104include Makerules
105
106# Install from subdirectories too.
107install: subdir_install
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
RM
116
117$(objpfx)sysd-dirs: $(+sysdir_pfx)config.make
118 (echo define sysdep-subdirs; \
57ba7bb4
UD
119 for sysdir in $(config-sysdirs); do \
120 case $$sysdir in \
121 /*) dir=$$sysdir ;; \
122 *) dir=$(..)$$sysdir ;; \
123 esac; \
124 if [ -r $$dir/Subdirs ]; then \
125 sed 's/#.*$$//' $$dir/Subdirs; \
28f540f4
RM
126 else true; \
127 fi; \
128 done; \
129 echo endef) > $@-tmp
130 mv -f $@-tmp $@
131\f
132# Makerules creates a file `stub-$(subdir)' for each subdirectory, which
133# contains `#define __stub_FUNCTION' for each function which is a stub.
134# Here we paste all of these together into <stubs.h>.
135
136subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)stub-$(dir))
137
138# Since stubs.h is never needed when building the library, we simplify the
139# hairy installation process by producing it in place only as the last part
140# of the top-level `make install'. It depends on subdir_install, which
141# iterates over all the subdirs; subdir_install in each subdir depends on
142# the subdir's stubs file. Having more direct dependencies would result in
143# extra iterations over the list for subdirs and many recursive makes.
144$(includedir)/stubs.h: subdir_install
145 @rm -f $(objpfx)stubs.h
146 (echo '/* This file is automatically generated.';\
147 echo ' It defines a symbol `__stub_FUNCTION'\'' for each function';\
148 echo ' in the C library which is a stub, meaning it will fail';\
149 echo ' every time called, usually setting errno to ENOSYS. */';\
150 sort $(subdir-stubs)) > $(objpfx)stubs.h
13a0be88 151 if test -r $@ && cmp -s $(objpfx)stubs.h $@; \
80791291 152 then echo stubs.h unchanged ; \
d36e7692 153 else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
28f540f4
RM
154 rm -f $(objpfx)stubs.h
155\f
156# This makes the Info or DVI file of the documentation from the Texinfo source.
157.PHONY: info dvi
158info dvi:
159 $(MAKE) -C manual $@
160\f
161# This makes all the subdirectory targets.
162
163# For each target, make it depend on DIR/target for each subdirectory DIR.
164$(+subdir_targets): %: $(addsuffix /%,$(subdirs))
165
166# Compute a list of all those targets.
167all-subdirs-targets := $(foreach dir,$(subdirs),\
168 $(addprefix $(dir)/,$(+subdir_targets)))
169
170# The action for each of those is to cd into the directory and make the
171# target there.
172$(all-subdirs-targets):
173 $(MAKE) -C $(@D) $(@F)
174
175.PHONY: $(+subdir_targets) $(all-subdirs-targets)
176\f
177# Targets to clean things up to various degrees.
178
179.PHONY: clean realclean distclean distclean-1 parent-clean parent-mostlyclean
180
181# Subroutines of all cleaning targets.
182parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules.
60092701
RM
183 -rm -f $(foreach o,$(object-suffixes),\
184 $(common-objpfx)$(patsubst %,$(libtype$o),c)) \
185 $(addprefix $(objpfx),$(install-lib))
28f540f4
RM
186parent-clean: parent-mostlyclean common-clean
187 -rm -f $(addprefix $(common-objpfx),$(common-generated))
6bf02878 188 -rm -f $(addprefix $(objpfx),sysd-Makefile sysd-dirs sysd-rules)
28f540f4
RM
189
190clean: parent-clean
191# This is done this way rather than having `subdir_clean' be a
192# dependency of this target so that libc.a will be removed before the
193# subdirectories are dealt with and so they won't try to remove object
194# files from it when it's going to be removed anyway.
195 @$(MAKE) subdir_clean no_deps=t
196mostlyclean: parent-mostlyclean
197 @$(MAKE) subdir_mostlyclean no_deps=t
198
199# The realclean target is just like distclean for the parent, but we want
200# the subdirs to know the difference in case they care.
201realclean distclean: parent-clean
202# This is done this way rather than having `subdir_distclean' be a
203# dependency of this target so that libc.a will be removed before the
204# subdirectories are dealt with and so they won't try to remove object
205# files from it when it's going to be removed anyway.
206 @$(MAKE) distclean-1 no_deps=t distclean-1=$@ avoid-generated=yes
207
208# Subroutine of distclean and realclean.
209distclean-1: subdir_$(distclean-1)
210 -rm -f $(config-generated)
60092701
RM
211 -rm -f $(addprefix $(objpfx),config.status config.cache config.log)
212 -rm -f $(addprefix $(objpfx),config.make config-name.h config.h)
28f540f4
RM
213ifdef objdir
214 -rm -f $(objpfx)Makefile
215endif
216 -rm -f $(sysdep-$(distclean-1))
217\f
218.PHONY: echo_subdirs
219echo_subdirs:;@echo '$(subdirs)'
220
221.PHONY: echo-distinfo parent_echo-distinfo
222echo-distinfo: parent_echo-distinfo subdir_echo-distinfo
223parent_echo-distinfo:
224 @echo $(addprefix +header+,$(headers)) \
225 $(addprefix +nodist+,$(generated))
6a441471 226
28f540f4
RM
227\f
228# Make the distribution tarfile.
229
0200214b 230distribute := README INSTALL FAQ NOTES NEWS PROJECTS \
9f447fb3 231 COPYING.LIB COPYING ChangeLog ChangeLog.[0-9] \
28f540f4 232 Makefile Makeconfig Makerules Rules Make-dist MakeTAGS \
693e7b96 233 extra-lib.mk o-iterator.mk \
28f540f4
RM
234 ansidecl.h mkinstalldirs move-if-change install-sh \
235 configure configure.in aclocal.m4 config.sub config.guess\
9f447fb3 236 config.h.in config.make.in config-name.in Makefile.in \
6e953631 237 autolock.sh munch-tmpl.c munch.awk \
748050b3
RM
238 sysdep.h set-hooks.h libc-symbols.h version.h shlib-versions \
239 rpm/Makefile rpm/template rpm/rpmrc
28f540f4
RM
240
241distribute := $(strip $(distribute))
242generated := $(generated) stubs.h
243
244README: README.template version.c ; # Make-dist should update README.
245
246define format-me
247@rm -f $@
248makeinfo --no-validate --no-warn --no-headers $< -o $@
249-chmod a-w $@
250endef
251INSTALL: manual/maint.texi; $(format-me)
252NOTES: manual/creature.texi; $(format-me)
6a441471
RM
253
254rpm/%: subdir_distinfo
255 $(MAKE) -C $(@D) subdirs='$(subdirs)' $(@F)