Install charmaps uncompressed in testroot
[platform/upstream/glibc.git] / Makefile
1 # Copyright (C) 1991-2019 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 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.
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 # Lesser General Public License for more details.
13
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <https://www.gnu.org/licenses/>.
17
18 #
19 #       Master Makefile for the GNU C library
20 #
21 ifneq (,)
22 This makefile requires GNU Make.
23 endif
24
25 include Makeconfig
26
27
28 # This is the default target; it makes everything except the tests.
29 .PHONY: all help minihelp
30 all: minihelp lib others
31
32 help:
33         @sed '0,/^help-starts-here$$/d' Makefile.help
34
35 minihelp:
36         @echo
37         @echo type \"make help\" for help with common glibc makefile targets
38         @echo
39
40 \f
41 ifneq ($(AUTOCONF),no)
42
43 define autoconf-it
44 @-rm -f $@.new
45 $(AUTOCONF) $(ACFLAGS) $< > $@.new
46 chmod a-w$(patsubst %,$(comma)a+x,$(filter .,$(@D))) $@.new
47 mv -f $@.new $@
48 endef
49
50 configure: configure.ac aclocal.m4; $(autoconf-it)
51 %/configure: %/configure.ac aclocal.m4; $(autoconf-it)
52 %/preconfigure: %/preconfigure.ac aclocal.m4; $(autoconf-it)
53
54 endif # $(AUTOCONF) = no
55
56
57 # We don't want to run anything here in parallel.
58 .NOTPARALLEL:
59
60 # These are the targets that are made by making them in each subdirectory.
61 +subdir_targets := subdir_lib objects objs others subdir_mostlyclean    \
62                    subdir_clean subdir_distclean subdir_realclean       \
63                    tests xtests                                         \
64                    subdir_update-abi subdir_check-abi                   \
65                    subdir_update-all-abi                                \
66                    subdir_echo-headers                                  \
67                    subdir_install                                       \
68                    subdir_objs subdir_stubs subdir_testclean            \
69                    $(addprefix install-, no-libc.a bin lib data headers others)
70 \f
71 headers := limits.h values.h features.h gnu-versions.h \
72            bits/xopen_lim.h gnu/libc-version.h stdc-predef.h \
73            bits/libc-header-start.h
74
75 echo-headers: subdir_echo-headers
76
77 # The headers are in the include directory.
78 subdir-dirs = include
79 vpath %.h $(subdir-dirs)
80
81 # What to install.
82 install-others = $(inst_includedir)/gnu/stubs.h
83 install-bin-script =
84
85 ifeq (yes,$(build-shared))
86 headers += gnu/lib-names.h
87 endif
88
89 include Makerules
90
91 ifeq ($(build-programs),yes)
92 others: $(addprefix $(objpfx),$(install-bin-script))
93 endif
94
95 # Install from subdirectories too.
96 install: subdir_install
97
98 # Explicit dependency so that `make install-headers' works
99 install-headers: install-headers-nosubdir
100
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
105 elf/ldso_install:
106         $(MAKE) -C $(@D) $(@F)
107
108 # Create links for shared libraries using the `ldconfig' program if possible.
109 # Ignore the error if we cannot update /etc/ld.so.cache.
110 ifeq (no,$(cross-compiling))
111 ifeq (yes,$(build-shared))
112 install: install-symbolic-link
113 .PHONY: install-symbolic-link
114 install-symbolic-link: subdir_install
115         $(symbolic-link-prog) $(symbolic-link-list)
116         rm -f $(symbolic-link-list)
117
118 install:
119         -test ! -x $(elf-objpfx)ldconfig || LC_ALL=C \
120           $(elf-objpfx)ldconfig $(addprefix -r ,$(install_root)) \
121                                 $(slibdir) $(libdir)
122 ifneq (no,$(PERL))
123 ifeq (/usr,$(prefix))
124 ifeq (,$(install_root))
125         LD_SO=$(ld.so-version) CC="$(CC)" $(PERL) scripts/test-installation.pl $(common-objpfx)
126 endif
127 endif
128 endif
129 endif
130 endif
131
132 # Build subdirectory lib objects.
133 lib-noranlib: subdir_lib
134
135 ifeq (yes,$(build-shared))
136 # Build the shared object from the PIC object library.
137 lib: $(common-objpfx)libc.so $(common-objpfx)linkobj/libc.so
138 endif # $(build-shared)
139
140 # Used to build testrun.sh.
141 define testrun-script
142 #!/bin/bash
143 builddir=`dirname "$$0"`
144 GCONV_PATH="$${builddir}/iconvdata"
145
146 usage () {
147   echo "usage: $$0 [--tool=strace] PROGRAM [ARGUMENTS...]" 2>&1
148   echo "       $$0 --tool=valgrind PROGRAM [ARGUMENTS...]" 2>&1
149   exit 1
150 }
151
152 toolname=default
153 while test $$# -gt 0 ; do
154   case "$$1" in
155     --tool=*)
156       toolname="$${1:7}"
157       shift
158       ;;
159     --*)
160       usage
161       ;;
162     *)
163       break
164       ;;
165   esac
166 done
167
168 if test $$# -eq 0 ; then
169   usage
170 fi
171
172 case "$$toolname" in
173   default)
174     exec $(subst $(common-objdir),"$${builddir}", $(test-program-prefix)) \
175       $${1+"$$@"}
176     ;;
177   strace)
178     exec strace $(patsubst %, -E%, $(run-program-env)) \
179       $(test-via-rtld-prefix) $${1+"$$@"}
180     ;;
181   valgrind)
182     exec env $(run-program-env) valgrind $(test-via-rtld-prefix) $${1+"$$@"}
183     ;;
184   *)
185     usage
186     ;;
187 esac
188 endef
189
190 # This is a handy script for running any dynamically linked program against
191 # the current libc build for testing.
192 $(common-objpfx)testrun.sh: $(common-objpfx)config.make \
193                             $(..)Makeconfig $(..)Makefile
194         $(file >$@T,$(testrun-script))
195         chmod a+x $@T
196         mv -f $@T $@
197 postclean-generated += testrun.sh
198
199 define debugglibc
200 #!/bin/bash
201
202 SOURCE_DIR="$(CURDIR)"
203 BUILD_DIR="$(common-objpfx)"
204 CMD_FILE="$(common-objpfx)debugglibc.gdb"
205 DIRECT=true
206 SYMBOLSFILE=true
207 unset TESTCASE
208 unset BREAKPOINTS
209 unset ENVVARS
210
211 usage()
212 {
213 cat << EOF
214 Usage: $$0 [OPTIONS] <program>
215
216    Or: $$0 [OPTIONS] -- <program> [<args>]...
217
218   where <program> is the path to the program being tested,
219   and <args> are the arguments to be passed to it.
220
221 Options:
222
223   -h, --help
224         Prints this message and leaves.
225
226   The following options require one argument:
227
228   -b, --breakpoint
229         Breakpoints to set at the beginning of the execution
230         (each breakpoint demands its own -b option, e.g. -b foo -b bar)
231   -e, --environment-variable
232         Environment variables to be set with 'exec-wrapper env' in GDB
233         (each environment variable demands its own -e option, e.g.
234         -e FOO=foo -e BAR=bar)
235
236   The following options do not take arguments:
237
238   -i, --no-direct
239         Selects whether to pass the --direct flag to the program.
240         --direct is useful when debugging glibc test cases. It inhibits the
241         tests from forking and executing in a subprocess.
242         Default behaviour is to pass the --direct flag, except when the
243         program is run with user specified arguments using the "--" separator.
244   -s, --no-symbols-file
245         Do not tell GDB to load debug symbols from the program.
246 EOF
247 }
248
249 # Parse input options
250 while [[ $$# > 0 ]]
251 do
252   key="$$1"
253   case $$key in
254     -h|--help)
255       usage
256       exit 0
257       ;;
258     -b|--breakpoint)
259       BREAKPOINTS="break $$2\n$$BREAKPOINTS"
260       shift
261       ;;
262     -e|--environment-variable)
263       ENVVARS="$$2 $$ENVVARS"
264       shift
265       ;;
266     -i|--no-direct)
267       DIRECT=false
268       ;;
269     -s|--no-symbols-file)
270       SYMBOLSFILE=false
271       ;;
272     --)
273       shift
274       TESTCASE=$$1
275       COMMANDLINE="$$@"
276       # Don't add --direct when user specifies program arguments
277       DIRECT=false
278       break
279       ;;
280     *)
281       TESTCASE=$$1
282       COMMANDLINE=$$TESTCASE
283       ;;
284   esac
285   shift
286 done
287
288 # Check for required argument
289 if [ ! -v TESTCASE ]
290 then
291   usage
292   exit 1
293 fi
294
295 # Expand environment setup command
296 if [ -v ENVVARS ]
297 then
298   ENVVARSCMD="set exec-wrapper env $$ENVVARS"
299 fi
300
301 # Expand direct argument
302 if [ "$$DIRECT" == true ]
303 then
304   DIRECT="--direct"
305 else
306   DIRECT=""
307 fi
308
309 # Expand symbols loading command
310 if [ "$$SYMBOLSFILE" == true ]
311 then
312   SYMBOLSFILE="add-symbol-file $${TESTCASE}"
313 else
314   SYMBOLSFILE=""
315 fi
316
317 # GDB commands template
318 template ()
319 {
320 cat <<EOF
321 set environment C -E -x c-header
322 set auto-load safe-path $${BUILD_DIR}/nptl_db:\$$debugdir:\$$datadir/auto-load
323 set libthread-db-search-path $${BUILD_DIR}/nptl_db
324 __ENVVARS__
325 __SYMBOLSFILE__
326 break _dl_start_user
327 run --library-path $(rpath-link):$${BUILD_DIR}/nptl_db \
328 __COMMANDLINE__ __DIRECT__
329 __BREAKPOINTS__
330 EOF
331 }
332
333 # Generate the commands file for gdb initialization
334 template | sed \
335   -e "s|__ENVVARS__|$$ENVVARSCMD|" \
336   -e "s|__SYMBOLSFILE__|$$SYMBOLSFILE|" \
337   -e "s|__COMMANDLINE__|$$COMMANDLINE|" \
338   -e "s|__DIRECT__|$$DIRECT|" \
339   -e "s|__BREAKPOINTS__|$$BREAKPOINTS|" \
340   > $$CMD_FILE
341
342 echo
343 echo "Debugging glibc..."
344 echo "Build directory  : $$BUILD_DIR"
345 echo "Source directory : $$SOURCE_DIR"
346 echo "GLIBC Testcase   : $$TESTCASE"
347 echo "GDB Commands     : $$CMD_FILE"
348 echo "Env vars         : $$ENVVARS"
349 echo
350
351 # Start the test case debugging in two steps:
352 #   1. the following command invokes gdb to run the loader;
353 #   2. the commands file tells the loader to run the test case.
354 gdb -q \
355   -x $${CMD_FILE} \
356   -d $${SOURCE_DIR} \
357   $${BUILD_DIR}/elf/ld.so
358 endef
359
360 # This is another handy script for debugging dynamically linked program
361 # against the current libc build for testing.
362 $(common-objpfx)debugglibc.sh: $(common-objpfx)config.make \
363                             $(..)Makeconfig $(..)Makefile
364         $(file >$@T,$(debugglibc))
365         chmod a+x $@T
366         mv -f $@T $@
367 postclean-generated += debugglibc.sh debugglibc.gdb
368
369 others: $(common-objpfx)testrun.sh $(common-objpfx)debugglibc.sh
370 \f
371 # Makerules creates a file `stubs' in each subdirectory, which
372 # contains `#define __stub_FUNCTION' for each function defined in that
373 # directory which is a stub.
374 # Here we paste all of these together into <gnu/stubs.h>.
375
376 subdir-stubs := $(foreach dir,$(subdirs),$(common-objpfx)$(dir)/stubs)
377
378 ifndef abi-variants
379 installed-stubs = $(inst_includedir)/gnu/stubs.h
380 else
381 installed-stubs = $(inst_includedir)/gnu/stubs-$(default-abi).h
382
383 $(inst_includedir)/gnu/stubs.h: $(+force)
384         $(make-target-directory)
385         { \
386          echo '/* This file is automatically generated.';\
387          echo "   This file selects the right generated file of \`__stub_FUNCTION' macros";\
388          echo '   based on the architecture being compiled for.  */'; \
389          echo ''; \
390          $(foreach h,$(abi-includes), echo '#include <$(h)>';) \
391          echo ''; \
392          $(foreach v,$(abi-variants),\
393          $(if $(abi-$(v)-condition),\
394          echo '#if $(abi-$(v)-condition)'; \
395          echo '# include <gnu/stubs-$(v).h>'); \
396          $(if $(abi-$(v)-condition),echo '#endif';) \
397          rm -f $(@:.d=.h).new$(v); \
398          ) \
399         } > $(@:.d=.h).new
400         mv -f $(@:.d=.h).new $(@:.d=.h)
401
402 install-others-nosubdir: $(installed-stubs)
403 endif
404
405
406 # Since stubs.h is never needed when building the library, we simplify the
407 # hairy installation process by producing it in place only as the last part
408 # of the top-level `make install'.  It depends on subdir_install, which
409 # iterates over all the subdirs; subdir_install in each subdir depends on
410 # the subdir's stubs file.  Having more direct dependencies would result in
411 # extra iterations over the list for subdirs and many recursive makes.
412 $(installed-stubs): include/stubs-prologue.h subdir_install
413         $(make-target-directory)
414         @rm -f $(objpfx)stubs.h
415         (sed '/^@/d' $<; LC_ALL=C sort $(subdir-stubs)) > $(objpfx)stubs.h
416         if test -r $@ && cmp -s $(objpfx)stubs.h $@; \
417         then echo 'stubs.h unchanged'; \
418         else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
419         rm -f $(objpfx)stubs.h
420 \f
421 # This makes the Info or DVI file of the documentation from the Texinfo source.
422 .PHONY: info dvi pdf html
423 info dvi pdf html:
424         $(MAKE) $(PARALLELMFLAGS) -C manual $@
425 \f
426 # This makes all the subdirectory targets.
427
428 # For each target, make it depend on DIR/target for each subdirectory DIR.
429 $(+subdir_targets): %: $(addsuffix /%,$(subdirs))
430
431 # Compute a list of all those targets.
432 all-subdirs-targets := $(foreach dir,$(subdirs),\
433                                  $(addprefix $(dir)/,$(+subdir_targets)))
434
435 # The action for each of those is to cd into the directory and make the
436 # target there.
437 $(all-subdirs-targets):
438         $(MAKE) $(PARALLELMFLAGS) $(subdir-target-args) $(@F)
439
440 define subdir-target-args
441 subdir=$(@D)$(if $($(@D)-srcdir),\
442 -C $($(@D)-srcdir) ..=`pwd`/,\
443 -C $(@D) ..=../)
444 endef
445
446 .PHONY: $(+subdir_targets) $(all-subdirs-targets)
447 \f
448 # Targets to clean things up to various degrees.
449
450 .PHONY: clean realclean distclean distclean-1 parent-clean parent-mostlyclean \
451         tests-clean
452
453 # Subroutines of all cleaning targets.
454 parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules.
455         -rm -f $(foreach o,$(object-suffixes-for-libc),\
456                    $(common-objpfx)$(patsubst %,$(libtype$o),c)) \
457                $(addprefix $(objpfx),$(install-lib))
458 parent-clean: parent-mostlyclean common-clean
459
460 postclean = $(addprefix $(common-objpfx),$(postclean-generated)) \
461             $(addprefix $(objpfx),sysd-dirs sysd-rules) \
462             $(addprefix $(objpfx),sysd-sorted soversions.mk soversions.i)
463
464 clean: parent-clean
465 # This is done this way rather than having `subdir_clean' be a
466 # dependency of this target so that libc.a will be removed before the
467 # subdirectories are dealt with and so they won't try to remove object
468 # files from it when it's going to be removed anyway.
469         @$(MAKE) subdir_clean no_deps=t
470         -rm -f $(postclean)
471 mostlyclean: parent-mostlyclean
472         @$(MAKE) subdir_mostlyclean no_deps=t
473         -rm -f $(postclean)
474
475 tests-clean:
476         @$(MAKE) subdir_testclean no_deps=t
477
478 ifneq (,$(CXX))
479 vpath c++-types.data $(+sysdep_dirs)
480
481 tests-special += $(objpfx)c++-types-check.out
482 $(objpfx)c++-types-check.out: c++-types.data scripts/check-c++-types.sh
483         scripts/check-c++-types.sh $< $(CXX) $(filter-out -std=gnu11 $(+gccwarn-c),$(CFLAGS)) $(CPPFLAGS) > $@; \
484         $(evaluate-test)
485 endif
486
487 tests-special += $(objpfx)check-local-headers.out
488 $(objpfx)check-local-headers.out: scripts/check-local-headers.sh
489         AWK='$(AWK)' scripts/check-local-headers.sh \
490           "$(includedir)" "$(objpfx)" < /dev/null > $@; \
491         $(evaluate-test)
492
493 ifneq "$(headers)" ""
494 # Special test of all the installed headers in this directory.
495 tests-special += $(objpfx)check-installed-headers-c.out
496 libof-check-installed-headers-c := testsuite
497 $(objpfx)check-installed-headers-c.out: \
498     scripts/check-installed-headers.sh $(headers)
499         $(SHELL) $(..)scripts/check-installed-headers.sh c \
500           "$(CC) $(filter-out -std=%,$(CFLAGS)) -D_ISOMAC $(+includes)" \
501           $(headers) > $@; \
502         $(evaluate-test)
503
504 ifneq "$(CXX)" ""
505 tests-special += $(objpfx)check-installed-headers-cxx.out
506 libof-check-installed-headers-cxx := testsuite
507 $(objpfx)check-installed-headers-cxx.out: \
508     scripts/check-installed-headers.sh $(headers)
509         $(SHELL) $(..)scripts/check-installed-headers.sh c++ \
510           "$(CXX) $(filter-out -std=%,$(CXXFLAGS)) -D_ISOMAC $(+includes)" \
511           $(headers) > $@; \
512         $(evaluate-test)
513 endif # $(CXX)
514
515 tests-special += $(objpfx)check-wrapper-headers.out
516 $(objpfx)check-wrapper-headers.out: scripts/check-wrapper-headers.py $(headers)
517         $(PYTHON) $< --root=. --subdir=. $(headers) \
518           --generated $(common-generated) > $@; $(evaluate-test)
519 endif # $(headers)
520
521 define summarize-tests
522 @egrep -v '^(PASS|XFAIL):' $(objpfx)$1 || true
523 @echo "Summary of test results$2:"
524 @sed 's/:.*//' < $(objpfx)$1 | sort | uniq -c
525 @! egrep -q -v '^(X?PASS|XFAIL|UNSUPPORTED):' $(objpfx)$1
526 endef
527
528 # The intention here is to do ONE install of our build into the
529 # testroot.pristine/ directory, then rsync (internal to
530 # support/test-container) that to testroot.root/ at the start of each
531 # test.  That way we can promise each test a "clean" install, without
532 # having to do the install for each test.
533 #
534 # In addition, we have to copy some files (which we build) into this
535 # root in addition to what glibc installs.  For example, many tests
536 # require additional programs including /bin/sh, /bin/true, and
537 # /bin/echo, all of which we build below to limit library dependencies
538 # to just those things in glibc and language support libraries which
539 # we also copy into the into the rootfs.  To determine what language
540 # support libraries we need we build a "test" program in either C or
541 # (if available) C++ just so we can copy in any shared objects
542 # (which we do not build) that GCC-compiled programs depend on.
543
544
545 ifeq (,$(CXX))
546 LINKS_DSO_PROGRAM = links-dso-program-c
547 else
548 LINKS_DSO_PROGRAM = links-dso-program
549 endif
550
551 $(tests-container) $(addsuffix /tests,$(subdirs)) : \
552                 $(objpfx)testroot.pristine/install.stamp
553 $(objpfx)testroot.pristine/install.stamp :
554         test -d $(objpfx)testroot.pristine || \
555           mkdir $(objpfx)testroot.pristine
556         # We need a working /bin/sh for some of the tests.
557         test -d $(objpfx)testroot.pristine/bin || \
558           mkdir $(objpfx)testroot.pristine/bin
559         cp $(objpfx)support/shell-container $(objpfx)testroot.pristine/bin/sh
560         cp $(objpfx)support/echo-container $(objpfx)testroot.pristine/bin/echo
561         cp $(objpfx)support/true-container $(objpfx)testroot.pristine/bin/true
562 ifeq ($(run-built-tests),yes)
563         # Copy these DSOs first so we can overwrite them with our own.
564         for dso in `$(test-wrapper-env) LD_TRACE_LOADED_OBJECTS=1  \
565                 $(rtld-prefix) \
566                 $(objpfx)testroot.pristine/bin/sh \
567                 | sed -n '/\//{s@.*=> /@/@;s/^[^/]*//;s/ .*//p;}'` ;\
568           do \
569             test -d `dirname $(objpfx)testroot.pristine$$dso` || \
570               mkdir -p `dirname $(objpfx)testroot.pristine$$dso` ;\
571             $(test-wrapper) cp $$dso $(objpfx)testroot.pristine$$dso ;\
572           done
573         for dso in `$(test-wrapper-env) LD_TRACE_LOADED_OBJECTS=1  \
574                 $(rtld-prefix) \
575                 $(objpfx)support/$(LINKS_DSO_PROGRAM) \
576                 | sed -n '/\//{s@.*=> /@/@;s/^[^/]*//;s/ .*//p;}'` ;\
577           do \
578             test -d `dirname $(objpfx)testroot.pristine$$dso` || \
579               mkdir -p `dirname $(objpfx)testroot.pristine$$dso` ;\
580             $(test-wrapper) cp $$dso $(objpfx)testroot.pristine$$dso ;\
581           done
582 endif
583         # $(symbolic-link-list) is a file that encodes $(DESTDIR) so we
584         # have to purge it
585         rm -f $(symbolic-link-list)
586         # Setting INSTALL_UNCOMPRESSED causes localedata/Makefile to
587         # install the charmaps uncompressed, as the testroot does not
588         # provide a gunzip program.
589         $(MAKE) install DESTDIR=$(objpfx)testroot.pristine \
590           INSTALL_UNCOMPRESSED=yes subdirs='$(sorted-subdirs)'
591         rm -f $(symbolic-link-list)
592         touch $(objpfx)testroot.pristine/install.stamp
593
594 tests-special-notdir = $(patsubst $(objpfx)%, %, $(tests-special))
595 tests: $(tests-special)
596         $(..)scripts/merge-test-results.sh -s $(objpfx) "" \
597           $(sort $(tests-special-notdir:.out=)) \
598           > $(objpfx)subdir-tests.sum
599         $(..)scripts/merge-test-results.sh -t $(objpfx) subdir-tests.sum \
600           $(sort $(subdirs) .) \
601           > $(objpfx)tests.sum
602         $(call summarize-tests,tests.sum)
603 xtests:
604         $(..)scripts/merge-test-results.sh -t $(objpfx) subdir-xtests.sum \
605           $(sort $(subdirs)) \
606           > $(objpfx)xtests.sum
607         $(call summarize-tests,xtests.sum, for extra tests)
608
609 # The realclean target is just like distclean for the parent, but we want
610 # the subdirs to know the difference in case they care.
611 realclean distclean: parent-clean
612 # This is done this way rather than having `subdir_distclean' be a
613 # dependency of this target so that libc.a will be removed before the
614 # subdirectories are dealt with and so they won't try to remove object
615 # files from it when it's going to be removed anyway.
616         @$(MAKE) distclean-1 no_deps=t distclean-1=$@ avoid-generated=yes \
617                  sysdep-subdirs="$(sysdep-subdirs)"
618         -rm -f $(postclean)
619
620 # Subroutine of distclean and realclean.
621 distclean-1: subdir_$(distclean-1)
622         -rm -f $(config-generated)
623         -rm -f $(addprefix $(objpfx),config.status config.cache config.log)
624         -rm -f $(addprefix $(objpfx),config.make config-name.h config.h)
625 ifdef objdir
626         -rm -f $(objpfx)Makefile
627 endif
628         -rm -f $(sysdep-$(distclean-1))
629 \f
630 # Make the TAGS file for Emacs users.
631
632 .PHONY: TAGS
633 TAGS:
634         scripts/list-sources.sh | sed -n -e '/Makefile/p' \
635           $(foreach S,[chsSyl] cxx sh bash pl,\
636                     $(subst .,\.,-e '/.$S\(.in\)*$$/p')) \
637         | $(ETAGS) -o $@ -
638 \f
639 # Make the distribution tarfile.
640 .PHONY: dist dist-prepare
641
642 generated := $(generated) stubs.h
643
644 files-for-dist := README INSTALL configure ChangeLog NEWS
645
646 # Regenerate stuff, then error if these things are not committed yet.
647 dist-prepare: $(files-for-dist)
648         conf=`find sysdeps -name configure`; \
649         $(MAKE) $$conf && \
650         git diff --stat HEAD -- $^ $$conf \
651         | $(AWK) '{ print; rc=1 } END { exit rc }'
652
653 %.tar: FORCE
654         git archive --prefix=$*/ $* > $@.new
655         mv -f $@.new $@
656
657 # Do `make dist dist-version=X.Y.Z' to make tar files of an older version.
658
659 ifneq (,$(strip $(dist-version)))
660 dist: $(foreach Z,.bz2 .gz .xz,$(dist-version).tar$Z)
661         md5sum $^
662 else
663 dist: dist-prepare
664         @if v=`git describe`; then \
665           echo Distribution version $$v; \
666           $(MAKE) dist dist-version=$$v; \
667         else \
668           false; \
669         fi
670 endif
671
672 INSTALL: manual/install-plain.texi manual/macros.texi \
673          $(common-objpfx)manual/pkgvers.texi manual/install.texi
674         makeinfo --no-validate --plaintext --no-number-sections \
675                  -I$(common-objpfx)manual $< -o $@-tmp
676         $(AWK) 'NF == 0 { ++n; next } \
677                 NF != 0 { while (n-- > 0) print ""; n = 0; print }' \
678           < $@-tmp > $@-tmp2
679         rm -f $@-tmp
680         -chmod a-w $@-tmp2
681         mv -f $@-tmp2 $@
682 $(common-objpfx)manual/%: FORCE
683         $(MAKE) $(PARALLELMFLAGS) -C manual $@
684 FORCE:
685
686 iconvdata/% localedata/% po/%: FORCE
687         $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
688
689 # Convenience target to rerun one test, from the top of the build tree
690 # Example: make test t=wcsmbs/test-wcsnlen
691 .PHONY: test
692 test :
693         @-rm -f $(objpfx)$t.out
694         $(MAKE) subdir=$(dir $t) -C $(dir $t) ..=../ $(objpfx)$t.out
695         @cat $(objpfx)$t.test-result
696         @cat $(objpfx)$t.out