]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makefile
Merge translations from the Translation Project
[thirdparty/glibc.git] / Makefile
CommitLineData
bfff8b1b 1# Copyright (C) 1991-2017 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 14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
28f540f4
RM
17
18#
19# Master Makefile for the GNU C library
20#
21ifneq (,)
22This makefile requires GNU Make.
23endif
24
aa802e96
UD
25include Makeconfig
26
28f540f4
RM
27
28# This is the default target; it makes everything except the tests.
29.PHONY: all
edf5b2d7 30all: lib others
28f540f4 31\f
1400de2e
RM
32ifneq ($(AUTOCONF),no)
33
4d06461a
UD
34define autoconf-it
35@-rm -f $@.new
1400de2e 36$(AUTOCONF) $(ACFLAGS) $< > $@.new
7967983f 37chmod a-w$(patsubst %,$(comma)a+x,$(filter .,$(@D))) $@.new
4d06461a
UD
38mv -f $@.new $@
39endef
c8d32817 40
cb8a6dbd
MF
41configure: configure.ac aclocal.m4; $(autoconf-it)
42%/configure: %/configure.ac aclocal.m4; $(autoconf-it)
43%/preconfigure: %/preconfigure.ac aclocal.m4; $(autoconf-it)
28f540f4 44
1400de2e
RM
45endif # $(AUTOCONF) = no
46
47
48# We don't want to run anything here in parallel.
49.NOTPARALLEL:
50
28f540f4 51# These are the targets that are made by making them in each subdirectory.
edf5b2d7
UD
52+subdir_targets := subdir_lib objects objs others subdir_mostlyclean \
53 subdir_clean subdir_distclean subdir_realclean \
dd7b064c 54 tests xtests \
7b57bfe5 55 subdir_update-abi subdir_check-abi \
c100dca3 56 subdir_update-all-abi \
7b57bfe5 57 subdir_echo-headers \
57ba7bb4 58 subdir_install \
5d9e8991 59 subdir_objs subdir_stubs subdir_testclean \
57ba7bb4 60 $(addprefix install-, no-libc.a bin lib data headers others)
28f540f4 61\f
625cd00f 62headers := limits.h values.h features.h gnu-versions.h \
48789000
JM
63 bits/xopen_lim.h gnu/libc-version.h stdc-predef.h \
64 bits/libc-header-start.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
fe54a69c 74install-bin-script =
56552e42 75
a18f587d 76ifeq (yes,$(build-shared))
6736e93b 77headers += gnu/lib-names.h
a18f587d 78endif
28f540f4 79
28f540f4
RM
80include Makerules
81
737547be 82ifeq ($(build-programs),yes)
6c3ebebd 83others: $(addprefix $(objpfx),$(install-bin-script))
737547be
UD
84endif
85
28f540f4
RM
86# Install from subdirectories too.
87install: subdir_install
8d57beea 88
6736e93b
UD
89# Explicit dependency so that `make install-headers' works
90install-headers: install-headers-nosubdir
91
5148d49f
UD
92# Make sure that the dynamic linker is installed before libc.
93$(inst_slibdir)/libc-$(version).so: elf/ldso_install
94
95.PHONY: elf/ldso_install
96elf/ldso_install:
97 $(MAKE) -C $(@D) $(@F)
98
b43b13ac 99# Create links for shared libraries using the `ldconfig' program if possible.
7cc27f44 100# Ignore the error if we cannot update /etc/ld.so.cache.
1ef32c3d
UD
101ifeq (no,$(cross-compiling))
102ifeq (yes,$(build-shared))
409dfcea
UD
103install: install-symbolic-link
104.PHONY: install-symbolic-link
105install-symbolic-link: subdir_install
9d141cae 106 $(symbolic-link-prog) $(symbolic-link-list)
7ef90c15 107 rm -f $(symbolic-link-list)
9d141cae 108
8d57beea 109install:
686554bf 110 -test ! -x $(elf-objpfx)ldconfig || LC_ALL=C \
4134b50d
JM
111 $(elf-objpfx)ldconfig $(addprefix -r ,$(install_root)) \
112 $(slibdir) $(libdir)
cc3fa755
UD
113ifneq (no,$(PERL))
114ifeq (/usr,$(prefix))
115ifeq (,$(install_root))
d22e28b0 116 LD_SO=$(ld.so-version) CC="$(CC)" $(PERL) scripts/test-installation.pl $(common-objpfx)
cc3fa755
UD
117endif
118endif
119endif
1ef32c3d
UD
120endif
121endif
28f540f4 122
01a36ad3
RM
123# Build subdirectory lib objects.
124lib-noranlib: subdir_lib
28f540f4 125
01a36ad3
RM
126ifeq (yes,$(build-shared))
127# Build the shared object from the PIC object library.
5f855e35 128lib: $(common-objpfx)libc.so $(common-objpfx)linkobj/libc.so
bd81123a 129endif # $(build-shared)
9bfce4bf
RM
130
131
132# This is a handy script for running any dynamically linked program against
133# the current libc build for testing.
134$(common-objpfx)testrun.sh: $(common-objpfx)config.make \
135 $(..)Makeconfig $(..)Makefile
136 (echo '#!/bin/sh'; \
84f9ea0f
RM
137 echo 'builddir=`dirname "$$0"`'; \
138 echo 'GCONV_PATH="$${builddir}/iconvdata" \'; \
139 echo 'exec $(subst $(common-objdir),"$${builddir}",\
740b3dbe 140 $(test-program-prefix)) $${1+"$$@"}'; \
9bfce4bf
RM
141 ) > $@T
142 chmod a+x $@T
143 mv -f $@T $@
144postclean-generated += testrun.sh
145
146others: $(common-objpfx)testrun.sh
28f540f4 147\f
97a47867
UD
148# Makerules creates a file `stubs' in each subdirectory, which
149# contains `#define __stub_FUNCTION' for each function defined in that
150# directory which is a stub.
6bc31da0 151# Here we paste all of these together into <gnu/stubs.h>.
28f540f4 152
97a47867 153subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)$(dir)/stubs)
28f540f4 154
0ab0291b 155ifndef abi-variants
3e1e123d
RM
156installed-stubs = $(inst_includedir)/gnu/stubs.h
157else
0ab0291b 158installed-stubs = $(inst_includedir)/gnu/stubs-$(default-abi).h
3e1e123d 159
691bc9c1 160$(inst_includedir)/gnu/stubs.h: $(+force)
f0cf0902 161 $(make-target-directory)
0ab0291b
L
162 { \
163 echo '/* This file is automatically generated.';\
164 echo " This file selects the right generated file of \`__stub_FUNCTION' macros";\
165 echo ' based on the architecture being compiled for. */'; \
166 echo ''; \
167 $(foreach h,$(abi-includes), echo '#include <$(h)>';) \
168 echo ''; \
169 $(foreach v,$(abi-variants),\
170 $(if $(abi-$(v)-condition),\
171 echo '#if $(abi-$(v)-condition)'; \
172 echo '# include <gnu/stubs-$(v).h>'); \
173 $(if $(abi-$(v)-condition),echo '#endif';) \
174 rm -f $(@:.d=.h).new$(v); \
175 ) \
176 } > $(@:.d=.h).new
177 mv -f $(@:.d=.h).new $(@:.d=.h)
3e1e123d
RM
178
179install-others-nosubdir: $(installed-stubs)
180endif
181
182
28f540f4
RM
183# Since stubs.h is never needed when building the library, we simplify the
184# hairy installation process by producing it in place only as the last part
b9b49b44
UD
185# of the top-level `make install'. It depends on subdir_install, which
186# iterates over all the subdirs; subdir_install in each subdir depends on
187# the subdir's stubs file. Having more direct dependencies would result in
188# extra iterations over the list for subdirs and many recursive makes.
3e1e123d 189$(installed-stubs): include/stubs-prologue.h subdir_install
5107cf1d 190 $(make-target-directory)
28f540f4 191 @rm -f $(objpfx)stubs.h
d62507dd 192 (sed '/^@/d' $<; LC_ALL=C sort $(subdir-stubs)) > $(objpfx)stubs.h
13a0be88 193 if test -r $@ && cmp -s $(objpfx)stubs.h $@; \
ba1ffaa1 194 then echo 'stubs.h unchanged'; \
d36e7692 195 else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
28f540f4
RM
196 rm -f $(objpfx)stubs.h
197\f
198# This makes the Info or DVI file of the documentation from the Texinfo source.
fef0b717
UD
199.PHONY: info dvi pdf html
200info dvi pdf html:
c0e45674 201 $(MAKE) $(PARALLELMFLAGS) -C manual $@
28f540f4
RM
202\f
203# This makes all the subdirectory targets.
204
205# For each target, make it depend on DIR/target for each subdirectory DIR.
206$(+subdir_targets): %: $(addsuffix /%,$(subdirs))
207
208# Compute a list of all those targets.
209all-subdirs-targets := $(foreach dir,$(subdirs),\
210 $(addprefix $(dir)/,$(+subdir_targets)))
211
212# The action for each of those is to cd into the directory and make the
213# target there.
214$(all-subdirs-targets):
e0a3ed4f
RM
215 $(MAKE) $(PARALLELMFLAGS) $(subdir-target-args) $(@F)
216
217define subdir-target-args
218subdir=$(@D)$(if $($(@D)-srcdir),\
219-C $($(@D)-srcdir) ..=`pwd`/,\
220-C $(@D) ..=../)
221endef
28f540f4
RM
222
223.PHONY: $(+subdir_targets) $(all-subdirs-targets)
224\f
225# Targets to clean things up to various degrees.
226
3c5edd4d
UD
227.PHONY: clean realclean distclean distclean-1 parent-clean parent-mostlyclean \
228 tests-clean
28f540f4
RM
229
230# Subroutines of all cleaning targets.
231parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules.
4ddde9ee 232 -rm -f $(foreach o,$(object-suffixes-for-libc),\
60092701
RM
233 $(common-objpfx)$(patsubst %,$(libtype$o),c)) \
234 $(addprefix $(objpfx),$(install-lib))
28f540f4 235parent-clean: parent-mostlyclean common-clean
da2d1bc5
UD
236
237postclean = $(addprefix $(common-objpfx),$(postclean-generated)) \
4ae73ca0 238 $(addprefix $(objpfx),sysd-dirs sysd-rules) \
4fcddf8e 239 $(addprefix $(objpfx),sysd-sorted soversions.mk soversions.i)
28f540f4
RM
240
241clean: parent-clean
242# This is done this way rather than having `subdir_clean' be a
243# dependency of this target so that libc.a will be removed before the
244# subdirectories are dealt with and so they won't try to remove object
245# files from it when it's going to be removed anyway.
246 @$(MAKE) subdir_clean no_deps=t
b5c69d99 247 -rm -f $(postclean)
28f540f4
RM
248mostlyclean: parent-mostlyclean
249 @$(MAKE) subdir_mostlyclean no_deps=t
da2d1bc5 250 -rm -f $(postclean)
28f540f4 251
3c5edd4d
UD
252tests-clean:
253 @$(MAKE) subdir_testclean no_deps=t
254
00db8bf4 255ifneq (,$(CXX))
bd29910a
JM
256vpath c++-types.data $(+sysdep_dirs)
257
684ce7e0 258tests-special += $(objpfx)c++-types-check.out
bd29910a 259$(objpfx)c++-types-check.out: c++-types.data scripts/check-c++-types.sh
783dd2d3 260 scripts/check-c++-types.sh $< $(CXX) $(filter-out -std=gnu11 $(+gccwarn-c),$(CFLAGS)) $(CPPFLAGS) > $@; \
f0881698 261 $(evaluate-test)
2750c39c 262endif
806e4a4a 263
1241b50b 264tests-special += $(objpfx)check-local-headers.out
16feadf2 265$(objpfx)check-local-headers.out: scripts/check-local-headers.sh
ea5ee9f7 266 AWK='$(AWK)' scripts/check-local-headers.sh \
3b2cc56d 267 "$(includedir)" "$(objpfx)" < /dev/null > $@; \
f0881698 268 $(evaluate-test)
16feadf2 269
5ef5cbb6
UD
270ifneq ($(PERL),no)
271installed-headers = argp/argp.h assert/assert.h catgets/nl_types.h \
272 crypt/crypt.h ctype/ctype.h debug/execinfo.h \
273 dirent/dirent.h dlfcn/dlfcn.h elf/elf.h elf/link.h \
274 gmon/sys/gmon.h gmon/sys/gmon_out.h gmon/sys/profil.h \
829fea46 275 grp/grp.h gshadow/gshadow.h iconv/iconv.h iconv/gconv.h \
5ef5cbb6
UD
276 $(wildcard inet/netinet/*.h) \
277 $(wildcard inet/arpa/*.h inet/protocols/*.h) \
278 inet/aliases.h inet/ifaddrs.h inet/netinet/ip6.h \
279 inet/netinet/icmp6.h intl/libintl.h io/sys/stat.h \
280 io/sys/statfs.h io/sys/vfs.h io/sys/statvfs.h \
281 io/fcntl.h io/sys/fcntl.h io/poll.h io/sys/poll.h \
282 io/utime.h io/ftw.h io/fts.h io/sys/sendfile.h \
283 libio/stdio.h libio/libio.h locale/locale.h \
284 locale/langinfo.h locale/xlocale.h login/utmp.h \
285 login/lastlog.h login/pty.h malloc/malloc.h \
286 malloc/obstack.h malloc/mcheck.h math/math.h \
287 math/complex.h math/fenv.h math/tgmath.h misc/sys/uio.h \
288 $(wildcard nis/rpcsvc/*.h) nptl_db/thread_db.h \
fc00cf7b 289 sysdeps/nptl/pthread.h sysdeps/pthread/semaphore.h \
5ef5cbb6
UD
290 nss/nss.h posix/sys/utsname.h posix/sys/times.h \
291 posix/sys/wait.h posix/sys/types.h posix/unistd.h \
292 posix/glob.h posix/regex.h posix/wordexp.h posix/fnmatch.h\
293 posix/getopt.h posix/tar.h posix/sys/unistd.h \
294 posix/sched.h posix/re_comp.h posix/wait.h \
295 posix/cpio.h posix/spawn.h pwd/pwd.h resolv/resolv.h \
296 resolv/netdb.h $(wildcard resolv/arpa/*.h) \
297 resource/sys/resource.h resource/sys/vlimit.h \
298 resource/sys/vtimes.h resource/ulimit.h rt/aio.h \
299 rt/mqueue.h setjmp/setjmp.h shadow/shadow.h \
300 signal/signal.h signal/sys/signal.h socket/sys/socket.h \
301 socket/sys/un.h stdio-common/printf.h \
302 stdio-common/stdio_ext.h stdlib/stdlib.h stdlib/alloca.h \
303 stdlib/monetary.h stdlib/fmtmsg.h stdlib/ucontext.h \
304 sysdeps/generic/inttypes.h sysdeps/generic/stdint.h \
305 stdlib/errno.h stdlib/sys/errno.h string/string.h \
306 string/strings.h string/memory.h string/endian.h \
307 string/argz.h string/envz.h string/byteswap.h \
308 $(wildcard sunrpc/rpc/*.h sunrpc/rpcsvc/*.h) \
309 sysvipc/sys/ipc.h sysvipc/sys/msg.h sysvipc/sys/sem.h \
310 sysvipc/sys/shm.h termios/termios.h \
311 termios/sys/termios.h termios/sys/ttychars.h time/time.h \
312 time/sys/time.h time/sys/timeb.h wcsmbs/wchar.h \
313 wctype/wctype.h
314
f214606a 315tests-special += $(objpfx)begin-end-check.out
5ef5cbb6 316$(objpfx)begin-end-check.out: scripts/begin-end-check.pl
f0881698
JM
317 $(PERL) scripts/begin-end-check.pl $(installed-headers) > $@; \
318 $(evaluate-test)
5ef5cbb6
UD
319endif
320
47755784
ZW
321ifneq "$(headers)" ""
322# Special test of all the installed headers in this directory.
323tests-special += $(objpfx)check-installed-headers-c.out
324libof-check-installed-headers-c := nonlib
325$(objpfx)check-installed-headers-c.out: \
326 scripts/check-installed-headers.sh $(headers)
327 $(SHELL) $(..)scripts/check-installed-headers.sh c \
328 "$(CC) $(filter-out -std=%,$(CFLAGS)) -D_ISOMAC $(+includes)" \
329 $(headers) > $@; \
330 $(evaluate-test)
331
332ifneq "$(CXX)" ""
333tests-special += $(objpfx)check-installed-headers-cxx.out
334libof-check-installed-headers-cxx := nonlib
335$(objpfx)check-installed-headers-cxx.out: \
336 scripts/check-installed-headers.sh $(headers)
337 $(SHELL) $(..)scripts/check-installed-headers.sh c++ \
338 "$(CXX) $(filter-out -std=%,$(CXXFLAGS)) -D_ISOMAC $(+includes)" \
339 $(headers) > $@; \
340 $(evaluate-test)
341endif
342endif
343
44a6213c
RM
344define summarize-tests
345@egrep -v '^(PASS|XFAIL):' $(objpfx)$1 || true
346@echo "Summary of test results$2:"
347@sed 's/:.*//' < $(objpfx)$1 | sort | uniq -c
99db95db 348@! egrep -q -v '^(X?PASS|XFAIL|UNSUPPORTED):' $(objpfx)$1
44a6213c
RM
349endef
350
265d52ab 351tests-special-notdir = $(patsubst $(objpfx)%, %, $(tests-special))
f214606a 352tests: $(tests-special)
265d52ab
JM
353 $(..)scripts/merge-test-results.sh -s $(objpfx) "" \
354 $(sort $(tests-special-notdir:.out=)) \
355 > $(objpfx)subdir-tests.sum
356 $(..)scripts/merge-test-results.sh -t $(objpfx) subdir-tests.sum \
357 $(sort $(subdirs) .) \
358 > $(objpfx)tests.sum
44a6213c 359 $(call summarize-tests,tests.sum)
265d52ab
JM
360xtests:
361 $(..)scripts/merge-test-results.sh -t $(objpfx) subdir-xtests.sum \
362 $(sort $(subdirs)) \
363 > $(objpfx)xtests.sum
44a6213c 364 $(call summarize-tests,xtests.sum, for extra tests)
f214606a 365
28f540f4
RM
366# The realclean target is just like distclean for the parent, but we want
367# the subdirs to know the difference in case they care.
368realclean distclean: parent-clean
369# This is done this way rather than having `subdir_distclean' be a
370# dependency of this target so that libc.a will be removed before the
371# subdirectories are dealt with and so they won't try to remove object
372# files from it when it's going to be removed anyway.
da2d1bc5
UD
373 @$(MAKE) distclean-1 no_deps=t distclean-1=$@ avoid-generated=yes \
374 sysdep-subdirs="$(sysdep-subdirs)"
375 -rm -f $(postclean)
28f540f4
RM
376
377# Subroutine of distclean and realclean.
378distclean-1: subdir_$(distclean-1)
379 -rm -f $(config-generated)
60092701
RM
380 -rm -f $(addprefix $(objpfx),config.status config.cache config.log)
381 -rm -f $(addprefix $(objpfx),config.make config-name.h config.h)
28f540f4
RM
382ifdef objdir
383 -rm -f $(objpfx)Makefile
384endif
385 -rm -f $(sysdep-$(distclean-1))
386\f
9de06f3c
RM
387# Make the TAGS file for Emacs users.
388
389.PHONY: TAGS
390TAGS:
77c84aeb 391 scripts/list-sources.sh | sed -n -e '/Makefile/p' \
9de06f3c 392 $(foreach S,[chsSyl] cxx sh bash pl,\
77c84aeb 393 $(subst .,\.,-e '/.$S\(.in\)*$$/p')) \
9de06f3c
RM
394 | $(ETAGS) -o $@ -
395\f
28f540f4 396# Make the distribution tarfile.
6cfe8609 397.PHONY: dist dist-prepare
28f540f4 398
c7562c74 399generated := $(generated) stubs.h
28f540f4 400
7ac30cc5 401files-for-dist := README INSTALL configure ChangeLog NEWS
6cfe8609
RM
402
403# Regenerate stuff, then error if these things are not committed yet.
404dist-prepare: $(files-for-dist)
405 conf=`find sysdeps $(addsuffix /sysdeps,$(sysdeps-add-ons)) \
406 -name configure`; \
407 $(MAKE) $$conf && \
408 git diff --stat HEAD -- $^ $$conf \
409 | $(AWK) '{ print; rc=1 } END { exit rc }'
410
411%.tar: FORCE
412 git archive --prefix=$*/ $* > $@.new
413 mv -f $@.new $@
62780824 414
7c0cf356 415# Do `make dist dist-version=X.Y.Z' to make tar files of an older version.
7c0cf356 416
6cfe8609
RM
417ifneq (,$(strip $(dist-version)))
418dist: $(foreach Z,.bz2 .gz .xz,$(dist-version).tar$Z)
62780824 419 md5sum $^
6cfe8609
RM
420else
421dist: dist-prepare
422 @if v=`git describe`; then \
423 echo Distribution version $$v; \
424 $(MAKE) dist dist-version=$$v; \
425 else \
426 false; \
427 fi
428endif
62780824 429
d136c6dc
SP
430INSTALL: manual/install-plain.texi manual/macros.texi \
431 $(common-objpfx)manual/pkgvers.texi manual/install.texi
4e87147f 432 makeinfo --no-validate --plaintext --no-number-sections \
b31469d0
JM
433 -I$(common-objpfx)manual $< -o $@-tmp
434 $(AWK) 'NF == 0 { ++n; next } \
435 NF != 0 { while (n-- > 0) print ""; n = 0; print }' \
436 < $@-tmp > $@-tmp2
437 rm -f $@-tmp
438 -chmod a-w $@-tmp2
439 mv -f $@-tmp2 $@
8b748aed
JM
440$(common-objpfx)manual/%: FORCE
441 $(MAKE) $(PARALLELMFLAGS) -C manual $@
f671aeab 442FORCE:
6a441471 443
8b748aed 444iconvdata/% localedata/% po/%: FORCE
f4017d20 445 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)