Put all dummy definitions of gnulib-tool's specification macros into
[gnulib.git] / gnulib-tool
1 #! /bin/sh
2 #
3 # Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program 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
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 #
19
20 # This program is meant for authors or maintainers which want to import
21 # modules from gnulib into their packages.
22
23 progname=$0
24 package=gnulib
25 cvsdatestamp='$Date: 2005-08-31 20:51:09 $'
26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
28
29 # You can set AUTOCONFPATH to empty if autoconf 2.57 is already in your PATH.
30 AUTOCONFPATH=
31 #case $USER in
32 #  bruno )
33 #    AUTOCONFBINDIR=/packages/gnu-inst-autoconf/2.57/bin
34 #    AUTOCONFPATH="eval env PATH=${AUTOCONFBINDIR}:\$PATH "
35 #    ;;
36 #esac
37
38 AUTORECONF="${AUTOCONFPATH}autoreconf"
39
40 # func_usage
41 # outputs to stdout the --help usage message.
42 func_usage ()
43 {
44   echo "\
45 Usage: gnulib-tool --list
46        gnulib-tool --import [module1 ... moduleN]
47        gnulib-tool --create-testdir --dir=directory module1 ... moduleN
48        gnulib-tool --create-megatestdir --dir=directory [module1 ... moduleN]
49        gnulib-tool --test --dir=directory module1 ... moduleN
50        gnulib-tool --megatest --dir=directory [module1 ... moduleN]
51        gnulib-tool --extract-description module
52        gnulib-tool --extract-filelist module
53        gnulib-tool --extract-dependencies module
54        gnulib-tool --extract-autoconf-snippet module
55        gnulib-tool --extract-automake-snippet module
56        gnulib-tool --extract-include-directive module
57        gnulib-tool --extract-license module
58        gnulib-tool --extract-maintainer module
59        gnulib-tool --extract-tests-module module
60
61 Operation modes:
62       --list                print the available module names
63       --import              import the given modules into the current package
64       --create-testdir      create a scratch package with the given modules
65       --create-megatestdir  create a mega scratch package with the given modules
66                             one by one and all together
67       --test                test the combination of the given modules
68                             (recommended to use CC=\"gcc -Wall\" here)
69       --megatest            test the given modules one by one and all together
70                             (recommended to use CC=\"gcc -Wall\" here)
71       --extract-description        extract the description
72       --extract-filelist           extract the list of files
73       --extract-dependencies       extract the dependencies
74       --extract-autoconf-snippet   extract the snippet for configure.ac
75       --extract-automake-snippet   extract the snippet for lib/Makefile.am
76       --extract-include-directive  extract the #include directive
77       --extract-license            report the license terms of the source files
78                                    under lib/
79       --extract-maintainer         report the maintainer(s) inside gnulib
80       --extract-tests-module       report the unit test module, if it exists
81
82 Options:
83       --dir=DIRECTORY       specify the target directory
84                             For --import, this specifies where your
85                             configure.ac can be found.  Defaults to current
86                             directory.
87       --lib=LIBRARY         Specify the library name.  Defaults to 'libgnu'.
88       --source-base=DIRECTORY
89                             Directory relative --dir where source code is
90                             placed (default \"lib\"), for --import.
91       --m4-base=DIRECTORY   Directory relative --dir where *.m4 macros are
92                             placed (default \"m4\"), for --import.
93       --tests-base=DIRECTORY
94                             Directory relative --dir where unit tests are
95                             placed (default \"tests\"), for --import.
96       --aux-dir=DIRECTORY   Directory relative --dir where auxiliary build
97                             tools are placed (default \"build-aux\").
98       --with-tests          Include unit tests for the included modules.
99       --avoid=MODULE        Avoid including the given MODULE. Useful if you
100                             have code that provides equivalent functionality.
101                             This option can be repeated.
102       --lgpl                Abort if modules aren't available under the LGPL.
103                             Also modify license template from GPL to LGPL.
104       --libtool             Use libtool rules, for --import.
105       --macro-prefix=PREFIX  Specify the prefix of the macros 'gl_EARLY' and
106                             'gl_INIT'. Default is 'gl'.
107       --no-changelog        don't update or create ChangeLog files
108       --dry-run             For --import, only print what would have been done.
109   -s, --symbolic, --symlink Make symbolic links instead of copying files.
110
111 Report bugs to <bug-gnulib@gnu.org>."
112 }
113
114 # func_version
115 # outputs to stdout the --version message.
116 func_version ()
117 {
118   echo "$progname (GNU $package) $version"
119   echo "Copyright (C) 2002-2005 Free Software Foundation, Inc.
120 This is free software; see the source for copying conditions.  There is NO
121 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
122   echo "Written by" "Bruno Haible" "and" "Simon Josefsson"
123 }
124
125 # func_fatal_error message
126 # outputs to stderr a fatal error message, and terminates the program.
127 func_fatal_error ()
128 {
129   echo "gnulib-tool: *** $1" 1>&2
130   echo "gnulib-tool: *** Stop." 1>&2
131   exit 1
132 }
133
134 # func_cp_if_changed SRC DEST
135 # Like cp, but avoids munging timestamps if the file hasn't changed.
136 # Uses also the variables
137 # - dry_run         true if actions shall only be printed, blank otherwise
138 func_cp_if_changed ()
139 {
140   if test $# -ne 2; then
141     echo "usage: func_cp_if_changed SRC DEST" >&2
142   fi
143   test -n "$dry_run" && dry=echo
144   if cmp "$1" "$2" >/dev/null 2>&1; then
145     :
146   else
147     $dry cp -p "$1" "$2"
148   fi
149 }
150
151 # func_mv_if_changed SRC DEST
152 # Like mv, but avoids munging timestamps if the file hasn't changed.
153 # Removes SRC if it is not renamed.
154 # Uses also the variables
155 # - dry_run         true if actions shall only be printed, blank otherwise
156 func_mv_if_changed ()
157 {
158   if test $# -ne 2; then
159     echo "usage: func_mv_if_changed SRC DEST" >&2
160   fi
161   test -n "$dry_run" && dry=echo
162   if cmp "$1" "$2" >/dev/null 2>&1; then
163     $dry rm "$1"
164   else
165     $dry mv "$1" "$2"
166   fi
167 }
168
169 # func_ln_if_changed SRC DEST
170 # Like ln -s, but avoids munging timestamps if the link is correct.
171 # Uses also the variables
172 # - dry_run         true if actions shall only be printed, blank otherwise
173 func_ln_if_changed ()
174 {
175   if test $# -ne 2; then
176     echo "usage: func_ln_if_changed SRC DEST" >&2
177   fi
178   test -n "$dry_run" && dry=echo
179   if test -L "$2" -a "$1" = "`readlink "$2"`"; then
180     :
181   else
182     $dry rm -f "$2"
183     $dry ln -s "$1" "$2"
184   fi
185 }
186
187 # Command-line option processing.
188 # Removes the OPTIONS from the arguments. Sets the variables:
189 # - mode            list or import or create-testdir or create-megatestdir
190 # - destdir         from --dir
191 # - libname, supplied_libname  from --lib
192 # - sourcebase      from --source-base
193 # - m4base          from --m4-base
194 # - testsbase       from --tests-base
195 # - auxdir          from --aux-dir
196 # - inctests        true if --with-tests was given, blank otherwise
197 # - avoidlist       list of modules to avoid, from --avoid
198 # - lgpl            true if --lgpl was given, blank otherwise
199 # - libtool         true if --libtool was given, blank otherwise
200 # - do_changelog    false if --no-changelog was given, : otherwise
201 # - dry_run         true if --dry-run was given, blank otherwise
202 {
203   mode=
204   destdir=
205   libname=libgnu
206   supplied_libname=
207   sourcebase=
208   m4base=
209   testsbase=
210   auxdir=
211   inctests=
212   avoidlist=
213   lgpl=
214   libtool=
215   macro_prefix=
216   do_changelog=:
217   dry_run=
218   symbolic=
219
220   supplied_opts="$@"
221
222   while test $# -gt 0; do
223     case "$1" in
224       --list | --lis )
225         mode=list
226         shift ;;
227       --import | --impor | --impo | --imp | --im | --i )
228         mode=import
229         shift ;;
230       --create-testdir | --create-testdi | --create-testd | --create-test | --create-tes | --create-te | --create-t )
231         mode=create-testdir
232         shift ;;
233       --create-megatestdir | --create-megatestdi | --create-megatestd | --create-megatest | --create-megates | --create-megate | --create-megat | --create-mega | --create-meg | --create-me | --create-m )
234         mode=create-megatestdir
235         shift ;;
236       --test | --tes | --te | --t )
237         mode=test
238         shift ;;
239       --megatest | --megates | --megate | --megat | --mega | --meg | --me | --m )
240         mode=megatest
241         shift ;;
242       --extract-* )
243         mode=`echo "X$1" | sed -e 's/^X--//'`
244         shift ;;
245       --dir )
246         shift
247         if test $# = 0; then
248           func_fatal_error "missing argument for --dir"
249         fi
250         destdir=$1
251         shift ;;
252       --dir=* )
253         destdir=`echo "X$1" | sed -e 's/^X--dir=//'`
254         shift ;;
255       --lib )
256         shift
257         if test $# = 0; then
258           func_fatal_error "missing argument for --lib"
259         fi
260         libname=$1
261         supplied_libname=true
262         shift ;;
263       --lib=* )
264         libname=`echo "X$1" | sed -e 's/^X--lib=//'`
265         supplied_libname=true
266         shift ;;
267       --source-base )
268         shift
269         if test $# = 0; then
270           func_fatal_error "missing argument for --source-base"
271         fi
272         sourcebase=$1
273         shift ;;
274       --source-base=* )
275         sourcebase=`echo "X$1" | sed -e 's/^X--source-base=//'`
276         shift ;;
277       --m4-base )
278         shift
279         if test $# = 0; then
280           func_fatal_error "missing argument for --m4-base"
281         fi
282         m4base=$1
283         shift ;;
284       --m4-base=* )
285         m4base=`echo "X$1" | sed -e 's/^X--m4-base=//'`
286         shift ;;
287       --tests-base )
288         shift
289         if test $# = 0; then
290           func_fatal_error "missing argument for --tests-base"
291         fi
292         testsbase=$1
293         shift ;;
294       --tests-base=* )
295         testsbase=`echo "X$1" | sed -e 's/^X--tests-base=//'`
296         shift ;;
297       --aux-dir )
298         shift
299         if test $# = 0; then
300           func_fatal_error "missing argument for --aux-dir"
301         fi
302         auxdir=$1
303         shift ;;
304       --aux-dir=* )
305         auxdir=`echo "X$1" | sed -e 's/^X--aux-dir=//'`
306         shift ;;
307       --with-tests )
308         inctests=true
309         shift ;;
310       --avoid )
311         shift
312         if test $# = 0; then
313           func_fatal_error "missing argument for --avoid"
314         fi
315         avoidlist="$avoidlist $1"
316         shift ;;
317       --avoid=* )
318         avoidlist="$avoidlist "`echo "X$1" | sed -e 's/^X--avoid=//'`
319         shift ;;
320       --lgpl )
321         lgpl=true
322         shift ;;
323       --libtool )
324         libtool=true
325         shift ;;
326       --macro-prefix )
327         shift
328         if test $# = 0; then
329           func_fatal_error "missing argument for --macro-prefix"
330         fi
331         macro_prefix="$1"
332         shift ;;
333       --macro-prefix=* )
334         macro_prefix=`echo "X$1" | sed -e 's/^X--macro-prefix=//'`
335         shift ;;
336       --no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch | --no-c )
337         do_changelog=false
338         shift ;;
339       --dry-run )
340         dry_run=true
341         shift ;;
342       -s | --symbolic | --symlink )
343         symbolic=true
344         shift ;;
345       --help | --hel | --he | --h )
346         func_usage
347         exit 0 ;;
348       --version | --versio | --versi | --vers | --ver | --ve | --v )
349         func_version
350         exit 0 ;;
351       -- )
352         # Stop option prcessing
353         shift
354         break ;;
355       -* )
356         echo "gnulib-tool: unknown option $1" 1>&2
357         echo "Try 'gnulib-tool --help' for more information." 1>&2
358         exit 1 ;;
359       * )
360         break ;;
361     esac
362   done
363 }
364
365 case "$0" in
366   /*) self_abspathname="$0" ;;
367   */*) self_abspathname=`pwd`/"$0" ;;
368   *) for d in `echo ":$PATH:" | sed -e 's/:::*/:.:/g' | sed -e 's/:/ /g'`; do
369        if test -x "$d/$0" && test ! -d "$d/$0"; then
370          self_abspathname="$d/$0"
371          break
372        fi
373      done
374      if test -z "$self_abspathname"; then
375        func_fatal_error "could not locate the gnulib-tool program - how did you invoke it?"
376      fi
377      ;;
378 esac
379 while test -h "$self_abspathname"; do
380   # Resolve symbolic link.
381   sedexpr1='s, -> ,#%%#,'
382   sedexpr2='s,^.*#%%#\(.*\)$,\1,p'
383   linkval=`LC_ALL=C ls -l "$self_abspathname" | sed -e "$sedexpr1" | sed -n -e "$sedexpr2"`
384   test -n "$linkval" || break
385   case "$linkval" in
386     /* ) self_abspathname="$linkval" ;;
387     * ) self_abspathname=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
388   esac
389 done
390 gnulib_dir=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`
391
392 # func_all_modules
393 func_all_modules ()
394 {
395   # Filter out metainformation files like README, which are not modules.
396   # Filter out unit test modules; they can be retrieved through
397   # --extract-tests-module if desired.
398   (cd "$gnulib_dir/modules" && ls -1) \
399       | sed -e '/^CVS$/d' -e '/^ChangeLog$/d' -e '/^README$/d' -e '/^TEMPLATE$/d' -e '/^TEMPLATE-TESTS$/d' -e '/~$/d' \
400       | sed -e '/-tests$/d' \
401       | sort
402 }
403
404 # func_verify_module
405 # verifies a module name
406 func_verify_module ()
407 {
408   if test ! -f "$gnulib_dir/modules/$module" \
409      || test "CVS" = "$module" \
410      || test "ChangeLog" = "$module" \
411      || test "README" = "$module" \
412      || test "TEMPLATE" = "$module" \
413      || test "TEMPLATE-TESTS" = "$module"; then
414     echo "gnulib-tool: module $module doesn't exist" 1>&2
415     module=
416   fi
417 }
418
419 # func_verify_nontests_module
420 # verifies a module name, excluding tests modules
421 func_verify_nontests_module ()
422 {
423   case "$module" in
424     *-tests ) module= ;;
425     * ) func_verify_module ;;
426   esac
427 }
428
429 # func_verify_tests_module
430 # verifies a module name, considering only tests modules
431 func_verify_tests_module ()
432 {
433   case "$module" in
434     *-tests ) func_verify_module ;;
435     * ) module= ;;
436   esac
437 }
438
439 sed_extract_prog=':[    ]*$/ {
440   :a
441     n
442     s/^Description:[    ]*$//
443     s/^Files:[  ]*$//
444     s/^Depends-on:[     ]*$//
445     s/^configure\.ac:[  ]*$//
446     s/^Makefile\.am:[   ]*$//
447     s/^Include:[        ]*$//
448     s/^License:[        ]*$//
449     s/^Maintainer:[     ]*$//
450     tb
451     p
452     ba
453   :b
454 }'
455
456 # func_get_description module
457 func_get_description ()
458 {
459   sed -n -e "/^Description$sed_extract_prog" < "$gnulib_dir/modules/$1"
460 }
461
462 # func_get_filelist module
463 func_get_filelist ()
464 {
465   sed -n -e "/^Files$sed_extract_prog" < "$gnulib_dir/modules/$1"
466   #echo m4/onceonly.m4
467   echo m4/onceonly_2_57.m4
468 }
469
470 # func_get_dependencies module
471 func_get_dependencies ()
472 {
473   # ${module}-tests always implicitly depends on ${module}.
474   echo "$1" | sed -n -e 's/-tests//p'
475   # Then the explicit dependencies listed in the module description.
476   sed -n -e "/^Depends-on$sed_extract_prog" < "$gnulib_dir/modules/$1"
477 }
478
479 # func_get_autoconf_snippet module
480 func_get_autoconf_snippet ()
481 {
482   sed -n -e "/^configure\.ac$sed_extract_prog" < "$gnulib_dir/modules/$1"
483 }
484
485 # func_get_automake_snippet module
486 func_get_automake_snippet ()
487 {
488   sed -n -e "/^Makefile\.am$sed_extract_prog" < "$gnulib_dir/modules/$1"
489 }
490
491 # func_get_include_directive module
492 func_get_include_directive ()
493 {
494   sed -n -e "/^Include$sed_extract_prog" < "$gnulib_dir/modules/$1" | \
495   sed -e 's/^\(["<]\)/#include \1/'
496 }
497
498 # func_get_license module
499 func_get_license ()
500 {
501   sed -n -e "/^License$sed_extract_prog" < "$gnulib_dir/modules/$1"
502 }
503
504 # func_get_maintainer module
505 func_get_maintainer ()
506 {
507   sed -n -e "/^Maintainer$sed_extract_prog" < "$gnulib_dir/modules/$1"
508 }
509
510 # func_get_tests_module module
511 func_get_tests_module ()
512 {
513   # The naming convention for tests modules is hardwired: ${module}-tests.
514   if test -f modules/"$1"-tests; then
515     echo "$1"-tests
516   fi
517 }
518
519 # func_acceptable module
520 # tests whether a module is acceptable.
521 # Input:
522 # - avoidlist       list of modules to avoid
523 func_acceptable ()
524 {
525   for avoid in $avoidlist; do
526     if test "$avoid" = "$1"; then
527       return 1
528     fi
529   done
530   return 0
531 }
532
533 # func_modules_transitive_closure
534 # Input:
535 # - modules         list of specified modules
536 # - inctests        true if tests should be included, blank otherwise
537 # - avoidlist       list of modules to avoid
538 # Output:
539 # - modules         list of modules, including dependencies
540 func_modules_transitive_closure ()
541 {
542   while true; do
543     xmodules=
544     for module in $modules; do
545       func_verify_module
546       if test -n "$module"; then
547         # Duplicate dependencies are harmless, but Jim wants a warning.
548         duplicated_deps=`func_get_dependencies $module | sort | uniq -d`
549         if test -n "$duplicated_deps"; then
550           echo "warning: module $module has duplicated dependencies: "`echo $duplicated_deps` 1>&2
551         fi
552         if func_acceptable $module; then
553           xmodules="$xmodules $module"
554           for depmodule in `func_get_dependencies $module`; do
555             if func_acceptable $depmodule; then
556               xmodules="$xmodules $depmodule"
557             fi
558           done
559           if test -n "$inctests"; then
560             testsmodule=`func_get_tests_module $module`
561             if test -n "$testsmodule"; then
562               if func_acceptable $testsmodule; then
563                 xmodules="$xmodules $testsmodule"
564                 for depmodule in `func_get_dependencies $testsmodule`; do
565                   if func_acceptable $depmodule; then
566                     xmodules="$xmodules $depmodule"
567                   fi
568                 done
569               fi
570             fi
571           fi
572         fi
573       fi
574     done
575     xmodules=`for m in $xmodules; do echo $m; done | sort | uniq`
576     if test "$xmodules" = "$modules"; then
577       break
578     fi
579     modules="$xmodules"
580   done
581 }
582
583 # func_modules_to_filelist
584 # Input:
585 # - modules         list of modules, including dependencies
586 # Output:
587 # - files           list of files
588 func_modules_to_filelist ()
589 {
590   files=
591   for module in $modules; do
592     func_verify_module
593     if test -n "$module"; then
594       files="$files "`func_get_filelist $module`
595     fi
596   done
597   files=`for f in $files; do echo $f; done | sort | uniq`
598 }
599
600 # func_emit_lib_Makefile_am
601 # emits the contents of lib/Makefile.am to standard output.
602 # Input:
603 # - modules         list of modules, including dependencies
604 # - libname         library name
605 # - libtool         true if libtool will be used, blank otherwise
606 # - cmd             (optional) command that led to this invocation
607 # - actioncmd       (optional) command that will reproduce this invocation
608 func_emit_lib_Makefile_am ()
609 {
610   if test -n "$libtool"; then
611     libext=la
612     perhapsLT=LT
613   else
614     libext=a
615     perhapsLT=
616   fi
617   echo "## Process this file with automake to produce Makefile.in."
618   echo "# Copyright (C) 2004 Free Software Foundation, Inc."
619   echo "#"
620   echo "# This file is free software, distributed under the terms of the GNU"
621   echo "# General Public License.  As a special exception to the GNU General"
622   echo "# Public License, this file may be distributed as part of a program"
623   echo "# that contains a configuration script generated by Automake, under"
624   echo "# the same distribution terms as the rest of that program."
625   echo "#"
626   echo "# Generated by gnulib-tool."
627   if test -n "$cmd"; then
628     echo "# Invoked as: $cmd"
629   fi
630   if test -n "$actioncmd"; then
631     echo "# Reproduce by: $actioncmd"
632   fi
633   echo
634   # No need to generate dependencies since the sources are in gnulib, not here.
635   echo "AUTOMAKE_OPTIONS = 1.5 gnits no-dependencies"
636   echo
637   echo "noinst_${perhapsLT}LIBRARIES = $libname.$libext"
638   echo
639   echo "${libname}_${libext}_SOURCES ="
640   echo "${libname}_${libext}_LIBADD = @${perhapsLT}LIBOBJS@"
641   echo "EXTRA_DIST ="
642   echo "BUILT_SOURCES ="
643   echo "SUFFIXES ="
644   echo "MOSTLYCLEANFILES ="
645   echo "CLEANFILES ="
646   echo "DISTCLEANFILES ="
647   echo "MAINTAINERCLEANFILES ="
648   echo
649   for module in $modules; do
650     func_verify_nontests_module
651     if test -n "$module"; then
652       {
653         func_get_automake_snippet "$module" |
654           sed -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g'
655         if test "$module" = 'alloca'; then
656           echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@"
657         fi
658       } > amsnippet.tmp
659       # Skip the contents if its entirely empty.
660       if grep '[^       ]' amsnippet.tmp > /dev/null ; then
661         echo "## begin gnulib module $module"
662         echo
663         cat amsnippet.tmp
664         echo "## end   gnulib module $module"
665         echo
666       fi
667       rm -f amsnippet.tmp
668     fi
669   done
670   echo
671   echo "# Makefile.am ends here"
672 }
673
674 # func_emit_tests_Makefile_am
675 # emits the contents of tests/Makefile.am to standard output.
676 # Input:
677 # - modules         list of modules, including dependencies
678 # - libname         library name
679 # - libtool         true if libtool will be used, blank otherwise
680 # - sourcebase      relative directory containing lib source code
681 func_emit_tests_Makefile_am ()
682 {
683   if test -n "$libtool"; then
684     libext=la
685   else
686     libext=a
687   fi
688   echo "## Process this file with automake to produce Makefile.in."
689   echo "# Copyright (C) 2004-2005 Free Software Foundation, Inc."
690   echo "#"
691   echo "# This file is free software, distributed under the terms of the GNU"
692   echo "# General Public License.  As a special exception to the GNU General"
693   echo "# Public License, this file may be distributed as part of a program"
694   echo "# that contains a configuration script generated by Automake, under"
695   echo "# the same distribution terms as the rest of that program."
696   echo "#"
697   echo "# Generated by gnulib-tool."
698   echo
699   # Generate dependencies here, since it eases the debugging of test failures.
700   echo "AUTOMAKE_OPTIONS = 1.5 foreign"
701   echo
702   echo "ACLOCAL_AMFLAGS = -I ../m4"
703   echo
704   echo "TESTS ="
705   echo "noinst_PROGRAMS ="
706   echo "EXTRA_DIST ="
707   echo "BUILT_SOURCES ="
708   echo "SUFFIXES ="
709   echo "MOSTLYCLEANFILES ="
710   echo "CLEANFILES ="
711   echo "DISTCLEANFILES ="
712   echo "MAINTAINERCLEANFILES ="
713   echo
714   echo "AM_CPPFLAGS = \\"
715   echo "  -I. -I\$(srcdir) \\"
716   echo "  -I.. -I\$(srcdir)/.. \\"
717   echo "  -I../${sourcebase-lib} -I\$(srcdir)/../${sourcebase-lib}"
718   echo
719   echo "LDADD = ../${sourcebase-lib}/${libname}.${libext}"
720   echo
721   for module in $modules; do
722     func_verify_tests_module
723     if test -n "$module"; then
724       func_get_automake_snippet "$module" > amsnippet.tmp
725       # Skip the contents if its entirely empty.
726       if grep '[^       ]' amsnippet.tmp > /dev/null ; then
727         echo "## begin gnulib module $module"
728         echo
729         cat amsnippet.tmp
730         echo "## end   gnulib module $module"
731         echo
732       fi
733       rm -f amsnippet.tmp
734     fi
735   done
736   echo "# Clean up after Solaris cc."
737   echo "clean-local:"
738   echo "        rm -rf SunWS_cache"
739   echo
740   echo "# Makefile.am ends here"
741 }
742
743 # func_import modules
744 # Uses also the variables
745 # - destdir         target directory
746 # - libname         library name
747 # - sourcebase      directory relative to destdir where to place source code
748 # - m4base          directory relative to destdir where to place *.m4 macros
749 # - auxdir          directory relative to destdir where to place build aux files
750 # - avoidlist       list of modules to avoid, from --avoid
751 # - lgpl            true if library's license shall be LGPL, blank otherwise
752 # - libtool         true if libtool will be used, blank otherwise
753 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
754 # - dry_run         true if actions shall only be printed, blank otherwise
755 # - symbolic        true if files should be symlinked, copied otherwise
756 # - supplied_opts   all options passed to gnulib-tool
757 func_import ()
758 {
759   modules="$1"
760   modules=`for m in $modules; do echo $m; done | sort | uniq`
761
762   # Determine final module list.
763   func_modules_transitive_closure
764   echo "Module list with included dependencies:"
765   echo "$modules" | sed -e 's/^/  /'
766
767   # If --lgpl, check the license of modules are compatible.
768   if test -n "$lgpl"; then
769     for module in $modules; do
770       license=`func_get_license $module`
771       case $license in
772         LGPL | 'public domain' | 'unlimited') ;;
773         *)
774           func_fatal_error \
775             "incompatible license on module \`$module\`: $license" ;;
776       esac
777     done
778   fi
779
780   # Determine final file list.
781   func_modules_to_filelist
782   echo "File list:"
783   echo "$files" | sed -e 's/^/  /'
784
785   test -n "$files" \
786     || func_fatal_error "refusing to do nothing"
787
788   # Copy files or make symbolic links.
789   for f in $files m4/gnulib-tool.m4; do
790     source=
791     case "$f" in
792       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
793       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"`; source=true ;;
794       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
795       *) g="$f" ;;
796     esac
797     if test -z "$symbolic"; then
798       func_cp_if_changed "$gnulib_dir/$f" "$destdir/$g"
799     else
800       func_ln_if_changed "$gnulib_dir/$f" "$destdir/$g"
801     fi
802     # Update license.
803     if test -z "$dry_run" && test -n "$lgpl" && test -n "$source"; then
804       perl -pi -e 's/GNU General/GNU Lesser General/g;' \
805                -e 's/version 2([ ,])/version 2.1\1/g' \
806                "$destdir/$g"
807     fi
808   done
809
810   # Commands printed in a comment in generated files.
811   cmd="gnulib-tool $supplied_opts"
812   opt_libtool=
813   if test -n "$libtool"; then
814     opt_libtool="--libtool"
815   fi
816   opt_lgpl=
817   if test -n "$lgpl"; then
818     opt_lgpl="--lgpl"
819   fi
820   actioncmd="gnulib-tool --import --dir=$destdir --lib=$libname --source-base=$sourcebase --m4-base=$m4base --aux-dir=$auxdir $opt_libtool $opt_lgpl `echo $modules`"
821
822   # Create lib/Makefile.am.
823   echo "Creating $destdir/$sourcebase/Makefile.am..."
824   if test -z "$dry_run"; then
825     func_emit_lib_Makefile_am > "$destdir"/$sourcebase/Makefile.am.new
826   else
827     func_emit_lib_Makefile_am
828   fi
829   func_mv_if_changed "$destdir"/$sourcebase/Makefile.am.new \
830                      "$destdir"/$sourcebase/Makefile.am
831
832   # Create gnulib.m4.
833   echo "Creating $destdir/$m4base/gnulib.m4..."
834   (
835     if test -z "$dry_run"; then
836       exec > "$destdir"/$m4base/gnulib.m4.new
837     else
838       echo "# $destdir/$m4base/gnulib.m4"
839     fi
840     echo "# Copyright (C) 2004 Free Software Foundation, Inc."
841     echo "# This file is free software, distributed under the terms of the GNU"
842     echo "# General Public License.  As a special exception to the GNU General"
843     echo "# Public License, this file may be distributed as part of a program"
844     echo "# that contains a configuration script generated by Autoconf, under"
845     echo "# the same distribution terms as the rest of that program."
846     echo "#"
847     echo "# Generated by gnulib-tool."
848     echo "#"
849     echo "# Invoked as: $cmd"
850     echo "# Reproduce by: $actioncmd"
851     echo
852     echo "# This macro should be invoked from $configure_ac, in the section"
853     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
854     echo "# any checks for libraries, header files, types and library functions."
855     echo "AC_DEFUN([${macro_prefix}_EARLY],"
856     echo "["
857     if grep AC_GNU_SOURCE "$destdir"/$m4base/*.m4 > /dev/null; then
858       echo "  AC_GNU_SOURCE"
859     fi
860     if grep gl_USE_SYSTEM_EXTENSIONS "$destdir"/$m4base/*.m4 > /dev/null; then
861       echo "  gl_USE_SYSTEM_EXTENSIONS"
862     fi
863     echo "])"
864     echo
865     echo "# This macro should be invoked from $configure_ac, in the section"
866     echo "# \"Check for header files, types and library functions\"."
867     echo "AC_DEFUN([${macro_prefix}_INIT],"
868     echo "["
869     for module in $modules; do
870       func_verify_module
871       if test -n "$module"; then
872         func_get_autoconf_snippet "$module" | sed -e '/^$/d;' -e 's/^/  /' -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./'
873         if test "$module" = 'alloca' && test -n "$libtool"; then
874           echo 'changequote(,)dnl'
875           echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
876           echo 'changequote([, ])dnl'
877           echo 'AC_SUBST([LTALLOCA])'
878         fi
879       fi
880     done
881     echo "])"
882     echo
883     echo "# gnulib.m4 ends here"
884   )
885   func_mv_if_changed "$destdir"/$m4base/gnulib.m4.new "$destdir"/$m4base/gnulib.m4
886   echo "Finished."
887   echo
888   echo "You may need to add #include directives for the following .h files."
889   for module in $modules; do
890     func_get_include_directive "$module"
891   done | LC_ALL=C sort -u | sed -e '/^$/d;' -e 's/^/  /'
892   echo
893   echo "Don't forget to"
894   echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
895   sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
896   sourcebase_base=`basename "$sourcebase"`
897   echo "  - mention \"${sourcebase_base}\" in SUBDIRS in ${sourcebase_dir}Makefile.am,"
898   echo "  - mention \"-I ${m4base}\" in ACLOCAL_AMFLAGS in Makefile.am,"
899   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after AC_PROG_CC,"
900   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
901 }
902
903 # func_create_testdir testdir modules
904 # Input:
905 # - auxdir          directory relative to destdir where to place build aux files
906 func_create_testdir ()
907 {
908   testdir="$1"
909   modules="$2"
910   modules=`for m in $modules; do echo $m; done | sort | uniq`
911
912   # Determine final module list.
913   func_modules_transitive_closure
914   echo "Module list with included dependencies:"
915   echo "$modules" | sed -e 's/^/  /'
916
917   # Determine final file list.
918   func_modules_to_filelist
919   echo "File list:"
920   echo "$files" | sed -e 's/^/  /'
921
922   # Create directories.
923   for d in `echo "$files" | sed -n -e 's,^\(.*\)/[^/]*,\1,p'`; do
924     if test "$d" = build-aux; then
925       mkdir -p "$testdir/$auxdir"
926     else
927       mkdir -p "$testdir/$d"
928     fi
929   done
930
931   # Copy files or make symbolic links.
932   for f in $files; do
933     case "$f" in
934       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
935       *) g="$f" ;;
936     esac
937     ln "$gnulib_dir/$f" "$testdir/$g" 2>/dev/null ||
938     if test -z "$symbolic"; then
939       cp -p "$gnulib_dir/$f" "$testdir/$g"
940     else
941       ln -s "$gnulib_dir/$f" "$testdir/$g"
942     fi
943   done
944
945   # Create lib/Makefile.am.
946   mkdir -p "$testdir/lib"
947   func_emit_lib_Makefile_am > "$testdir/lib/Makefile.am"
948
949   # Create m4/Makefile.am.
950   mkdir -p "$testdir/m4"
951   (echo "## Process this file with automake to produce Makefile.in."
952    echo
953    echo "EXTRA_DIST ="
954    for f in $files; do
955      case "$f" in
956        m4/* )
957          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
958      esac
959    done
960   ) > "$testdir/m4/Makefile.am"
961
962   subdirs="lib m4"
963   subdirs_with_configure_ac=""
964
965   if test -f "$testdir"/m4/gettext.m4; then
966     # Avoid stupid error message from automake:
967     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
968     mkdir -p "$testdir/po"
969     (echo "## Process this file with automake to produce Makefile.in."
970     ) > "$testdir/po/Makefile.am"
971     subdirs="$subdirs po"
972   fi
973
974   if test -n "$inctests"; then
975     test -d "$testdir/tests" || mkdir "$testdir/tests"
976     # Create tests/Makefile.am.
977     sourcebase=lib
978     func_emit_tests_Makefile_am > "$testdir/tests/Makefile.am"
979     # Create tests/configure.ac.
980     (echo "# Process this file with autoconf to produce a configure script."
981      echo "AC_INIT([dummy], [0])"
982      echo "AC_CONFIG_AUX_DIR([../$auxdir])"
983      echo "AM_INIT_AUTOMAKE"
984      echo
985      echo "AM_CONFIG_HEADER([config.h])"
986      echo
987      echo "AC_PROG_CC"
988      echo "AC_PROG_INSTALL"
989      echo "AC_PROG_MAKE_SET"
990      echo "AC_PROG_RANLIB"
991      echo
992      if grep AC_GNU_SOURCE "$testdir"/m4/*.m4 > /dev/null; then
993        echo "AC_GNU_SOURCE"
994        echo
995      fi
996      if grep gl_USE_SYSTEM_EXTENSIONS "$testdir"/m4/*.m4 > /dev/null; then
997        echo "gl_USE_SYSTEM_EXTENSIONS"
998        echo
999      fi
1000      # We don't have explicit ordering constraints between the various
1001      # autoconf snippets. It's cleanest to put those of the library before
1002      # those of the tests.
1003      for module in $modules; do
1004        func_verify_nontests_module
1005        if test -n "$module"; then
1006          func_get_autoconf_snippet "$module"
1007        fi
1008      done
1009      for module in $modules; do
1010        func_verify_tests_module
1011        if test -n "$module"; then
1012          func_get_autoconf_snippet "$module"
1013        fi
1014      done
1015      echo
1016      # Usually tests/config.h will be a superset of config.h. Verify this by
1017      # "merging" config.h into tests/config.h; look out for gcc warnings.
1018      echo "AH_TOP([#include \"../config.h\"])"
1019      echo
1020      echo "AC_OUTPUT([Makefile])"
1021     ) > "$testdir/tests/configure.ac"
1022     subdirs="$subdirs tests"
1023     subdirs_with_configure_ac="$subdirs_with_configure_ac tests"
1024   fi
1025
1026   # Create Makefile.am.
1027   (echo "## Process this file with automake to produce Makefile.in."
1028    echo
1029    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
1030    echo
1031    echo "SUBDIRS = $subdirs"
1032    echo
1033    echo "ACLOCAL_AMFLAGS = -I m4"
1034   ) > "$testdir/Makefile.am"
1035
1036   # Create configure.ac.
1037   (echo "# Process this file with autoconf to produce a configure script."
1038    echo "AC_INIT([dummy], [0])"
1039    if test "$auxdir" != "."; then
1040      echo "AC_CONFIG_AUX_DIR([$auxdir])"
1041    fi
1042    echo "AM_INIT_AUTOMAKE"
1043    echo
1044    echo "AM_CONFIG_HEADER([config.h])"
1045    echo
1046    echo "AC_PROG_CC"
1047    echo "AC_PROG_INSTALL"
1048    echo "AC_PROG_MAKE_SET"
1049    echo "AC_PROG_RANLIB"
1050    echo
1051    if grep AC_GNU_SOURCE "$testdir"/m4/*.m4 > /dev/null; then
1052      echo "AC_GNU_SOURCE"
1053      echo
1054    fi
1055    if grep gl_USE_SYSTEM_EXTENSIONS "$testdir"/m4/*.m4 > /dev/null; then
1056      echo "gl_USE_SYSTEM_EXTENSIONS"
1057      echo
1058    fi
1059    for module in $modules; do
1060      func_verify_nontests_module
1061      if test -n "$module"; then
1062        func_get_autoconf_snippet "$module"
1063      fi
1064    done
1065    echo
1066    if test -n "$subdirs_with_configure_ac"; then
1067      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
1068    fi
1069    makefiles="Makefile"
1070    for d in $subdirs; do
1071      # For subdirs that have a configure.ac by their own, it's the subdir's
1072      # configure.ac which creates the subdir's Makefile.am, not this one.
1073      case " $subdirs_with_configure_ac " in
1074        *" $d "*) ;;
1075        *) makefiles="$makefiles $d/Makefile" ;;
1076      esac
1077    done
1078    echo "AC_OUTPUT([$makefiles])"
1079   ) > "$testdir/configure.ac"
1080
1081   # Create autogenerated files.
1082   (cd "$testdir"
1083    echo "executing ${AUTORECONF} --force --install"
1084    ${AUTORECONF} --force --install
1085   )
1086   if grep '^BUILT_SOURCES *+=' "$testdir/lib/Makefile.am" > /dev/null; then
1087     (cd "$testdir"
1088      ./configure
1089        cd lib
1090        built_sources=`grep '^BUILT_SOURCES *=' Makefile.in | sed -e 's/^BUILT_SOURCES *=//'`
1091        if test -n "$built_sources"; then
1092          make $built_sources
1093        fi
1094        cd ..
1095      make distclean
1096     )
1097   fi
1098 }
1099
1100 # func_create_megatestdir megatestdir allmodules
1101 # Input:
1102 # - auxdir          directory relative to destdir where to place build aux files
1103 func_create_megatestdir ()
1104 {
1105   megatestdir="$1"
1106   allmodules="$2"
1107   if test -z "$allmodules"; then
1108     allmodules=`func_all_modules`
1109   fi
1110
1111   megasubdirs=
1112   # First, all modules one by one.
1113   for onemodule in $allmodules; do
1114     func_create_testdir "$megatestdir/$onemodule" $onemodule
1115     megasubdirs="${megasubdirs}$onemodule "
1116   done
1117   # Then, all modules all together.
1118   # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
1119   allmodules=`for m in $allmodules; do if test $m != fnmatch-posix; then echo $m; fi; done`
1120   func_create_testdir "$megatestdir/ALL" "$allmodules"
1121   megasubdirs="${megasubdirs}ALL"
1122
1123   # Create Makefile.am.
1124   (echo "## Process this file with automake to produce Makefile.in."
1125    echo
1126    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
1127    echo
1128    echo "SUBDIRS = $megasubdirs"
1129   ) > "$megatestdir/Makefile.am"
1130
1131   # Create configure.ac.
1132   (echo "# Process this file with autoconf to produce a configure script."
1133    echo "AC_INIT([dummy], [0])"
1134    if test "$auxdir" != "."; then
1135      echo "AC_CONFIG_AUX_DIR([$auxdir])"
1136    fi
1137    echo "AM_INIT_AUTOMAKE"
1138    echo
1139    echo "AC_PROG_MAKE_SET"
1140    echo
1141    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
1142    echo "AC_OUTPUT([Makefile])"
1143   ) > "$megatestdir/configure.ac"
1144
1145   # Create autogenerated files.
1146   (cd "$megatestdir"
1147    echo "executing ${AUTORECONF} --install"
1148    ${AUTORECONF} --install
1149   )
1150 }
1151
1152 case $mode in
1153   "" )
1154     func_fatal_error "no mode specified" ;;
1155
1156   list )
1157     func_all_modules
1158     ;;
1159
1160   import )
1161     # Where to import.
1162     if test -z "$destdir"; then
1163       destdir=.
1164     fi
1165     test -d "$destdir" \
1166       || func_fatal_error "destination directory does not exist: $destdir"
1167
1168     # Prefer configure.ac to configure.in
1169     test -f "$destdir"/configure.in && configure_ac="$destdir/configure.in"
1170     test -f "$destdir"/configure.ac && configure_ac="$destdir/configure.ac"
1171     test -f "$configure_ac" \
1172       || func_fatal_error "cannot find $destdir/configure.ac"
1173
1174     # Get settings.
1175     my_sed_traces='s,#.*$,,; s,^dnl .*$,,; s, dnl .*$,,;
1176       /gl_MODULES[^_]/  {
1177         s,^.*gl_MODULES([[   ]*\([^])]*\).*$,ac_modules="\1",; p;
1178       };
1179       /gl_AVOID[^_]/  {
1180         s,^.*gl_AVOID([[   ]*\([^])]*\).*$,ac_avoidlist="\1",; p;
1181       };
1182       /gl_SOURCE_BASE/   {
1183         s,^.*gl_SOURCE_BASE([[         ]*\([^])]*\).*$,ac_sourcebase="\1",; p;
1184       };
1185       /gl_M4_BASE/   {
1186         s,^.*gl_M4_BASE([[         ]*\([^])]*\).*$,ac_m4base="\1",; p;
1187       };
1188       /gl_LIB/   {
1189         s,^.*gl_LIB([[         ]*\([^])]*\).*$,ac_libname="\1",; p;
1190       };
1191       /AC_CONFIG_AUX_DIR/  {
1192         s,^.*AC_CONFIG_AUX_DIR([[         ]*\([^])]*\).*$,ac_auxdir="\1",; p;
1193       }
1194       /A[CM]_PROG_LIBTOOL/ { s,^.*$,seen_libtool=:,; p; };
1195       /LT_INIT/            { s,^.*$,seen_libtool=:,; p; };
1196       /gl_LGPL/            { s,^.*$,lgpl=true,; p; };
1197       /gl_LIBTOOL/         { s,^.*$,seen_libtool=:,; p; };
1198       /gl_MACRO_PREFIX/   {
1199         s,^.*gl_MACRO_PREFIX([[         ]*\([^])]*\).*$,ac_macro_prefix="\1",; p;
1200       };
1201       d;'
1202     eval `cat $configure_ac | sed "$my_sed_traces"`
1203
1204     # Override libname?
1205     if test -z "$supplied_libname" && test -n "$ac_libname"; then
1206       libname="$ac_libname"
1207     fi
1208
1209     # Set up source base.
1210     test -z "$sourcebase" && sourcebase="$ac_sourcebase"
1211     test -z "$sourcebase" && sourcebase="lib"
1212     test -d "$destdir/$sourcebase" \
1213       || { test -z "$dry_run" && mkdir "$destdir/$sourcebase"; } \
1214       || func_fatal_error "source base $destdir/$sourcebase doesn't exist"
1215
1216     # Set up m4 base.
1217     test -z "$m4base" && m4base="$ac_m4base"
1218     test -z "$m4base" && m4base="m4"
1219     test -d "$destdir/$m4base" \
1220       || { test -z "$dry_run" && mkdir "$destdir/$m4base"; } \
1221       || func_fatal_error "m4 base $destdir/$m4base doesn't exist"
1222
1223     # Set up auxiliary directory.
1224     test -z "$auxdir" && auxdir="$ac_auxdir"
1225     test -z "$auxdir" && auxdir="build-aux"
1226     test -d "$destdir/$auxdir" \
1227       || { test -z "$dry_run" && mkdir "$destdir/$auxdir"; } \
1228       || func_fatal_error "aux directory $destdir/$auxdir doesn't exist"
1229
1230     # Using libtool?
1231     if test -n "$seen_libtool"; then
1232       libtool=true
1233     fi
1234
1235     # Macro prefix
1236     test -z "$macro_prefix" && macro_prefix="$ac_macro_prefix"
1237     test -z "$macro_prefix" && macro_prefix="gl"
1238
1239     # What modules to extract.
1240     if test $# = 0; then
1241       modules="$ac_modules"
1242     else
1243       modules="$*"
1244     fi
1245
1246     # Which modules to avoid?
1247     avoidlist=`echo $avoidlist $ac_avoidlist`
1248
1249     func_import "$modules"
1250     ;;
1251
1252   create-testdir )
1253     if test -z "$destdir"; then
1254       func_fatal_error "please specify --dir option"
1255     fi
1256     mkdir "$destdir"
1257     test -d "$destdir" \
1258       || func_fatal_error "could not create destination directory"
1259     test -n "$auxdir" || auxdir="build-aux"
1260     func_create_testdir "$destdir" "$*"
1261     ;;
1262
1263   create-megatestdir )
1264     if test -z "$destdir"; then
1265       func_fatal_error "please specify --dir option"
1266     fi
1267     mkdir "$destdir" || func_fatal_error "could not create destination directory"
1268     test -n "$auxdir" || auxdir="build-aux"
1269     func_create_megatestdir "$destdir" "$*"
1270     ;;
1271
1272   test )
1273     test -n "$destdir" || destdir=testdir$$
1274     mkdir "$destdir" || func_fatal_error "could not create destination directory"
1275     test -n "$auxdir" || auxdir="build-aux"
1276     func_create_testdir "$destdir" "$*"
1277     cd "$destdir"
1278       mkdir build
1279       cd build
1280         ../configure
1281         make
1282         make check
1283         make distclean
1284         remaining=`find . -type f -print`
1285         if test -n "$remaining"; then
1286           echo "Remaining files:" $remaining 1>&2
1287           echo "gnulib-tool: *** Stop." 1>&2
1288           exit 1
1289         fi
1290       cd ..
1291     cd ..
1292     rm -rf "$destdir"
1293     ;;
1294
1295   megatest )
1296     test -n "$destdir" || destdir=testdir$$
1297     mkdir "$destdir" || func_fatal_error "could not create destination directory"
1298     test -n "$auxdir" || auxdir="build-aux"
1299     func_create_megatestdir "$destdir" "$*"
1300     cd "$destdir"
1301       mkdir build
1302       cd build
1303         ../configure
1304         make
1305         make check
1306         make distclean
1307         remaining=`find . -type f -print`
1308         if test -n "$remaining"; then
1309           echo "Remaining files:" $remaining 1>&2
1310           echo "gnulib-tool: *** Stop." 1>&2
1311           exit 1
1312         fi
1313       cd ..
1314     cd ..
1315     rm -rf "$destdir"
1316     ;;
1317
1318   extract-description )
1319     for module
1320     do
1321       func_verify_module
1322       if test -n "$module"; then
1323         func_get_description "$module"
1324       fi
1325     done
1326     ;;
1327
1328   extract-filelist )
1329     for module
1330     do
1331       func_verify_module
1332       if test -n "$module"; then
1333         func_get_filelist "$module"
1334       fi
1335     done
1336     ;;
1337
1338   extract-dependencies )
1339     for module
1340     do
1341       func_verify_module
1342       if test -n "$module"; then
1343         func_get_dependencies "$module"
1344       fi
1345     done
1346     ;;
1347
1348   extract-autoconf-snippet )
1349     for module
1350     do
1351       func_verify_module
1352       if test -n "$module"; then
1353         func_get_autoconf_snippet "$module"
1354       fi
1355     done
1356     ;;
1357
1358   extract-automake-snippet )
1359     for module
1360     do
1361       func_verify_module
1362       if test -n "$module"; then
1363         func_get_automake_snippet "$module"
1364       fi
1365     done
1366     ;;
1367
1368   extract-include-directive )
1369     for module
1370     do
1371       func_verify_module
1372       if test -n "$module"; then
1373         func_get_include_directive "$module"
1374       fi
1375     done
1376     ;;
1377
1378   extract-license )
1379     for module
1380     do
1381       func_verify_module
1382       if test -n "$module"; then
1383         func_get_license "$module"
1384       fi
1385     done
1386     ;;
1387
1388   extract-maintainer )
1389     for module
1390     do
1391       func_verify_module
1392       if test -n "$module"; then
1393         func_get_maintainer "$module"
1394       fi
1395     done
1396     ;;
1397
1398   extract-tests-module )
1399     for module
1400     do
1401       func_verify_module
1402       if test -n "$module"; then
1403         func_get_tests_module "$module"
1404       fi
1405     done
1406     ;;
1407
1408   * )
1409     func_fatal_error "unknown operation mode --$mode" ;;
1410 esac
1411
1412 exit 0