]> git.ipfire.org Git - thirdparty/glibc.git/blob - Makefile
Update.
[thirdparty/glibc.git] / Makefile
1 # Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
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 not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
18
19 #
20 # Master Makefile for the GNU C library
21 #
22 ifneq (,)
23 This makefile requires GNU Make.
24 endif
25
26
27 # This is the default target; it makes everything except the tests.
28 .PHONY: all
29 all: lib others
30 \f
31 ifeq ($(with-cvs),yes)
32 define autoconf-it
33 @-rm -f $@.new
34 autoconf $(ACFLAGS) $< > $@.new
35 chmod a-w,a+x $@.new
36 mv -f $@.new $@
37 test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
38 endef
39 else
40 define autoconf-it
41 @-rm -f $@.new
42 autoconf $(ACFLAGS) $< > $@.new
43 chmod a-w,a+x $@.new
44 mv -f $@.new $@
45 endef
46 endif
47
48 configure: configure.in aclocal.m4; $(autoconf-it)
49 %/configure: %/configure.in aclocal.m4; $(autoconf-it)
50
51 include Makeconfig
52
53 ifndef avoid-generated
54 -include $(objpfx)sysd-dirs
55 define \n
56
57
58 endef
59 sysdep-subdirs := $(subst $(\n), ,$(sysdep-subdirs))
60 endif
61
62 # These are the subdirectories containing the library source.
63 subdirs = csu assert ctype db2 locale intl catgets math setjmp signal stdlib \
64 stdio-common $(stdio) malloc string wcsmbs time dirent grp pwd \
65 posix io termios resource misc socket sysvipc gmon gnulib iconv \
66 iconvdata wctype manual shadow md5-crypt po argp $(add-ons) nss \
67 localedata timezone $(rt) $(sysdep-subdirs) $(binfmt-subdir)
68 export subdirs := $(subdirs) # Benign, useless in GNU make before 3.63.
69
70 # The mach and hurd subdirectories have many generated header files which
71 # much of the rest of the library depends on, so it is best to build them
72 # first (and mach before hurd, at that). The before-compile additions in
73 # sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
74 # not to exist when making in other directories, but it will be slower that
75 # way with more somewhat expensive `make' invocations.
76 subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
77 $(filter-out mach hurd,$(subdirs))
78
79 # All initialization source files.
80 +subdir_inits := $(wildcard $(foreach dir,$(subdirs),$(dir)/init-$(dir).c))
81 # All subdirectories containing initialization source files.
82 +init_subdirs := $(patsubst %/,%,$(dir $(+subdir_inits)))
83
84
85 # These are the targets that are made by making them in each subdirectory.
86 +subdir_targets := subdir_lib objects objs others subdir_mostlyclean \
87 subdir_clean subdir_distclean subdir_realclean \
88 tests subdir_lint.out \
89 subdir_distinfo \
90 subdir_echo-headers subdir_echo-distinfo \
91 subdir_install \
92 $(addprefix install-, no-libc.a bin lib data headers others)
93 \f
94 headers := errno.h sys/errno.h bits/errno.h limits.h values.h \
95 features.h gnu-versions.h bits/libc-lock.h bits/xopen_lim.h \
96 gnu/libc-version.h
97 aux = sysdep $(libc-init) version
98 before-compile += $(objpfx)version-info.h
99
100 echo-headers: subdir_echo-headers
101
102 # The headers are in the include directory.
103 subdir-dirs = include
104 vpath %.h $(subdir-dirs)
105
106 # What to install.
107 install-others = $(inst_includedir)/gnu/stubs.h
108 install-bin = glibcbug
109
110 ifeq (yes,$(build-shared))
111 install-others += $(inst_includedir)/gnu/lib-names.h
112 endif
113
114 ifeq (yes,$(gnu-ld))
115 libc-init = set-init
116 else
117 libc-init = munch-init
118 $(objpfx)munch-init.c: munch.awk munch-tmpl.c $(+subdir_inits)
119 awk -f $< subdirs='$(+init_subdirs)' $(word 2,$^) > $@-t
120 mv -f $@-t $@
121 generated := $(generated) munch-init.c
122 endif
123
124
125 include Makerules
126
127 # Install from subdirectories too.
128 install: subdir_install
129
130 # Make sure that the dynamic linker is installed before libc.
131 $(inst_slibdir)/libc-$(version).so: elf/ldso_install
132
133 .PHONY: elf/ldso_install
134 elf/ldso_install:
135 $(MAKE) -C $(@D) $(@F)
136
137 # Create links for shared libraries using the `ldconfig' program is possible.
138 # Ignore the error if we cannot update /etc/ld.so.cache.
139 ifeq (no,$(cross-compiling))
140 ifeq (yes,$(build-shared))
141 install:
142 -test ! -x $(common-objpfx)elf/ldconfig || \
143 $(common-objpfx)elf/ldconfig -d $(inst_slibdir) $(inst_libdir)
144 ifneq (no,$(PERL))
145 ifeq (/usr,$(prefix))
146 ifeq (,$(install_root))
147 CC="$(CC)" $(PERL) test-installation.pl $(common-objpfx)
148 endif
149 endif
150 endif
151 endif
152 endif
153
154 # Build subdirectory lib objects.
155 lib-noranlib: subdir_lib
156
157 ifeq (yes,$(build-shared))
158 # Build the shared object from the PIC object library.
159 lib: $(common-objpfx)libc.so
160 endif
161
162 all-Subdirs-files = $(wildcard $(addsuffix /Subdirs, $(config-sysdirs)))
163 $(objpfx)sysd-dirs: $(+sysdir_pfx)config.make $(all-Subdirs-files)
164 (echo define sysdep-subdirs; \
165 sed 's/#.*$$//' $(all-Subdirs-files) /dev/null; \
166 echo endef) > $@-tmp
167 mv -f $@-tmp $@
168 \f
169 all-Banner-files = $(wildcard $(addsuffix /Banner, $(subdirs)))
170 $(objpfx)version-info.h: $(+sysdir_pfx)config.make $(all-Banner-files)
171 (case $(config-os) in \
172 linux*) version=`(echo -e "#include <linux/version.h>\nUTS_RELEASE"\
173 | $(CC) -E -P - | \
174 sed -e 's/"\([^"]*\)".*/\1/p' -e d) 2>/dev/null`;\
175 if [ -z "$$version" ]; then \
176 if [ -r /proc/version ]; then \
177 version=`sed 's/.*version \([^ ]*\) .*/>>\1<</' \
178 < /proc/version`; \
179 else \
180 version=`uname -r`; \
181 fi; \
182 fi; \
183 echo -n "\"Compiled on a Linux $$version system "; \
184 echo "on `date +%Y-%m-%d`.\\n\"" ;; \
185 *) ;; \
186 esac; \
187 files="$(all-Banner-files)"; \
188 if test -n "$$files"; then \
189 echo "\"Available extensions:"; \
190 sed -e '/^#/d' -e 's/^[[:space:]]*/ /' $$files; \
191 echo "\""; \
192 fi) > $@T
193 mv -f $@T $@
194
195 version.c-objects := $(addprefix $(objpfx)version,$(object-suffixes))
196 $(version.c-objects): $(objpfx)version-info.h
197 \f
198 # Makerules creates a file `stub-$(subdir)' for each subdirectory, which
199 # contains `#define __stub_FUNCTION' for each function which is a stub.
200 # Here we paste all of these together into <gnu/stubs.h>.
201
202 subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)stub-$(dir))
203
204 # Since stubs.h is never needed when building the library, we simplify the
205 # hairy installation process by producing it in place only as the last part
206 # of the top-level `make install'. It depends on subdir_install, which
207 # iterates over all the subdirs; subdir_install in each subdir depends on
208 # the subdir's stubs file. Having more direct dependencies would result in
209 # extra iterations over the list for subdirs and many recursive makes.
210 $(inst_includedir)/gnu/stubs.h: subdir_install
211 $(make-target-directory)
212 @rm -f $(objpfx)stubs.h
213 (echo '/* This file is automatically generated.';\
214 echo ' It defines a symbol `__stub_FUNCTION'\'' for each function';\
215 echo ' in the C library which is a stub, meaning it will fail';\
216 echo ' every time called, usually setting errno to ENOSYS. */';\
217 sort $(subdir-stubs)) > $(objpfx)stubs.h
218 if test -r $@ && cmp -s $(objpfx)stubs.h $@; \
219 then echo 'stubs.h unchanged'; \
220 else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
221 rm -f $(objpfx)stubs.h
222 \f
223 ifeq (yes,$(build-shared))
224
225 $(inst_includedir)/gnu/lib-names.h: $(common-objpfx)gnu/lib-names.h
226 $(make-target-directory)
227 if test -r $@ && cmp -s $< $@; \
228 then echo 'gnu/lib-names.h unchanged'; \
229 else $(INSTALL_DATA) $< $@; fi
230 endif
231 \f
232 # The `glibcbug' script contains the version number and it shall be rebuild
233 # whenever this changes or the `glibcbug.in' file.
234 $(objpfx)glibcbug: $(common-objpfx)config.status glibcbug.in
235 cd $(<D); CONFIG_FILES=$(@F) CONFIG_HEADERS= $(SHELL) $(<F)
236 \f
237 # This makes the Info or DVI file of the documentation from the Texinfo source.
238 .PHONY: info dvi
239 info dvi:
240 $(MAKE) $(PARALLELMFLAGS) -C manual $@
241 \f
242 # This makes all the subdirectory targets.
243
244 # For each target, make it depend on DIR/target for each subdirectory DIR.
245 $(+subdir_targets): %: $(addsuffix /%,$(subdirs))
246
247 # Compute a list of all those targets.
248 all-subdirs-targets := $(foreach dir,$(subdirs),\
249 $(addprefix $(dir)/,$(+subdir_targets)))
250
251 # The action for each of those is to cd into the directory and make the
252 # target there.
253 $(all-subdirs-targets):
254 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
255
256 .PHONY: $(+subdir_targets) $(all-subdirs-targets)
257 \f
258 # Targets to clean things up to various degrees.
259
260 .PHONY: clean realclean distclean distclean-1 parent-clean parent-mostlyclean
261
262 # Subroutines of all cleaning targets.
263 parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules.
264 -rm -f $(foreach o,$(object-suffixes),\
265 $(common-objpfx)$(patsubst %,$(libtype$o),c)) \
266 $(addprefix $(objpfx),$(install-lib))
267 parent-clean: parent-mostlyclean common-clean
268
269 postclean = $(addprefix $(common-objpfx),$(postclean-generated)) \
270 $(addprefix $(objpfx),sysd-Makefile sysd-dirs sysd-rules)
271
272 clean: parent-clean
273 # This is done this way rather than having `subdir_clean' be a
274 # dependency of this target so that libc.a will be removed before the
275 # subdirectories are dealt with and so they won't try to remove object
276 # files from it when it's going to be removed anyway.
277 @$(MAKE) subdir_clean no_deps=t
278 mostlyclean: parent-mostlyclean
279 @$(MAKE) subdir_mostlyclean no_deps=t
280 -rm -f $(postclean)
281
282 # The realclean target is just like distclean for the parent, but we want
283 # the subdirs to know the difference in case they care.
284 realclean distclean: parent-clean
285 # This is done this way rather than having `subdir_distclean' be a
286 # dependency of this target so that libc.a will be removed before the
287 # subdirectories are dealt with and so they won't try to remove object
288 # files from it when it's going to be removed anyway.
289 @$(MAKE) distclean-1 no_deps=t distclean-1=$@ avoid-generated=yes \
290 sysdep-subdirs="$(sysdep-subdirs)"
291 -rm -f $(postclean)
292
293 # Subroutine of distclean and realclean.
294 distclean-1: subdir_$(distclean-1)
295 -rm -f $(config-generated)
296 -rm -f $(addprefix $(objpfx),config.status config.cache config.log)
297 -rm -f $(addprefix $(objpfx),config.make config-name.h config.h)
298 -rm -f $(addprefix $(objpfx),glibcbug)
299 ifdef objdir
300 -rm -f $(objpfx)Makefile
301 endif
302 -rm -f $(sysdep-$(distclean-1))
303 \f
304 .PHONY: echo_subdirs
305 echo_subdirs:;@echo '$(subdirs)'
306
307 .PHONY: echo-distinfo parent_echo-distinfo
308 echo-distinfo: parent_echo-distinfo subdir_echo-distinfo
309 parent_echo-distinfo:
310 @echo $(addprefix +header+,$(headers)) \
311 $(addprefix +nodist+,$(generated))
312
313 \f
314 # Make the distribution tarfile.
315
316 distribute := README README.libm INSTALL FAQ NOTES NEWS PROJECTS BUGS \
317 COPYING.LIB COPYING ChangeLog ChangeLog.[0-9] \
318 Makefile Makeconfig Makerules Rules Make-dist MakeTAGS \
319 extra-lib.mk o-iterator.mk \
320 libc.map mkinstalldirs move-if-change install-sh \
321 configure configure.in aclocal.m4 config.sub config.guess\
322 config.h.in config.make.in config-name.in Makefile.in \
323 autolock.sh rellns-sh munch-tmpl.c munch.awk interp.c \
324 sysdep.h set-hooks.h libc-symbols.h version.h shlib-versions \
325 rpm/Makefile rpm/template rpm/rpmrc glibcbug.in abi-tags \
326 stub-tag.h test-installation.pl
327
328 distribute := $(strip $(distribute))
329 generated := $(generated) stubs.h version-info.h
330
331 README: README.template version.h ; # Make-dist should update README.
332
333 define format-me
334 @rm -f $@
335 makeinfo --no-validate --no-warn --no-headers $< -o $@
336 -chmod a-w $@
337 endef
338 INSTALL: manual/maint.texi; $(format-me)
339 NOTES: manual/creature.texi; $(format-me)
340 manual/dir-add.texi manual/dir-add.info: FORCE
341 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
342 FAQ: gen-FAQ.pl FAQ.in
343 $(PERL) $^ > $@.new && rm -f $@ && mv $@.new $@ && chmod a-w $@
344 FORCE:
345
346 rpm/%: subdir_distinfo
347 $(MAKE) $(PARALLELMFLAGS) -C $(@D) subdirs='$(subdirs)' $(@F)
348
349 iconvdata/%:
350 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
351
352 # This is a special goal for people making binary distributions. Normally
353 # everybody uses the DES based crypt library but for the distribution we
354 # need the only-MD5 based one as well.
355 md5-crypt/libmd5crypt:
356 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)