]> sourceware.org Git - glibc.git/blame - Makefile
Ignore TAGS.
[glibc.git] / Makefile
CommitLineData
9ef79dce 1# Copyright (C) 1991-2002,2003,2004,2005,2006,2008,2009
e85f1d6a 2# Free Software Foundation, Inc.
28f540f4
RM
3# This file is part of the GNU C Library.
4
5# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6# modify it under the terms of the GNU Lesser General Public
7# License as published by the Free Software Foundation; either
8# version 2.1 of the License, or (at your option) any later version.
28f540f4
RM
9
10# The GNU C Library is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13# Lesser General Public License for more details.
28f540f4 14
41bdb6e2
AJ
15# You should have received a copy of the GNU Lesser General Public
16# License along with the GNU C Library; if not, write to the Free
17# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18# 02111-1307 USA.
28f540f4
RM
19
20#
21# Master Makefile for the GNU C library
22#
23ifneq (,)
24This makefile requires GNU Make.
25endif
26
aa802e96
UD
27include Makeconfig
28
28f540f4
RM
29
30# This is the default target; it makes everything except the tests.
31.PHONY: all
edf5b2d7 32all: lib others
28f540f4 33\f
1400de2e
RM
34ifneq ($(AUTOCONF),no)
35
4d06461a 36ifeq ($(with-cvs),yes)
1400de2e 37define autoconf-it-cvs
379bb425 38test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
28f540f4 39endef
4d06461a 40else
1400de2e
RM
41autoconf-it-cvs =
42endif
43
4d06461a
UD
44define autoconf-it
45@-rm -f $@.new
1400de2e 46$(AUTOCONF) $(ACFLAGS) $< > $@.new
4d06461a
UD
47chmod a-w,a+x $@.new
48mv -f $@.new $@
1400de2e 49$(autoconf-it-cvs)
4d06461a 50endef
c8d32817 51
dbdb6189
RM
52configure: configure.in aclocal.m4; $(autoconf-it)
53%/configure: %/configure.in aclocal.m4; $(autoconf-it)
e0a3ed4f 54%/preconfigure: %/preconfigure.in aclocal.m4; $(autoconf-it)
28f540f4 55
1400de2e
RM
56endif # $(AUTOCONF) = no
57
58
59# We don't want to run anything here in parallel.
60.NOTPARALLEL:
61
28f540f4 62# These are the targets that are made by making them in each subdirectory.
edf5b2d7
UD
63+subdir_targets := subdir_lib objects objs others subdir_mostlyclean \
64 subdir_clean subdir_distclean subdir_realclean \
c238ecf7 65 tests xtests subdir_lint.out \
62780824
RM
66 subdir_update-abi subdir_check-abi \
67 subdir_echo-headers \
57ba7bb4 68 subdir_install \
5d9e8991 69 subdir_objs subdir_stubs subdir_testclean \
57ba7bb4 70 $(addprefix install-, no-libc.a bin lib data headers others)
28f540f4 71\f
739d440d
UD
72headers := limits.h values.h features.h gnu-versions.h bits/libc-lock.h \
73 bits/xopen_lim.h gnu/libc-version.h
28f540f4
RM
74
75echo-headers: subdir_echo-headers
76
762a2918
UD
77# The headers are in the include directory.
78subdir-dirs = include
79vpath %.h $(subdir-dirs)
80
28f540f4 81# What to install.
8d57beea 82install-others = $(inst_includedir)/gnu/stubs.h
fe54a69c 83install-bin-script =
56552e42 84
a18f587d 85ifeq (yes,$(build-shared))
6736e93b 86headers += gnu/lib-names.h
a18f587d 87endif
28f540f4 88
28f540f4
RM
89include Makerules
90
737547be 91ifeq ($(build-programs),yes)
6c3ebebd 92others: $(addprefix $(objpfx),$(install-bin-script))
737547be
UD
93endif
94
28f540f4
RM
95# Install from subdirectories too.
96install: subdir_install
8d57beea 97
6736e93b
UD
98# Explicit dependency so that `make install-headers' works
99install-headers: install-headers-nosubdir
100
5148d49f
UD
101# Make sure that the dynamic linker is installed before libc.
102$(inst_slibdir)/libc-$(version).so: elf/ldso_install
103
104.PHONY: elf/ldso_install
105elf/ldso_install:
106 $(MAKE) -C $(@D) $(@F)
107
b43b13ac 108# Create links for shared libraries using the `ldconfig' program if possible.
7cc27f44 109# Ignore the error if we cannot update /etc/ld.so.cache.
1ef32c3d
UD
110ifeq (no,$(cross-compiling))
111ifeq (yes,$(build-shared))
409dfcea
UD
112install: install-symbolic-link
113.PHONY: install-symbolic-link
114install-symbolic-link: subdir_install
9d141cae 115 $(symbolic-link-prog) $(symbolic-link-list)
7ef90c15 116 rm -f $(symbolic-link-list)
9d141cae 117
8d57beea 118install:
b4a555d6 119 -test ! -x $(common-objpfx)elf/ldconfig || LC_ALL=C LANGUAGE=C \
03c0d6ef 120 $(common-objpfx)elf/ldconfig $(addprefix -r ,$(install_root)) \
5732c4df 121 $(slibdir) $(libdir)
cc3fa755
UD
122ifneq (no,$(PERL))
123ifeq (/usr,$(prefix))
124ifeq (,$(install_root))
5bc2f642 125 CC="$(CC)" $(PERL) scripts/test-installation.pl $(common-objpfx)
cc3fa755
UD
126endif
127endif
128endif
1ef32c3d
UD
129endif
130endif
28f540f4 131
01a36ad3
RM
132# Build subdirectory lib objects.
133lib-noranlib: subdir_lib
28f540f4 134
01a36ad3
RM
135ifeq (yes,$(build-shared))
136# Build the shared object from the PIC object library.
137lib: $(common-objpfx)libc.so
138endif
9bfce4bf
RM
139
140
141# This is a handy script for running any dynamically linked program against
142# the current libc build for testing.
143$(common-objpfx)testrun.sh: $(common-objpfx)config.make \
144 $(..)Makeconfig $(..)Makefile
145 (echo '#!/bin/sh'; \
146 echo "GCONV_PATH='$(common-objpfx)iconvdata' \\"; \
147 echo 'exec $(run-program-prefix) $${1+"$$@"}'; \
148 ) > $@T
149 chmod a+x $@T
150 mv -f $@T $@
151postclean-generated += testrun.sh
152
153others: $(common-objpfx)testrun.sh
28f540f4 154\f
97a47867
UD
155# Makerules creates a file `stubs' in each subdirectory, which
156# contains `#define __stub_FUNCTION' for each function defined in that
157# directory which is a stub.
6bc31da0 158# Here we paste all of these together into <gnu/stubs.h>.
28f540f4 159
97a47867 160subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)$(dir)/stubs)
28f540f4 161
3e1e123d
RM
162ifeq ($(biarch),no)
163installed-stubs = $(inst_includedir)/gnu/stubs.h
164else
165installed-stubs = $(inst_includedir)/gnu/stubs-$(biarch).h
166
167$(inst_includedir)/gnu/stubs.h: include/stubs-biarch.h $(+force)
f0cf0902 168 $(make-target-directory)
3e1e123d
RM
169 $(INSTALL_DATA) $< $@
170
171install-others-nosubdir: $(installed-stubs)
172endif
173
174
28f540f4
RM
175# Since stubs.h is never needed when building the library, we simplify the
176# hairy installation process by producing it in place only as the last part
b9b49b44
UD
177# of the top-level `make install'. It depends on subdir_install, which
178# iterates over all the subdirs; subdir_install in each subdir depends on
179# the subdir's stubs file. Having more direct dependencies would result in
180# extra iterations over the list for subdirs and many recursive makes.
3e1e123d 181$(installed-stubs): include/stubs-prologue.h subdir_install
5107cf1d 182 $(make-target-directory)
28f540f4 183 @rm -f $(objpfx)stubs.h
d62507dd 184 (sed '/^@/d' $<; LC_ALL=C sort $(subdir-stubs)) > $(objpfx)stubs.h
13a0be88 185 if test -r $@ && cmp -s $(objpfx)stubs.h $@; \
ba1ffaa1 186 then echo 'stubs.h unchanged'; \
d36e7692 187 else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
28f540f4
RM
188 rm -f $(objpfx)stubs.h
189\f
190# This makes the Info or DVI file of the documentation from the Texinfo source.
fef0b717
UD
191.PHONY: info dvi pdf html
192info dvi pdf html:
c0e45674 193 $(MAKE) $(PARALLELMFLAGS) -C manual $@
28f540f4
RM
194\f
195# This makes all the subdirectory targets.
196
197# For each target, make it depend on DIR/target for each subdirectory DIR.
198$(+subdir_targets): %: $(addsuffix /%,$(subdirs))
199
200# Compute a list of all those targets.
201all-subdirs-targets := $(foreach dir,$(subdirs),\
202 $(addprefix $(dir)/,$(+subdir_targets)))
203
204# The action for each of those is to cd into the directory and make the
205# target there.
206$(all-subdirs-targets):
e0a3ed4f
RM
207 $(MAKE) $(PARALLELMFLAGS) $(subdir-target-args) $(@F)
208
209define subdir-target-args
210subdir=$(@D)$(if $($(@D)-srcdir),\
211-C $($(@D)-srcdir) ..=`pwd`/,\
212-C $(@D) ..=../)
213endef
28f540f4
RM
214
215.PHONY: $(+subdir_targets) $(all-subdirs-targets)
216\f
217# Targets to clean things up to various degrees.
218
3c5edd4d
UD
219.PHONY: clean realclean distclean distclean-1 parent-clean parent-mostlyclean \
220 tests-clean
28f540f4
RM
221
222# Subroutines of all cleaning targets.
223parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules.
4ddde9ee 224 -rm -f $(foreach o,$(object-suffixes-for-libc),\
60092701
RM
225 $(common-objpfx)$(patsubst %,$(libtype$o),c)) \
226 $(addprefix $(objpfx),$(install-lib))
28f540f4 227parent-clean: parent-mostlyclean common-clean
da2d1bc5
UD
228
229postclean = $(addprefix $(common-objpfx),$(postclean-generated)) \
eaeeb1eb 230 $(addprefix $(objpfx),sysd-dirs sysd-rules) \
4fcddf8e 231 $(addprefix $(objpfx),sysd-sorted soversions.mk soversions.i)
28f540f4
RM
232
233clean: parent-clean
234# This is done this way rather than having `subdir_clean' be a
235# dependency of this target so that libc.a will be removed before the
236# subdirectories are dealt with and so they won't try to remove object
237# files from it when it's going to be removed anyway.
238 @$(MAKE) subdir_clean no_deps=t
b5c69d99 239 -rm -f $(postclean)
28f540f4
RM
240mostlyclean: parent-mostlyclean
241 @$(MAKE) subdir_mostlyclean no_deps=t
da2d1bc5 242 -rm -f $(postclean)
28f540f4 243
3c5edd4d
UD
244tests-clean:
245 @$(MAKE) subdir_testclean no_deps=t
246
16feadf2 247tests: $(objpfx)c++-types-check.out $(objpfx)check-local-headers.out
2750c39c 248ifneq ($(CXX),no)
ad243052 249check-data := $(firstword $(wildcard \
13074b5b
RM
250 $(foreach D,$(add-ons) scripts,\
251 $(patsubst %,$D/data/c++-types-%.data,\
e85f1d6a
RM
252 $(abi-name) \
253 $(addsuffix -$(config-os),\
254 $(config-machine) \
255 $(base-machine))))))
ad243052 256ifneq (,$(check-data))
5ef5cbb6 257$(objpfx)c++-types-check.out: $(check-data) scripts/check-c++-types.sh
f7ffeb91 258 scripts/check-c++-types.sh $< $(CXX) $(filter-out -std=gnu99 -Wstrict-prototypes,$(CFLAGS)) $(CPPFLAGS) > $@
806e4a4a
UD
259else
260$(objpfx)c++-types-check.out:
261 @echo 'WARNING C++ tests not run; create a c++-types-XXX file'
262 @echo "not run" > $@
263endif
2750c39c 264endif
806e4a4a 265
16feadf2
UD
266$(objpfx)check-local-headers.out: scripts/check-local-headers.sh
267 scripts/check-local-headers.sh "$(includedir)" "$(objpfx)" > $@
268
5ef5cbb6
UD
269ifneq ($(PERL),no)
270installed-headers = argp/argp.h assert/assert.h catgets/nl_types.h \
271 crypt/crypt.h ctype/ctype.h debug/execinfo.h \
272 dirent/dirent.h dlfcn/dlfcn.h elf/elf.h elf/link.h \
273 gmon/sys/gmon.h gmon/sys/gmon_out.h gmon/sys/profil.h \
829fea46 274 grp/grp.h gshadow/gshadow.h iconv/iconv.h iconv/gconv.h \
5ef5cbb6
UD
275 $(wildcard inet/netinet/*.h) \
276 $(wildcard inet/arpa/*.h inet/protocols/*.h) \
277 inet/aliases.h inet/ifaddrs.h inet/netinet/ip6.h \
278 inet/netinet/icmp6.h intl/libintl.h io/sys/stat.h \
279 io/sys/statfs.h io/sys/vfs.h io/sys/statvfs.h \
280 io/fcntl.h io/sys/fcntl.h io/poll.h io/sys/poll.h \
281 io/utime.h io/ftw.h io/fts.h io/sys/sendfile.h \
282 libio/stdio.h libio/libio.h locale/locale.h \
283 locale/langinfo.h locale/xlocale.h login/utmp.h \
284 login/lastlog.h login/pty.h malloc/malloc.h \
285 malloc/obstack.h malloc/mcheck.h math/math.h \
286 math/complex.h math/fenv.h math/tgmath.h misc/sys/uio.h \
287 $(wildcard nis/rpcsvc/*.h) nptl_db/thread_db.h \
288 nptl/sysdeps/pthread/pthread.h nptl/semaphore.h \
289 nss/nss.h posix/sys/utsname.h posix/sys/times.h \
290 posix/sys/wait.h posix/sys/types.h posix/unistd.h \
291 posix/glob.h posix/regex.h posix/wordexp.h posix/fnmatch.h\
292 posix/getopt.h posix/tar.h posix/sys/unistd.h \
293 posix/sched.h posix/re_comp.h posix/wait.h \
294 posix/cpio.h posix/spawn.h pwd/pwd.h resolv/resolv.h \
295 resolv/netdb.h $(wildcard resolv/arpa/*.h) \
296 resource/sys/resource.h resource/sys/vlimit.h \
297 resource/sys/vtimes.h resource/ulimit.h rt/aio.h \
298 rt/mqueue.h setjmp/setjmp.h shadow/shadow.h \
299 signal/signal.h signal/sys/signal.h socket/sys/socket.h \
300 socket/sys/un.h stdio-common/printf.h \
301 stdio-common/stdio_ext.h stdlib/stdlib.h stdlib/alloca.h \
302 stdlib/monetary.h stdlib/fmtmsg.h stdlib/ucontext.h \
303 sysdeps/generic/inttypes.h sysdeps/generic/stdint.h \
304 stdlib/errno.h stdlib/sys/errno.h string/string.h \
305 string/strings.h string/memory.h string/endian.h \
306 string/argz.h string/envz.h string/byteswap.h \
307 $(wildcard sunrpc/rpc/*.h sunrpc/rpcsvc/*.h) \
308 sysvipc/sys/ipc.h sysvipc/sys/msg.h sysvipc/sys/sem.h \
309 sysvipc/sys/shm.h termios/termios.h \
310 termios/sys/termios.h termios/sys/ttychars.h time/time.h \
311 time/sys/time.h time/sys/timeb.h wcsmbs/wchar.h \
312 wctype/wctype.h
313
314tests: $(objpfx)begin-end-check.out
315$(objpfx)begin-end-check.out: scripts/begin-end-check.pl
316 $(PERL) scripts/begin-end-check.pl $(installed-headers) > $@
317endif
318
28f540f4
RM
319# The realclean target is just like distclean for the parent, but we want
320# the subdirs to know the difference in case they care.
321realclean distclean: parent-clean
322# This is done this way rather than having `subdir_distclean' be a
323# dependency of this target so that libc.a will be removed before the
324# subdirectories are dealt with and so they won't try to remove object
325# files from it when it's going to be removed anyway.
da2d1bc5
UD
326 @$(MAKE) distclean-1 no_deps=t distclean-1=$@ avoid-generated=yes \
327 sysdep-subdirs="$(sysdep-subdirs)"
328 -rm -f $(postclean)
28f540f4
RM
329
330# Subroutine of distclean and realclean.
331distclean-1: subdir_$(distclean-1)
332 -rm -f $(config-generated)
60092701
RM
333 -rm -f $(addprefix $(objpfx),config.status config.cache config.log)
334 -rm -f $(addprefix $(objpfx),config.make config-name.h config.h)
28f540f4
RM
335ifdef objdir
336 -rm -f $(objpfx)Makefile
337endif
338 -rm -f $(sysdep-$(distclean-1))
339\f
9de06f3c
RM
340# Make the TAGS file for Emacs users.
341
342.PHONY: TAGS
343TAGS:
344 scripts/list-sources.sh | sed -n '/Makefile/p;\
345 $(foreach S,[chsSyl] cxx sh bash pl,\
346 $(subst .,\.,/.$S\(.in\)*$$/p;))' \
347 | $(ETAGS) -o $@ -
348\f
28f540f4 349# Make the distribution tarfile.
62780824 350.PHONY: dist tag-for-dist
28f540f4 351
c7562c74 352generated := $(generated) stubs.h
28f540f4 353
62780824
RM
354files-for-dist := README FAQ INSTALL NOTES configure
355
356tag-of-stem = glibc-$(subst .,_,$*)
04dca8d3 357dist-selector = -r $(tag-of-stem)
62780824 358
7c0cf356 359# Add-ons in the main repository but distributed in their own tar files.
e0a3ed4f 360dist-separate = libidn
a334319f 361
7c0cf356
RM
362glibc-%.tar $(dist-separate:%=glibc-%-%.tar): $(files-for-dist) \
363 $(foreach D,$(dist-separate),\
364 $D/configure)
62780824 365 @rm -fr glibc-$*
e0a3ed4f 366 $(MAKE) -q `find sysdeps $(addsuffix /sysdeps,$(sysdeps-add-ons)) \
5cc59727 367 -name configure`
04dca8d3 368 cvs $(CVSOPTS) -Q export -d glibc-$* $(dist-selector) libc
5cc59727
RM
369# Touch all the configure scripts going into the tarball since cvs export
370# might have delivered configure.in newer than configure.
371 find glibc-$* -name configure -print | xargs touch
7c0cf356 372 $(dist-do-separate-dirs)
62780824
RM
373 tar cf glibc-$*.tar glibc-$*
374 rm -fr glibc-$*
7c0cf356
RM
375define dist-do-separate-dirs
376$(foreach dir,$(dist-separate),
04dca8d3
RM
377 @rm -fr glibc-$(dir)-$*
378 mv glibc-$*/$(dir) glibc-$(dir)-$*
379 tar cf glibc-$(dir)-$*.tar glibc-$(dir)-$*
380 rm -fr glibc-$(dir)-$*
7c0cf356
RM
381)
382endef
62780824 383
7c0cf356
RM
384# Do `make dist dist-version=X.Y.Z' to make tar files of an older version.
385dist-version = $(version)
386
387dist: $(foreach Z,.bz2 .gz,glibc-$(dist-version).tar$Z \
388 $(foreach D,$(dist-separate),\
389 glibc-$D-$(dist-version).tar$Z))
62780824
RM
390 md5sum $^
391
7c0cf356 392tag-for-dist: tag-$(dist-version)
62780824
RM
393tag-%: $(files-for-dist)
394 cvs $(CVSOPTS) -Q tag -c $(tag-of-stem)
395
28f540f4
RM
396define format-me
397@rm -f $@
c9dc3f62 398makeinfo --no-validate --plaintext --no-number-sections $< -o $@
28f540f4
RM
399-chmod a-w $@
400endef
a35cb74d 401INSTALL: manual/install.texi; $(format-me)
28f540f4 402NOTES: manual/creature.texi; $(format-me)
714a562f 403manual/dir-add.texi manual/dir-add.info: FORCE
fe7bdd63 404 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
5bc2f642 405FAQ: scripts/gen-FAQ.pl FAQ.in
61952351 406 $(PERL) $^ > $@.new && rm -f $@ && mv $@.new $@ && chmod a-w $@
a35cb74d
UD
407ifeq ($(with-cvs),yes)
408 test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: $(PERL) $^' $@
409endif
f671aeab 410FORCE:
6a441471 411
9de06f3c 412iconvdata/% localedata/% po/% manual/%: FORCE
f4017d20
UD
413 $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
414
a53bad16
UD
415# glibc 2.0 contains some header files which aren't used with glibc 2.1
416# anymore.
417# These rules should remove those headers
418ifeq (,$(install_root))
419ifeq ($(old-glibc-headers),yes)
420install: remove-old-headers
421endif
422endif
423
424headers2_0 := __math.h bytesex.h confname.h direntry.h elfclass.h \
425 errnos.h fcntlbits.h huge_val.h ioctl-types.h \
426 ioctls.h iovec.h jmp_buf.h libc-lock.h local_lim.h \
427 mathcalls.h mpool.h nan.h ndbm.h posix1_lim.h \
428 posix2_lim.h posix_opt.h resourcebits.h schedbits.h \
429 selectbits.h semaphorebits.h sigaction.h sigcontext.h \
430 signum.h sigset.h sockaddrcom.h socketbits.h stab.def \
431 statbuf.h statfsbuf.h stdio-lock.h stdio_lim.h \
432 syscall-list.h termbits.h timebits.h ustatbits.h \
433 utmpbits.h utsnamelen.h waitflags.h waitstatus.h \
434 xopen_lim.h gnu/types.h sys/ipc_buf.h \
435 sys/kernel_termios.h sys/msq_buf.h sys/sem_buf.h \
a7ab2023 436 sys/shm_buf.h sys/socketcall.h sigstack.h
a53bad16 437
b195f6bc 438.PHONY: remove-old-headers
a53bad16
UD
439remove-old-headers:
440 rm -f $(addprefix $(inst_includedir)/, $(headers2_0))
This page took 0.267049 seconds and 5 git commands to generate.