5 eval 'exec @PERL@ -S $0 ${1+"$@"}'
8 # automake - create Makefile.in from Makefile.am
9 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 2, or (at your option)
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
26 # Originally written by David Mackenzie <djm@gnu.ai.mit.edu>.
27 # Perl reimplementation by Tom Tromey <tromey@cygnus.com>.
30 # Parameters set by configure. Not to be changed. NOTE: assign
31 # VERSION as string so that eg version 0.30 will print correctly.
32 $VERSION = "@VERSION@";
33 $PACKAGE = "@PACKAGE@";
35 $am_dir = "@datadir@/@PACKAGE@";
38 $IGNORE_PATTERN = "^##([^#].*)?\$";
39 $WHITE_PATTERN = "^[ \t]*\$";
40 $COMMENT_PATTERN = "^#";
41 $RULE_PATTERN = "^([\$a-zA-Z_.][-.a-zA-Z0-9_(){}/\$]*) *:([^=].*|)\$";
42 $SUFFIX_RULE_PATTERN = "^\\.([a-zA-Z0-9]+)\\.([a-zA-Z0-9]+)\$";
43 $MACRO_PATTERN = "^([A-Za-z0-9_]+)[ \t]*([:+]?)=[ \t]*(.*)\$";
44 $BOGUS_MACRO_PATTERN = "^([^ \t]*)[ \t]*([:+]?)=[ \t]*(.*)\$";
45 $GNITS_VERSION_PATTERN = "[0-9]+\\.[0-9]+([a-z]|\\.[0-9]+)?";
46 $IF_PATTERN = "^if[ \t]+\([A-Za-z][A-Za-z0-9_]*\)[ \t]*\(#.*\)?\$";
47 $ELSE_PATTERN = "^else[ \t]*\(#.*\)?\$";
48 $ENDIF_PATTERN = "^endif[ \t]*\(#.*\)?\$";
49 $PATH_PATTERN='(\\w|[/.-])+';
50 # This will pass through anything not of the prescribed form.
51 $INCLUDE_PATTERN = "^include[ \t]+((\\\$\\\(top_srcdir\\\)/${PATH_PATTERN})|(\\\$\\\(srcdir\\\)/${PATH_PATTERN})|([^/\\\$]${PATH_PATTERN}))[ \t]*(#.*)?\$";
53 # Some regular expressions. One reason to put them here is that it
54 # makes indentation work better in Emacs.
55 $AC_CONFIG_AUX_DIR_PATTERN = "AC_CONFIG_AUX_DIR\\(([^)]+)\\)";
56 $AM_INIT_AUTOMAKE_PATTERN = "AM_INIT_AUTOMAKE\\([^,]*,([^,)]+)[,)]";
57 $AM_PACKAGE_VERSION_PATTERN = "^\\s*\\[?([^]\\s]+)\\]?\\s*\$";
58 # Note that there is no AC_PATH_TOOL. But we don't really care.
59 $AC_CHECK_PATTERN = "AC_(CHECK|PATH)_(PROG|PROGS|TOOL)\\(\\[?(\\w+)";
60 $AM_MISSING_PATTERN = "AM_MISSING_PROG\\(\\[?(\\w+)";
61 # Just check for alphanumeric in AC_SUBST. If you do AC_SUBST(5),
63 $AC_SUBST_PATTERN = "AC_SUBST\\(\\[?(\\w+)";
64 $AM_CONDITIONAL_PATTERN = "AM_CONDITIONAL\\((\\w+)";
66 # Constants to define the "strictness" level.
71 # These constants are returned by lang_*_rewrite functions.
72 # LANG_SUBDIR means that the resulting object file should be in a
73 # subdir if the source file is. In this case the file name cannot
74 # have `..' components.
81 # Variables global to entire run.
83 # TRUE if we should always generate Makefile.in.
84 $force_generation = 1;
86 # Strictness level as set on command line.
87 $default_strictness = $GNU;
89 # Name of strictness level, as set on command line.
90 $default_strictness_name = 'gnu';
92 # This is TRUE if GNU make specific automatic dependency generation
93 # code should be included in generated Makefile.in.
94 $cmdline_use_dependencies = 1;
96 # This is the name of a dependency makefile bit (usually for inclusion in a
97 # SMakefile or similar); empty if not set.
100 # TRUE if in verbose mode.
103 # This holds our (eventual) exit status. We don't actually exit until
104 # we have processed all input files.
107 # From the Perl manual.
108 $symlink_exists = (eval 'symlink ("", "");', $@ eq '');
110 # TRUE if missing standard files should be installed.
113 # TRUE if we should copy missing files; otherwise symlink if possible.
116 # Files found by scanning configure.in for LIBOBJS.
119 # True if AM_C_PROTOTYPES appears in configure.in.
120 $am_c_prototypes = 0;
122 # Names used in AC_CONFIG_HEADER call. @config_fullnames holds the
123 # name which appears in AC_CONFIG_HEADER, colon and all.
124 # @config_names holds the file names. @config_headers holds the '.in'
125 # files. Ordinarily these are similar, but they can be different if
126 # the weird "NAME:FILE" syntax is used.
127 @config_fullnames = ();
129 @config_headers = ();
130 # Line number at which AC_CONFIG_HEADER appears in configure.in.
131 $config_header_line = 0;
133 # Directory where output files go. Actually, output files are
134 # relative to this directory.
135 $output_directory = '.';
137 # Relative location of top build directory.
140 # Absolute location of top build directory.
141 $build_directory = '';
143 # Name of srcdir as given in build directory's Makefile. For
147 # List of Makefile.am's to process, and their corresponding outputs.
151 # Complete list of Makefile.am's that exist.
152 @configure_input_files = ();
154 # List of files in AC_OUTPUT without Makefile.am, and their outputs.
155 @other_input_files = ();
156 # Line number at which AC_OUTPUT seen.
159 # List of directories to search for configure-required files. This
160 # can be set by AC_CONFIG_AUX_DIR.
161 @config_aux_path = ('.', '..', '../..');
162 $config_aux_dir = '';
164 # Whether AC_PROG_MAKE_SET has been seen in configure.in.
167 # Whether AM_GNU_GETTEXT has been seen in configure.in.
169 # Line number at which AM_GNU_GETTEXT seen.
170 $ac_gettext_line = 0;
172 # Whether ALL_LINGUAS has been seen.
176 # Line number at which it appears.
177 $all_linguas_line = 0;
179 # 1 if AC_PROG_INSTALL seen.
180 $seen_prog_install = 0;
182 # Whether AC_PATH_XTRA has been seen in configure.in.
185 # TRUE if AC_DECL_YYTEXT was seen.
186 $seen_decl_yytext = 0;
188 # TRUE if we've seen AC_CANONICAL_(HOST|SYSTEM). The presence of
189 # AC_CHECK_TOOL also sets this.
192 # TRUE if we've seen AC_ARG_PROGRAM.
195 # TRUE if we've seen AC_PROG_LIBTOOL.
199 # Files installed by libtoolize.
200 @libtoolize_files = ('ltconfig', 'ltmain.sh', 'config.guess', 'config.sub');
202 # TRUE if we've seen AM_MAINTAINER_MODE.
203 $seen_maint_mode = 0;
205 # TRUE if we've seen PACKAGE and VERSION.
209 # Actual version we've seen.
210 $package_version = '';
212 # Line number where we saw version definition.
213 $package_version_line = 0;
215 # TRUE if we've seen AM_PATH_LISPDIR.
218 # TRUE if we've seen AC_EXEEXT.
221 # TRUE if we've seen AC_OBJEXT.
224 # TRUE if we've seen AC_ENABLE_MULTILIB.
227 # TRUE if we've seen AM_PROG_CC_C_O
230 # Hash table of discovered configure substitutions. Keys are names,
231 # values are `FILE:LINE' strings which are used by error message
233 %configure_vars = ();
235 # This is used to keep track of which variable definitions we are
236 # scanning. It is only used in certain limited ways, but it has to be
237 # global. It is declared just for documentation purposes.
240 # Charsets used by maintainer and in distribution. MAINT_CHARSET is
241 # handled in a funny way: if seen in the top-level Makefile.am, it is
242 # used for every directory which does not specify a different value.
243 # The rationale here is that some directories (eg gettext) might be
244 # distributions of other packages, and thus require their own charset
245 # info. However, the DIST_CHARSET must be the same for the entire
246 # package; it can only be set at top-level.
247 # FIXME: this yields bugs when rebuilding. What to do? Always
248 # read (and sometimes discard) top-level Makefile.am?
250 $dist_charset = 'utf8'; # recode doesn't support this yet.
252 # Name of input file ("Makefile.in") and output file ("Makefile.am").
253 # These have no directory components.
257 # TRUE if --cygnus seen.
260 # Keys of this hash are names of dependency files to ignore.
261 %omit_dependencies = ();
263 # Hash table of AM_CONDITIONAL variables seen in configure.
264 %configure_cond = ();
266 # Map from obsolete macros to hints for new macros.
267 # If you change this, change the corresponding list in aclocal.in.
268 # FIXME: should just put this into a single file.
271 'AC_FEATURE_CTYPE', "use \`AC_HEADER_STDC'",
272 'AC_FEATURE_ERRNO', "add \`strerror' to \`AC_REPLACE_FUNCS(...)'",
273 'AC_FEATURE_EXIT', '',
274 'AC_SYSTEM_HEADER', '',
276 # Note that we do not handle this one, because it is still run
277 # from AM_CONFIG_HEADER. So we deal with it specially in
279 # 'AC_CONFIG_HEADER', "use \`AM_CONFIG_HEADER'",
281 'fp_C_PROTOTYPES', "use \`AM_C_PROTOTYPES'",
282 'fp_PROG_CC_STDC', "use \`AM_PROG_CC_STDC'",
283 'fp_PROG_INSTALL', "use \`AC_PROG_INSTALL'",
284 'fp_WITH_DMALLOC', "use \`AM_WITH_DMALLOC'",
285 'fp_WITH_REGEX', "use \`AM_WITH_REGEX'",
286 'gm_PROG_LIBTOOL', "use \`AM_PROG_LIBTOOL'",
287 'jm_MAINTAINER_MODE', "use \`AM_MAINTAINER_MODE'",
288 'md_TYPE_PTRDIFF_T', "use \`AM_TYPE_PTRDIFF_T'",
289 'ud_PATH_LISPDIR', "use \`AM_PATH_LISPDIR'",
290 'ud_GNU_GETTEXT', "use \`AM_GNU_GETTEXT'",
292 # Now part of autoconf proper, under a different name.
293 'AM_FUNC_FNMATCH', "use \`AC_FUNC_FNMATCH'",
294 'fp_FUNC_FNMATCH', "use \`AC_FUNC_FNMATCH'",
295 'AM_SANITY_CHECK_CC', "automatically done by \`AC_PROG_CC'",
296 'AM_PROG_INSTALL', "use \`AC_PROG_INSTALL'",
297 'AM_EXEEXT', "use \`AC_EXEEXT'",
298 'AM_CYGWIN32', "use \`AC_CYGWIN32'",
299 'AM_MINGW32', "use \`AC_MINGW32'",
300 'AM_FUNC_MKTIME', "use \`AC_FUNC_MKTIME'",
302 # These aren't quite obsolete.
306 # Regexp to match the above macros.
307 $obsolete_rx = '(' . join ('|', keys %obsolete_macros) . ')';
309 # This maps extensions onto language names.
312 # This maps languages names onto properties.
317 # Initialize global constants and our list of languages that are
318 # internally supported.
319 &initialize_global_constants;
321 ®ister_language ('c', 'ansi-p=1', 'autodep=', 'flags=CFLAGS',
322 'compile=$(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)',
323 'compiler-name=COMPILE',
326 ®ister_language ('cxx', 'linker=CXXLINK', 'autodep=CXX', 'flags=CXXFLAGS',
327 'compile=$(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)',
328 'compiler-name=CXXCOMPILE',
329 'output-arg=-c -o $@',
330 'c++', 'cc', 'cpp', 'cxx', 'C');
331 ®ister_language ('objc', 'linker=OBJCLINK', 'autodep=OBJC',
333 'compile=$(OBJC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS)',
334 'compiler-name=OBJCCOMPILE',
335 'output-arg=-c -o $@',
337 ®ister_language ('header',
338 'h', 'H', 'hxx', 'h++', 'hh', 'hpp', 'inc');
340 # For now, yacc and lex can't be handled on a per-exe basis.
341 ®ister_language ('yacc', 'ansi-p=1',
343 ®ister_language ('yaccxx', 'linker=CXXLINK',
344 'y++', 'yy', 'yxx', 'ypp');
345 ®ister_language ('lex', 'ansi-p=1',
347 ®ister_language ('lexxx', 'linker=CXXLINK',
348 'l++', 'll', 'lxx', 'lpp');
350 ®ister_language ('asm',
351 'flags=CFLAGS', # FIXME: asmflags?
352 'compile=$(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)', # FIXME: a different compiler?
353 'compiler-name=COMPILE',
357 ®ister_language ('f77', 'linker=F77LINK', 'flags=FFLAGS',
358 'compile=$(F77) $(AM_FFLAGS) $(FFLAGS)',
359 'compiler-name=F77COMPILE',
360 'output-arg=-c -o $@',
362 ®ister_language ('ppf77', 'linker=F77LINK', 'flags=FFLAGS',
363 'compile=$(F77) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)',
364 'compiler-name=PPF77COMPILE',
365 'output-arg=-c -o $@',
367 ®ister_language ('ratfor', 'linker=F77LINK',
368 'flags=RFLAGS', # FIXME also FFLAGS.
369 'compile=$(F77) $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)',
370 'compiler-name=RCOMPILE',
371 'output-arg=-c -o $@',
373 # FIXME: for now we can't do dependency tracking for Java.
375 ®ister_language ('java', 'linker=GCJLINK', 'flags=GCJFLAGS',
376 'compile=$(GCJ) $(DEFS) $(INCLUDES) $(AM_GCJFLAGS) $(GCJFLAGS)',
377 'compiler-name=GCJCOMPILE',
378 'output-arg=-c -o $@',
379 'java', 'class', 'zip', 'jar');
382 # Parse command line.
383 &parse_arguments (@ARGV);
385 # Do configure.in scan only once.
388 die "automake: no \`Makefile.am' found or specified\n"
391 # If --generate-deps was given, we don't do anything else
395 die "automake: Must specify --include-deps (or -i) when generating\n"
396 if $use_dependencies;
397 die "automake: Must provide --build-dir when generating\n"
398 if ! $build_directory;
399 die "automake: Must provide --srcdir-name when generating\n"
402 open (GDEP, ">$output_directory/.dep_segment")
403 || die "automake: Could not open `$output_directory/.dep_segment': $!\n";
405 &handle_dependencies;
406 print GDEP $output_rules;
412 # Now do all the work on each file.
413 foreach $am_file (@input_files)
415 if (! -f ($am_file . '.am'))
417 &am_error ("\`" . $am_file . ".am' does not exist");
421 &generate_makefile ($output_files{$am_file}, $am_file);
425 &am_conf_error ("AC_PROG_INSTALL must be used in configure.in")
426 if (! $seen_prog_install);
431 ################################################################
433 # Parse command line.
436 local (@arglist) = @_;
439 &set_strictness ('gnu');
443 if ($arglist[0] eq "--version")
445 print "automake (GNU $PACKAGE) $VERSION\n\n";
446 print "Copyright (C) 1999 Free Software Foundation, Inc.\n";
447 print "This is free software; see the source for copying conditions. There is NO\n";
448 print "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n";
449 print "Written by Tom Tromey <tromey\@cygnus.com>\n";
453 elsif ($arglist[0] eq "--help")
457 elsif ($arglist[0] =~ /^--amdir=(.+)$/)
461 elsif ($arglist[0] eq '--amdir')
463 &require_argument (@arglist);
465 $am_dir = $arglist[0];
467 elsif ($arglist[0] =~ /^--build-dir=(.+)$/)
470 $build_directory = $1 . '/';
472 elsif ($arglist[0] eq '--build-dir')
474 &require_argument (@arglist);
477 $build_directory = $arglist[0] . '/';
479 elsif ($arglist[0] =~ /^--srcdir-name=(.+)$/)
483 elsif ($arglist[0] eq '--srcdir-name')
485 &require_argument (@arglist);
487 $srcdir_name = $arglist[0];
489 elsif ($arglist[0] eq '--gnu')
491 &set_strictness ('gnu');
493 elsif ($arglist[0] eq '--gnits')
495 &set_strictness ('gnits');
497 elsif ($arglist[0] eq '--cygnus')
501 elsif ($arglist[0] eq '--foreign')
503 &set_strictness ('foreign');
505 elsif ($arglist[0] eq '--include-deps' || $arglist[0] eq '-i')
507 $cmdline_use_dependencies = 0;
509 elsif ($arglist[0] eq '--generate-deps')
513 elsif ($arglist[0] eq '--no-force')
515 $force_generation = 0;
517 elsif ($arglist[0] =~ /^--output-dir=(.*)$/)
519 # Set output directory.
520 $output_directory = $1;
522 elsif ($arglist[0] eq '--output-dir' || $arglist[0] eq '-o')
524 &require_argument (@arglist);
526 $output_directory = $arglist[0];
528 elsif ($arglist[0] eq '--add-missing' || $arglist[0] eq '-a')
532 elsif ($arglist[0] eq '--copy' || $arglist[0] eq '-c')
536 elsif ($arglist[0] eq '--verbose' || $arglist[0] eq '-v')
540 elsif ($arglist[0] eq '--')
542 # Stop option processing.
544 push (@input_files, @arglist);
547 elsif ($arglist[0] =~ /^-/)
549 die "automake: unrecognized option -- \`$arglist[0]'\nTry \`automake --help' for more information.\n";
553 # Handle $local:$input syntax. Note that we only examine
554 # the first ":" file to see if it is automake input; the
555 # rest are just taken verbatim. We still keep all the
556 # files around for dependency checking, however.
557 local ($local, $input, @rest) = split (/:/, $arglist[0]);
564 # Strip .in; later on .am is tacked on. That is how
565 # the automake input file is found. Maybe not the
566 # best way, but it is easy to explain. FIXME: should
567 # be error if .in is missing.
570 push (@input_files, $input);
571 $output_files{$input} = join (':', ($local, @rest));
577 # Take global strictness from whatever we currently have set.
578 $default_strictness = $strictness;
579 $default_strictness_name = $strictness_name;
582 # Ensure argument exists, or die.
585 local ($arg, @arglist) = @_;
586 die "automake: no argument given for option \`$arg'\n"
590 ################################################################
592 # Generate a Makefile.in given the name of the corresponding Makefile and
593 # the name of the file output by config.status.
594 sub generate_makefile
596 local ($output, $makefile) = @_;
598 ($am_file_name = $makefile) =~ s/^.*\///;
599 $in_file_name = $am_file_name . '.in';
600 $am_file_name .= '.am';
602 # $OUTPUT is encoded. If it contains a ":" then the first element
603 # is the real output file, and all remaining elements are input
604 # files. We don't scan or otherwise deal with these input file,
605 # other than to mark them as dependencies. See scan_configure for
607 local (@secondary_inputs);
608 ($output, @secondary_inputs) = split (/:/, $output);
610 &initialize_per_input;
611 $relative_dir = &dirname ($output);
612 $am_relative_dir = &dirname ($makefile);
614 # At the toplevel directory, we might need config.guess, config.sub
615 # or libtool scripts (ltconfig and ltmain.sh).
616 if ($relative_dir eq '.')
618 # libtool requires some files.
619 &require_conf_file_with_conf_line ($libtool_line, $FOREIGN,
623 # AC_CANONICAL_HOST and AC_CANONICAL_SYSTEM need config.guess and
625 &require_config_file ($FOREIGN, 'config.guess', 'config.sub')
629 # We still need Makefile.in here, because sometimes the `dist'
630 # target doesn't re-run automake.
631 if ($am_relative_dir eq $relative_dir)
633 # Only distribute the files if they are in the same subdir as
634 # the generated makefile.
635 &push_dist_common ($in_file_name, $am_file_name);
638 push (@sources, '$(SOURCES)')
639 if &variable_defined ('SOURCES');
640 push (@objects, '$(OBJECTS)')
641 if &variable_defined ('OBJECTS');
643 &read_main_am_file ($makefile . '.am');
646 # Fatal error. Just return, so we can continue with next file.
650 # Must do this after reading .am file. See read_main_am_file to
651 # understand weird tricks we play there with variables.
652 &define_variable ('subdir', $relative_dir);
654 # Check first, because we might modify some state.
656 &check_gnu_standards;
657 &check_gnits_standards;
659 &handle_configure ($output, $makefile, @secondary_inputs);
666 &handle_built_sources;
668 # This must be run after all the sources are scanned.
671 # Re-init SOURCES and OBJECTS. FIXME: other code shouldn't depend
672 # on this (but currently does).
673 $contents{'SOURCES'} = join (' ', @sources);
674 $contents{'OBJECTS'} = join (' ', @objects);
675 &define_pretty_variable ('DIST_SOURCES', '', @dist_sources);
686 &handle_minor_options;
687 &handle_dist ($makefile);
688 &handle_dependencies;
691 &handle_merge_targets ($output);
698 if (! -d ($output_directory . '/' . $am_relative_dir))
700 mkdir ($output_directory . '/' . $am_relative_dir, 0755);
703 local ($out_file) = $output_directory . '/' . $makefile . ".in";
704 if (! $force_generation && -e $out_file)
706 local ($am_time) = (stat ($makefile . '.am'))[9];
707 local ($in_time) = (stat ($out_file))[9];
708 # FIXME: should cache these times.
709 local ($conf_time) = (stat ('configure.in'))[9];
710 # FIXME: how to do unsigned comparison?
711 if ($am_time < $in_time || $am_time < $conf_time)
718 local ($acl_time) = (stat _)[9];
719 return if ($am_time < $acl_time);
723 if (! open (GM_FILE, "> " . $out_file))
725 warn "automake: ${am_file}.in: cannot write: $!\n";
729 print "automake: creating ", $makefile, ".in\n" if $verbose;
731 print GM_FILE $output_vars;
732 # We make sure that `all:' is the first target.
733 print GM_FILE $output_all;
734 print GM_FILE $output_header;
735 print GM_FILE $output_rules;
736 print GM_FILE $output_trailer;
741 ################################################################
743 # Handle AUTOMAKE_OPTIONS variable. Return 1 on error, 0 otherwise.
746 if (&variable_defined ('AUTOMAKE_OPTIONS'))
748 foreach (&variable_value_as_list ('AUTOMAKE_OPTIONS', ''))
751 if ($_ eq 'gnits' || $_ eq 'gnu' || $_ eq 'foreign')
753 &set_strictness ($_);
755 elsif ($_ eq 'cygnus')
761 # An option like "../lib/ansi2knr" is allowed. With
762 # no path prefix, we assume the required programs are
763 # in this directory. We save the actual option for
765 $options{'ansi2knr'} = $_;
767 elsif ($_ eq 'no-installman' || $_ eq 'no-installinfo'
768 || $_ eq 'dist-shar' || $_ eq 'dist-zip'
769 || $_ eq 'dist-tarZ' || $_ eq 'dist-bzip2'
770 || $_ eq 'dejagnu' || $_ eq 'no-texinfo.tex'
771 || $_ eq 'readme-alpha' || $_ eq 'check-news'
772 || $_ eq 'subdir-objects')
774 # Explicitly recognize these.
776 elsif ($_ eq 'no-dependencies')
778 $use_dependencies = 0;
780 elsif (/([0-9]+)\.([0-9]+)([a-z])?/)
782 # Got a version number.
784 local ($rmajor, $rminor, $ralpha) = ($1, $2, $3);
786 if ($VERSION !~ /([0-9]+)\.([0-9]+)([a-z])?/)
789 "automake: programming error: version is incorrect\n";
792 local ($tmajor, $tminor, $talpha) = ($1, $2, $3);
794 # 2.0 is better than 1.0.
795 # 1.2 is better than 1.1.
796 # 1.2a is better than 1.2.
797 if ($rmajor > $tmajor
798 || ($rmajor == $tmajor && $rminor > $tminor)
799 || ($rminor == $tminor && $rminor == $tminor
800 && $ralpha gt $talpha))
802 &am_line_error ('AUTOMAKE_OPTIONS',
803 "require version $_, only have $VERSION");
809 &am_line_error ('AUTOMAKE_OPTIONS',
810 "option \`" . $_ . "\' not recognized");
815 if ($strictness == $GNITS)
817 $options{'readme-alpha'} = 1;
818 $options{'check-news'} = 1;
824 # Return object extension. Just once, put some code into the output.
825 # Argument is the name of the output file
826 sub get_object_extension
830 # Maybe require libtool library object files.
831 local ($extension) = '.o';
832 $extension = '.$(OBJEXT)' if $seen_objext;
833 $extension = '.lo' if ($out =~ /\.la$/);
835 if (! $included_generic_compile)
839 if (&variable_defined ('CONFIG_HEADER'))
842 foreach $one_hdr (split (' ', &variable_value ('CONFIG_HEADER')))
845 ($var = &dirname ($one_hdr)) =~ s/(\W)/\\$1/g;
846 $xform .= ' ' if $xform;
847 $xform .= '-I' . $var;
850 $xform = 's/\@CONFIG_INCLUDE_SPEC\@/' . $xform . '/go;';
851 $output_vars .= &file_contents_with_transform ($xform,
854 $xform = $seen_objext ? 's/^OBJEXT//;' : 's/^OBJEXT.*$//;';
855 $output_rules .= &file_contents_with_transform ($xform, 'compile');
857 &push_phony_cleaners ('compile');
859 # If using X, include some extra variable definitions. NOTE
860 # we don't want to force these into CFLAGS or anything,
861 # because not all programs will necessarily use X.
865 foreach $var ('X_CFLAGS', 'X_LIBS', 'X_EXTRA_LIBS', 'X_PRE_LIBS')
867 &define_configure_variable ($var);
871 push (@suffixes, '.c', '.o');
872 push (@suffixes, '.obj') if $seen_objext;
873 push (@clean, 'compile');
875 $included_generic_compile = 1;
878 if ($seen_libtool && ! $included_libtool_compile)
880 # Output the libtool compilation rules.
882 &file_contents_with_transform
883 ($use_dependencies ? 's/^NOTDEPEND.*$//;' : 's/^NOTDEPEND//;',
886 &push_phony_cleaners ('libtool');
888 push (@suffixes, '.lo');
889 push (@clean, 'libtool');
891 $included_libtool_compile = 1;
894 # Check for automatic de-ANSI-fication.
895 if (defined $options{'ansi2knr'})
897 $extension = '$U' . $extension;
898 if (! $included_knr_compile)
900 if (! $am_c_prototypes)
902 &am_line_error ('AUTOMAKE_OPTIONS',
903 "option \`ansi2knr' in use but \`AM_C_PROTOTYPES' not in configure.in");
904 &keyed_aclocal_warning ('AM_C_PROTOTYPES');
905 # Only give this error once.
906 $am_c_prototypes = 1;
909 # Only require ansi2knr files if they should appear in
911 if ($options{'ansi2knr'} eq 'ansi2knr')
913 &require_file_with_line ('AUTOMAKE_OPTIONS', $FOREIGN,
914 'ansi2knr.c', 'ansi2knr.1');
915 $output_rules .= &file_contents ('kr-extra');
916 push (@clean, 'krextra');
917 &push_phony_cleaners ('krextra');
920 # Generate rules to build ansi2knr. If it is in some
921 # other directory, then generate dependencies but have the
922 # rule just run elsewhere.
923 $objext = $seen_objext ? ".\$(OBJEXT)" : ".o";
924 $output_rules .= ($options{'ansi2knr'} . ': '
925 . $options{'ansi2knr'} . $objext . "\n");
926 if ($options{'ansi2knr'} eq 'ansi2knr')
928 $output_rules .= ("\t\$(LINK) ansi2knr" . $objext
930 . "ansi2knr" . $objext
931 . ": \$(CONFIG_HEADER)\n\n");
935 $output_rules .= ("\tcd " . &dirname ($options{'ansi2knr'})
936 . " && \$(MAKE) \$(AM_MAKEFLAGS) "
938 # This is required for non-GNU makes.
939 $output_rules .= ($options{'ansi2knr'} . $objext . ":\n");
940 $output_rules .= ("\tcd " . &dirname ($options{'ansi2knr'})
941 . " && \$(MAKE) \$(AM_MAKEFLAGS)"
942 . " ansi2knr" . $objext . "\n\n");
945 # Make sure ansi2knr can be found: if no path specified,
947 if ($options{'ansi2knr'} eq 'ansi2knr')
949 # Substitution from AM_C_PROTOTYPES. This makes it be
950 # built only when necessary.
951 &define_configure_variable ('ANSI2KNR');
952 # ansi2knr needs to be built before subdirs, so unshift it.
953 unshift (@all, '$(ANSI2KNR)');
957 # Found in another directory.
958 &define_variable ("ANSI2KNR", $options{'ansi2knr'});
961 $output_rules .= &file_contents ('clean-kr');
964 &push_phony_cleaners ('kr');
966 $included_knr_compile = 1;
973 # Call finish function for each language that was used.
976 local ($ltcompile, $ltlink) = &libtool_compiler;
978 local ($ext, $name, $lang, %done);
980 foreach $ext (sort keys %extension_seen)
982 $lang = $extension_map{$ext};
984 # Generate the appropriate rules for this extension.
986 if (defined $language_map{$lang . '-compile'})
988 $comp = $language_map{$lang . '-compile'};
990 local ($outarg) = $language_map{$lang . '-output-arg'};
991 if ($language_map{$lang . '-flags'} eq 'CFLAGS')
993 # C compilers don't always support -c -o.
994 if (defined $options{'subdir-objects'})
1000 local ($full) = ("\t\$("
1001 . $language_map{$lang . '-compiler-name'}
1004 $output_rules .= (".$ext.o:\n"
1007 # FIXME: Using cygpath should be somehow conditional.
1008 $output_rules .= (".$ext.obj:\n"
1010 . " \`cygpath -w \$<\`\n")
1012 $output_rules .= (".$ext.lo:\n"
1014 . $language_map{$lang . '-compiler-name'}
1016 . $language_map{$lang . '-output-arg'}
1017 # We can always use -c -o with libtool.
1018 . ($language_map{$lang . '-flags'} eq 'CFLAGS'
1024 push (@suffixes, '.' . $ext);
1026 # The rest of the loop is done once per language.
1027 next if defined $done{$lang};
1030 $non_c = 0 if $lang !~ /(objc|cxx|f77|ratfor)$/;
1034 &define_compiler_variable ($language_map{$lang . '-compiler-name'},
1037 # The compiler's flag must be a configure variable.
1038 if (defined $language_map{$lang . '-flags'})
1040 &define_configure_variable ($language_map{$lang . '-flags'});
1043 # Compute the function name of the finisher and then call it.
1044 $name = 'lang_' . $lang . '_finish';
1048 # If the project is entirely C++ or entirely Fortran 77, don't
1049 # bother with the C stuff. But if anything else creeps in, then use
1051 if (! $non_c || scalar keys %suffix_rules > 0)
1053 if (! defined $done{'c'})
1055 &define_configure_variable ($language_map{'c-flags'});
1056 &define_compiler_variable ($language_map{'c-compiler-name'},
1058 $language_map{'c-compile'});
1060 &define_variable ('CCLD', '$(CC)');
1061 &define_variable ('LINK', $ltlink . '$(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@');
1065 # Output a rule to build from a YACC source. The output from YACC is
1066 # compiled with C or C++, depending on the extension of the YACC file.
1067 sub output_yacc_build_rule
1069 local ($yacc_suffix, $use_ylwrap, $c_suffix) = @_;
1072 ($suffix = $yacc_suffix) =~ tr/y/c/;
1073 push (@suffixes, $yacc_suffix, $suffix);
1075 # Generate rule for c/c++.
1076 $output_rules .= "$yacc_suffix$suffix:\n\t";
1080 $output_rules .= ('$(SHELL) $(YLWRAP)'
1081 . ' "$(YACC)" $< y.tab.c $*' . $suffix
1082 . ' y.tab.h $*.h -- $(AM_YFLAGS) $(YFLAGS)');
1086 $output_rules .= ('$(YACC) $(AM_YFLAGS) $(YFLAGS) $< && mv y.tab.c $*'
1088 . "\tif test -f y.tab.h; then \\\n"
1089 . "\tif cmp -s y.tab.h \$*.h; then rm -f y.tab.h; else mv y.tab.h \$*.h; fi; \\\n"
1092 $output_rules .= "\n";
1095 sub output_lex_build_rule
1097 local ($lex_suffix, $use_ylwrap) = @_;
1100 ($c_suffix = $lex_suffix) =~ tr/l/c/;
1101 push (@suffixes, $lex_suffix);
1102 &define_configure_variable ('LEX_OUTPUT_ROOT');
1103 &define_configure_variable ('LEXLIB');
1104 $output_rules .= "$lex_suffix$c_suffix:\n\t";
1108 # Is the $@ correct here? If so, why not use it in the ylwrap
1109 # build rule for yacc above?
1110 $output_rules .= '$(SHELL) $(YLWRAP)'
1111 . ' "$(LEX)" $< $(LEX_OUTPUT_ROOT).c $@ -- $(AM_LFLAGS) $(LFLAGS)';
1115 $output_rules .= '$(LEX) $(AM_LFLAGS) $(LFLAGS) $< && mv $(LEX_OUTPUT_ROOT).c $@';
1117 $output_rules .= "\n";
1121 # Check to make sure a source defined in LIBOBJS is not explicitly
1122 # mentioned. This is a separate function (as opposed to being inlined
1123 # in handle_source_transform) because it isn't always appropriate to
1125 sub check_libobjs_sources
1127 local ($one_file, $unxformed) = @_;
1129 local ($prefix, $file, @files);
1130 foreach $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
1131 'dist_EXTRA_', 'nodist_EXTRA_')
1133 if (&variable_defined ($prefix . $one_file . '_SOURCES'))
1135 @files = &variable_value_as_list (($prefix
1136 . $one_file . '_SOURCES'),
1139 elsif ($prefix eq '')
1141 @files = ($unxformed . '.c');
1148 foreach $file (@files)
1150 if (defined $libsources{$file})
1152 &am_line_error ($prefix . $one_file . '_SOURCES',
1153 "automatically discovered file \`$file' should not be explicitly mentioned");
1159 # Does much of the actual work for handle_source_transform.
1161 # name of resulting executable or library ("derived")
1162 # object extension (e.g., `$U.lo')
1163 # list of source files to transform
1165 # first element is name of linker to use (empty string for default linker)
1166 # remaining elements are names of objects
1167 sub handle_single_transform_list
1169 local ($derived, $obj, @files) = @_;
1170 local (@result) = ();
1171 local ($nonansi_obj) = $obj;
1172 $nonansi_obj =~ s/_//g;
1173 local (%linkers_used) = ();
1176 # Turn sources into objects.
1179 # Skip things that look like configure substitutions.
1182 # If the source file is in a subdirectory then the `.o' is
1183 # put into the current directory.
1185 # Split file name into base and extension.
1186 local ($full, $directory, $base, $extension, $linker, $object);
1187 next if ! /^((.*)\/)?([^\/]*)\.(.*)$/;
1193 local ($xbase) = $base;
1195 # We must generate a rule for the object if it requires
1198 local ($renamed) = 0;
1200 local ($lang) = $extension_map{$extension};
1203 &saw_extension ($extension);
1204 # Found the language, so see what it says.
1205 local ($subr) = 'lang_' . $lang . '_rewrite';
1206 # Note: computed subr call.
1207 local ($r) = & $subr ($directory, $base, $extension);
1208 # Skip this entry if we were asked not to process it.
1209 next if $r == $LANG_IGNORE;
1211 # Now extract linker and other info.
1212 $linker = $language_map{$lang . '-linker'};
1214 local ($this_obj_ext);
1215 if ($language_map{$lang . '-ansi-p'})
1217 $object = $base . $obj;
1218 $this_obj_ext = $obj;
1222 $object = $base . $nonansi_obj;
1223 $this_obj_ext = $nonansi_obj;
1226 if ($language_map{$lang . '-flags'} ne ''
1227 && &variable_defined ($derived . '_'
1228 . $language_map{$lang . '-flags'}))
1230 # We have a per-executable flag in effect for this
1231 # object. In this case we rewrite the object's
1232 # name to ensure it is unique. We also require
1233 # the `compile' program to deal with compilers
1234 # where `-c -o' does not work.
1236 # We choose the name `DERIVED-OBJECT' to ensure
1237 # (1) uniqueness, and (2) continuity between
1238 # invocations. However, this will result in a
1239 # name that is too long for losing systems, in
1240 # some situations. So we provide _SHORTNAME to
1243 local ($dname) = $derived;
1244 if (&variable_defined ($derived . '_SHORTNAME'))
1246 # FIXME: should use the same conditional as
1247 # the _SOURCES variable. But this is really
1248 # silly overkill -- nobody should have
1249 # conditional shortnames.
1250 $dname = &variable_value ($derived . '_SHORTNAME');
1252 $object = $dname . '-' . $object;
1254 &require_file ($FOREIGN, 'compile')
1257 if (! defined $language_map{$lang . '-compile'})
1259 print STDERR "automake: programming error: $lang flags defined without compiler\n";
1262 # Compute the rule to compile this object.
1263 local ($flag) = $language_map{$lang . '-flags'};
1264 local ($val) = "(${derived}_${flag}";
1265 ($rule = $language_map{$lang . '-compile'}) =~
1268 $rule .= ' ' . $language_map{$lang . '-output-arg'};
1269 # For C we have to add the -o, because the
1270 # standard rule doesn't include it.
1271 if ($language_map{$lang . '-flags'} eq 'CFLAGS')
1279 # If rewrite said it was ok, put the object into a
1281 if ($r == $LANG_SUBDIR && $directory ne '')
1283 $object = $directory . '/' . $object;
1284 $xbase = $directory . '/' . $base;
1287 # If doing dependency tracking, then we can't print
1289 if ($use_dependencies
1291 && $language_map{$lang . '-autodep'} ne 'no')
1294 local ($obj_sans_ext) = substr ($object, 0,
1295 - length ($this_obj_ext));
1296 $lang_specific_files{$lang} .= (' ' . $derived
1298 . ' ' . $obj_sans_ext);
1301 elsif ($extension =~ /^$source_suffix_pattern$/)
1303 # We just rewrite it. Maybe we should do more.
1304 # FIXME: what about subdir handling here?
1305 $object = $base . '.' . $suffix_rules{$extension};
1310 # No error message here. Used to have one, but it was
1315 $linkers_used{$linker} = 1;
1317 push (@result, $object);
1319 if (defined $object_map{$object})
1321 if ($object_map{$object} ne $full)
1323 &am_error ("object \`$object' created by \`$full' and \`$object_map{$object}'");
1328 local (@dep_list) = ();
1329 $object_map{$object} = $full;
1331 # If file is in subdirectory, we need explicit
1333 if ($directory ne '' || $renamed)
1335 push (@dep_list, $full);
1338 # If resulting object is in subdir, we need to make
1339 # sure the subdir exists at build time.
1340 if ($object =~ /\//)
1342 # FIXME: check that $DIRECTORY is somewhere in the
1345 # We don't allow `..' in object file names for
1346 # *any* source, not just Java. For Java it just
1347 # doesn't make sense, but in general it is
1348 # a problem because we can't pick a good name for
1350 if ($object =~ /(\/|^)\.\.\//)
1352 &am_error ("\`$full' contains \`..' component but should not");
1355 push (@dep_list, $directory . '/.dirstamp');
1357 # If we're generating dependencies, we also want
1358 # to make sure that the appropriate subdir of the
1359 # .deps directory is created.
1360 if ($use_dependencies)
1362 push (@dep_list, '.deps/' . $directory . '/.dirstamp');
1365 if (! defined $directory_map{$directory})
1367 $directory_map{$directory} = 1;
1368 $output_rules .= ($directory . "/.dirstamp:\n"
1369 . "\t\@\$(mkinstalldirs) $directory\n"
1370 . "\t\@: > $directory/.dirstamp\n");
1371 if ($use_dependencies)
1373 $output_rules .= ('.deps/' . $directory
1375 . "\t\@\$(mkinstalldirs) .deps/$directory\n"
1376 . "\t\@: > .deps/$directory/.dirstamp\n");
1381 &pretty_print_rule ($object . ':', "\t", @dep_list)
1382 if scalar @dep_list > 0 || $rule ne '';
1384 # Print the rule if we have one.
1387 # Turn `$@' into name of our object file.
1389 ($xform = $object) =~ s,/,\\/,g;
1390 $rule =~ s/\$\@/$xform/;
1391 # FIXME: we use $< in an explicit rule here.
1392 # We can't use $(srcdir)/<file> because we don't
1393 # actually know it is in srcdir.
1395 # FIXME: handle .lo and .obj as well.
1396 $output_rules .= "\t" . $rule . "\n";
1400 # Transform .o or $o file into .P file (for automatic
1402 $dep_files{'.deps/' . $xbase . '.P'} = 1;
1406 return (&resolve_linker (%linkers_used), @result);
1409 # Handle SOURCE->OBJECT transform for one program or library.
1411 # canonical (transformed) name of object to build
1412 # actual name of object to build
1413 # object extension (ie either `.o' or `$o'.
1414 # Return result is name of linker variable that must be used.
1415 # Empty return means just use `LINK'.
1416 sub handle_source_transform
1418 # one_file is canonical name. unxformed is given name. obj is
1420 local ($one_file, $unxformed, $obj) = @_;
1422 local ($linker) = '';
1424 if (&variable_defined ($one_file . "_OBJECTS"))
1426 &am_line_error ($one_file . '_OBJECTS',
1427 $one_file . '_OBJECTS', 'should not be defined');
1428 # No point in continuing.
1432 local (@files, @result, $prefix, $temp, $xpfx);
1433 local (%used_pfx) = ();
1434 foreach $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
1435 'dist_EXTRA_', 'nodist_EXTRA_')
1437 # We are going to define _OBJECTS variables using the prefix.
1438 # Then we glom them all together. So we can't use the null
1439 # prefix here as we need it later.
1440 $xpfx = ($prefix eq '') ? 'am_' : $prefix;
1443 local ($var) = $prefix . $one_file . "_SOURCES";
1444 if (&variable_defined ($var))
1446 # Keep track of which prefixes we saw.
1447 $used_pfx{$xpfx} = 1
1448 unless $prefix =~ /EXTRA_/;
1450 push (@sources, '$(' . $prefix . $one_file . "_SOURCES)");
1451 push (@objects, '$(' . $xpfx . $one_file . "_OBJECTS)")
1452 unless $prefix =~ /EXTRA_/;
1453 push (@dist_sources, '$(' . $prefix . $one_file . "_SOURCES)")
1454 unless $prefix =~ /^nodist_/;
1455 local (@conds) = &variable_conditions ($var);
1458 @files = &variable_value_as_list ($var, '');
1463 foreach $cond (@conds)
1465 @files = &variable_value_as_list ($var, $cond);
1467 &handle_single_transform_list ($one_file, $obj,
1469 $linker = $temp if $linker eq '';
1471 # Define _OBJECTS conditionally.
1472 &define_pretty_variable ($xpfx . $one_file . '_OBJECTS',
1474 unless $prefix =~ /EXTRA_/;
1481 # Avoid defining needless variables.
1482 next if (scalar @files == 0);
1484 ($temp, @result) = &handle_single_transform_list ($one_file, $obj,
1486 $linker = $temp if $linker eq '';
1487 &define_pretty_variable ($xpfx . $one_file . "_OBJECTS", '', @result)
1488 unless $prefix =~ /EXTRA_/;
1491 local (@keys) = sort keys %used_pfx;
1492 if (scalar @keys == 0)
1494 &define_variable ($one_file . "_SOURCES", $unxformed . ".c");
1495 push (@sources, $unxformed . '.c');
1496 push (@dist_sources, $unxformed . '.c');
1497 push (@objects, $unxformed . $obj);
1498 push (@files, $unxformed . '.c');
1500 ($temp, @result) = &handle_single_transform_list ($one_file, $obj,
1502 $linker = $temp if $linker eq '';
1503 &define_pretty_variable ($one_file . "_OBJECTS", '', @result)
1507 grep ($_ = '$(' . $_ . $one_file . '_OBJECTS)', @keys);
1508 &define_pretty_variable ($one_file . '_OBJECTS', '', @keys);
1514 # Handle the BUILT_SOURCES variable.
1515 sub handle_built_sources
1517 return unless &variable_defined ('BUILT_SOURCES');
1519 local (@sources) = &variable_value_as_list ('BUILT_SOURCES', 'all');
1521 foreach $s (@sources)
1525 # FIXME: is this really the right thing to do?
1526 &am_line_error ('BUILT_SOURCES',
1527 "\`BUILT_SOURCES' should not contain a configure substitution");
1533 # Special-case @ALLOCA@ and @LIBOBJS@ in _LDADD or _LIBADD variables.
1534 # Also, generate _DEPENDENCIES variable if appropriate.
1536 # transformed name of object being built, or empty string if no object
1537 # name of _LDADD/_LIBADD-type variable to examine
1538 # boolean (lex_seen) which is true if a lex source file was seen in this
1539 # object. valid only for LDADDs, not LIBADDs.
1540 # Returns 1 if LIBOBJS seen, 0 otherwise.
1541 sub handle_lib_objects
1543 local ($xname, $var, $lex_seen) = @_;
1546 die "automake: programming error 1 in handle_lib_objects\n"
1547 if ! &variable_defined ($var);
1549 die "automake: programming error 2 in handle_lib_objects\n"
1550 if $lex_seen && $var =~ /LIBADD/;
1552 local (@conds) = &variable_conditions ($var);
1555 $ret = &handle_lib_objects_cond ($xname, $var, $lex_seen, '');
1561 foreach $cond (@conds)
1563 if (&handle_lib_objects_cond ($xname, $var, $lex_seen, $cond))
1573 # Subroutine of handle_lib_objects: handle a particular condition.
1574 sub handle_lib_objects_cond
1576 local ($xname, $var, $lex_seen, $cond) = @_;
1578 # We recognize certain things that are commonly put in LIBADD or
1581 local (@dep_list) = ();
1583 local ($seen_libobjs) = 0;
1584 local ($flagvar) = 0;
1586 foreach $lsearch (&variable_value_as_list ($var, $cond))
1588 # Skip -lfoo and -Ldir; these are explicitly allowed.
1589 next if $lsearch =~ /^-[lL]/;
1590 if (! $flagvar && $lsearch =~ /^-/)
1592 if ($var =~ /^(.*)LDADD$/)
1594 # Skip -dlopen and -dlpreopen; these are explicitly allowed.
1595 next if $lsearch =~ /^-dl(pre)?open$/;
1596 &am_line_error ($var, "linker flags such as \`$lsearch' belong in \`${1}LDFLAGS");
1600 # Only get this error once.
1602 &am_line_error ($var, "linker flags such as \`$lsearch' belong in \`${1}LDFLAGS");
1606 # Assume we have a file of some sort, and push it onto the
1607 # dependency list. Autoconf substitutions are not pushed;
1608 # rarely is a new dependency substituted into (eg) foo_LDADD
1609 # -- but "bad things (eg -lX11) are routinely substituted.
1610 # Note that LIBOBJS and ALLOCA are exceptions to this rule,
1611 # and handled specially below.
1612 push (@dep_list, $lsearch)
1613 unless $lsearch =~ /^\@.*\@$/;
1615 # Automatically handle @LIBOBJS@ and @ALLOCA@. Basically this
1616 # means adding entries to dep_files.
1617 if ($lsearch =~ /^\@(LT)?LIBOBJS\@$/)
1619 push (@dep_list, $lsearch);
1621 if (! keys %libsources)
1623 &am_line_error ($var, "\@$1" . "LIBOBJS\@ seen but never set in \`configure.in'");
1626 local ($iter, $rewrite);
1627 foreach $iter (keys %libsources)
1629 if ($iter =~ /\.([cly])$/)
1631 &saw_extension ($1);
1632 &saw_extension ('c');
1635 if ($iter =~ /\.h$/)
1637 &require_file_with_line ($var, $FOREIGN, $iter);
1639 elsif ($iter ne 'alloca.c')
1641 ($rewrite = $iter) =~ s/\.c$/.P/;
1642 $dep_files{'.deps/' . $rewrite} = 1;
1643 ($rewrite = $iter) =~ s/(\W)/\\$1/g;
1644 $rewrite = "^" . $rewrite . "\$";
1645 # Only require the file if it is not a built source.
1646 if (! &variable_defined ('BUILT_SOURCES')
1647 || ! grep (/$rewrite/,
1648 &variable_value_as_list ('BUILT_SOURCES',
1651 &require_file_with_line ($var, $FOREIGN, $iter);
1656 elsif ($lsearch =~ /^\@(LT)?ALLOCA\@$/)
1658 push (@dep_list, $lsearch);
1659 &am_line_error ($var,
1660 "\@$1" . "ALLOCA\@ seen but \`AC_FUNC_ALLOCA' not in \`configure.in'")
1661 if ! defined $libsources{'alloca.c'};
1662 $dep_files{'.deps/alloca.P'} = 1;
1663 &require_file_with_line ($var, $FOREIGN, 'alloca.c');
1664 &saw_extension ('c');
1668 if ($xname ne '' && ! &variable_defined ($xname . '_DEPENDENCIES', $cond))
1670 &define_pretty_variable ($xname . '_DEPENDENCIES', $cond, @dep_list);
1673 return $seen_libobjs;
1676 # Canonicalize a name, and check to make sure the non-canonical name
1677 # is never used. Returns canonical name. Arguments are name and a
1678 # list of suffixes to check for.
1679 sub check_canonical_spelling
1681 local ($name, @suffixes) = @_;
1682 local ($xname, $xt);
1684 ($xname = $name) =~ tr/A-Za-z0-9_/_/c;
1685 if ($xname ne $name)
1688 foreach $xt (@suffixes)
1690 &am_line_error ($name . $xt,
1691 "invalid variable \`" . $name . $xt
1692 . "'; should be \`" . $xname . $xt . "'")
1693 if &variable_defined ($name . $xt);
1700 # Handle C programs.
1703 local (@proglist) = &am_install_var ('-clean',
1704 'progs', 'PROGRAMS',
1705 'bin', 'sbin', 'libexec', 'pkglib',
1707 return if ! @proglist;
1709 # If a program is installed, this is required. We only want this
1710 # error to appear once.
1711 &am_conf_error ("AC_ARG_PROGRAM must be used in configure.in")
1712 unless $seen_arg_prog;
1715 local ($one_file, $xname, $munge);
1717 local ($seen_libobjs) = 0;
1718 foreach $one_file (@proglist)
1720 local ($obj) = &get_object_extension ($one_file);
1722 # Canonicalize names and check for misspellings.
1723 $xname = &check_canonical_spelling ($one_file, '_LDADD', '_LDFLAGS',
1724 '_SOURCES', '_OBJECTS',
1727 # FIXME: Using a trick to figure out if any lex sources appear
1728 # in our program; should use some cleaner method.
1729 local ($lex_num) = scalar (keys %lex_sources);
1730 local ($linker) = &handle_source_transform ($xname, $one_file, $obj);
1731 local ($lex_file_seen) = (scalar (keys %lex_sources) > $lex_num);
1734 if (&variable_defined ($xname . "_LDADD"))
1736 if (&handle_lib_objects ($xname, $xname . '_LDADD',
1746 # User didn't define prog_LDADD override. So do it.
1747 &define_variable ($xname . '_LDADD', '$(LDADD)');
1749 # This does a bit too much work. But we need it to
1750 # generate _DEPENDENCIES when appropriate.
1751 if (&variable_defined ('LDADD'))
1753 if (&handle_lib_objects ($xname, 'LDADD', $lex_file_seen))
1759 elsif (! &variable_defined ($xname . '_DEPENDENCIES'))
1761 &define_variable ($xname . '_DEPENDENCIES', '');
1766 if (&variable_defined ($xname . '_LIBADD'))
1768 &am_line_error ($xname . '_LIBADD',
1769 "use \`" . $xname . "_LDADD', not \`"
1770 . $xname . "_LIBADD'");
1773 if (! &variable_defined ($xname . '_LDFLAGS'))
1775 # Define the prog_LDFLAGS variable.
1776 &define_variable ($xname . '_LDFLAGS', '');
1779 # Determine program to use for link.
1781 if (&variable_defined ($xname . '_LINK'))
1783 $xlink = $xname . '_LINK';
1787 $xlink = $linker ? $linker : 'LINK';
1791 if ($seen_exeext && $one_file !~ /\./)
1793 $xexe = 's/\@EXEEXT\@/\$(EXEEXT)/g;';
1797 $xexe = 's/\@EXEEXT\@//g;';
1801 &file_contents_with_transform
1802 ('s/\@PROGRAM\@/' . $one_file . '/go;'
1803 . 's/\@XPROGRAM\@/' . $xname . '/go;'
1804 . 's/\@XLINK\@/' . $xlink . '/go;'
1809 if (&variable_defined ('LDADD') && &handle_lib_objects ('', 'LDADD', 0))
1816 foreach $one_file (@proglist)
1818 # Canonicalize names.
1819 ($xname = $one_file) =~ tr/A-Za-z0-9_/_/c;
1821 if (&variable_defined ($xname . '_LDADD'))
1823 &check_libobjs_sources ($xname, $xname . '_LDADD');
1825 elsif (&variable_defined ('LDADD'))
1827 &check_libobjs_sources ($xname, 'LDADD');
1835 sub handle_libraries
1837 local (@liblist) = &am_install_var ('-clean',
1838 'libs', 'LIBRARIES',
1839 'lib', 'pkglib', 'noinst', 'check');
1840 return if ! @liblist;
1842 local (%valid) = &am_primary_prefixes ('LIBRARIES', 0, 'lib', 'pkglib',
1844 if (! defined $configure_vars{'RANLIB'})
1847 foreach $key (keys %valid)
1849 if (&variable_defined ($key . '_LIBRARIES'))
1851 &am_line_error ($key . '_LIBRARIES', "library used but \`RANLIB' not defined in \`configure.in'");
1852 # Only get this error once. If this is ever printed,
1854 $configure_vars{'RANLIB'} = 'BUG';
1863 local ($seen_libobjs) = 0;
1864 foreach $onelib (@liblist)
1866 # Check that the library fits the standard naming convention.
1867 if ($onelib !~ /^lib.*\.a$/)
1869 # FIXME should put line number here. That means mapping
1870 # from library name back to variable name.
1871 &am_error ("\`$onelib' is not a standard library name");
1874 local ($obj) = &get_object_extension ($onelib);
1876 # Canonicalize names and check for misspellings.
1877 $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_SOURCES',
1878 '_OBJECTS', '_DEPENDENCIES', '_AR');
1880 if (! &variable_defined ($xlib . '_AR'))
1882 &define_variable ($xlib . '_AR', '$(AR) cru');
1885 if (&variable_defined ($xlib . '_LIBADD'))
1887 if (&handle_lib_objects ($xlib, $xlib . '_LIBADD', 0))
1894 # Generate support for conditional object inclusion in
1896 &define_variable ($xlib . "_LIBADD", '');
1899 if (&variable_defined ($xlib . '_LDADD'))
1901 &am_line_error ($xlib . '_LDADD',
1902 "use \`" . $xlib . "_LIBADD', not \`"
1903 . $xlib . "_LDADD'");
1906 # Make sure we at look at this.
1907 &examine_variable ($xlib . '_DEPENDENCIES');
1909 &handle_source_transform ($xlib, $onelib, $obj);
1912 &file_contents_with_transform ('s/\@LIBRARY\@/' . $onelib . '/go;'
1920 foreach $onelib (@liblist)
1922 # Canonicalize names.
1923 ($xlib = $onelib) =~ tr/A-Za-z0-9_/_/c;
1924 if (&variable_defined ($xlib . '_LIBADD'))
1926 &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
1931 &define_variable ('AR', 'ar');
1932 &define_configure_variable ('RANLIB');
1935 # Handle shared libraries.
1936 sub handle_ltlibraries
1938 local (@liblist) = &am_install_var ('-clean',
1939 'ltlib', 'LTLIBRARIES',
1940 'noinst', 'lib', 'pkglib', 'check');
1941 return if ! @liblist;
1944 local (%valid) = &am_primary_prefixes ('LTLIBRARIES', 0, 'lib', 'pkglib',
1948 foreach $key (keys %valid)
1950 if (&variable_defined ($key . '_LTLIBRARIES'))
1954 &am_line_error ($key . '_LTLIBRARIES', "library used but \`LIBTOOL' not defined in \`configure.in'");
1955 # Only get this error once. If this is ever printed,
1957 $configure_vars{'LIBTOOL'} = 'BUG';
1961 # Get the installation directory of each library.
1962 for (&variable_value_as_list ($key . '_LTLIBRARIES', 'all'))
1966 &am_error ("\`$_' is already going to be installed in \`$instdirs{$_}'");
1970 $instdirs{$_} = $key;
1979 local ($seen_libobjs) = 0;
1980 foreach $onelib (@liblist)
1982 local ($obj) = &get_object_extension ($onelib);
1984 # Canonicalize names and check for misspellings.
1985 $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_LDFLAGS',
1986 '_SOURCES', '_OBJECTS',
1989 if (! &variable_defined ($xlib . '_LDFLAGS'))
1991 # Define the lib_LDFLAGS variable.
1992 &define_variable ($xlib . '_LDFLAGS', '');
1995 # Check that the library fits the standard naming convention.
1996 $libname_rx = "^lib.*\.la";
1997 if (&variable_value ($xlib . '_LDFLAGS') =~ /-module/
1998 || &variable_value ('LDFLAGS') =~ /-module/)
2000 # Relax name checking for libtool modules.
2001 $libname_rx = "\.la";
2003 if ($onelib !~ /$libname_rx$/)
2005 # FIXME this should only be a warning for foreign packages
2006 # FIXME should put line number here. That means mapping
2007 # from library name back to variable name.
2008 &am_error ("\`$onelib' is not a standard libtool library name");
2011 if (&variable_defined ($xlib . '_LIBADD'))
2013 if (&handle_lib_objects ($xlib, $xlib . '_LIBADD', 0))
2020 # Generate support for conditional object inclusion in
2022 &define_variable ($xlib . "_LIBADD", '');
2025 if (&variable_defined ($xlib . '_LDADD'))
2027 &am_line_error ($xlib . '_LDADD',
2028 "use \`" . $xlib . "_LIBADD', not \`"
2029 . $xlib . "_LDADD'");
2032 # Make sure we at look at this.
2033 &examine_variable ($xlib . '_DEPENDENCIES');
2035 local ($linker) = &handle_source_transform ($xlib, $onelib, $obj);
2037 # Determine program to use for link.
2039 if (&variable_defined ($xlib . '_LINK'))
2041 $xlink = $xlib . '_LINK';
2045 $xlink = $linker ? $linker : 'LINK';
2049 if ($instdirs{$onelib} eq 'EXTRA' || $instdirs{$onelib} eq 'noinst')
2051 # It's an EXTRA_ library, so we can't specify -rpath,
2052 # because we don't know where the library will end up.
2053 # The user probably knows, but generally speaking automake
2054 # doesn't -- and in fact configure could decide
2055 # dynamically between two different locations.
2056 $rpath = 's/\@RPATH\@//go;';
2060 $rpath = ('s/\@RPATH\@/-rpath \$(' . $instdirs{$onelib}
2065 &file_contents_with_transform ('s/\@LTLIBRARY\@/'
2067 . 's/\@XLTLIBRARY\@/'
2070 . 's/\@XLINK\@/' . $xlink . '/go;',
2076 foreach $onelib (@liblist)
2078 # Canonicalize names.
2079 ($xlib = $onelib) =~ tr/A-Za-z0-9_/_/c;
2080 if (&variable_defined ($xlib . '_LIBADD'))
2082 &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
2088 # See if any _SOURCES variable were misspelled. Also, make sure that
2089 # EXTRA_ variables don't contain configure substitutions.
2092 local ($varname, $primary);
2093 foreach $varname (keys %contents)
2095 foreach $primary ('_SOURCES', '_LIBADD', '_LDADD', '_LDFLAGS',
2098 if ($varname =~ /$primary$/ && ! $content_seen{$varname})
2100 &am_line_error ($varname,
2101 "invalid unused variable name: \`$varname'");
2110 # NOTE we no longer automatically clean SCRIPTS, because it is
2111 # useful to sometimes distribute scripts verbatim. This happens
2112 # eg in Automake itself.
2113 &am_install_var ('-candist', 'scripts', 'SCRIPTS',
2114 'bin', 'sbin', 'libexec', 'pkgdata',
2117 local ($scripts_installed) = 0;
2118 # Set $scripts_installed if appropriate. Make sure we only find
2119 # scripts which are actually installed -- this is why we can't
2120 # simply use the return value of am_install_var.
2121 local (%valid) = &am_primary_prefixes ('SCRIPTS', 1, 'bin', 'sbin',
2122 'libexec', 'pkgdata',
2125 foreach $key (keys %valid)
2127 if ($key ne 'noinst'
2129 && &variable_defined ($key . '_SCRIPTS'))
2131 $scripts_installed = 1;
2132 # push (@check_tests, 'check-' . $key . 'SCRIPTS');
2136 if ($scripts_installed)
2138 # If a program is installed, this is required. We only want this
2139 # error to appear once.
2140 &am_conf_error ("AC_ARG_PROGRAM must be used in configure.in")
2141 unless $seen_arg_prog;
2146 # Search a file for a "version.texi" Texinfo include. Return the name
2147 # of the include file if found, or the empty string if not. A
2148 # "version.texi" file is actually any file whose name matches
2150 sub scan_texinfo_file
2152 local ($filename) = @_;
2154 if (! open (TEXI, $filename))
2156 &am_error ("couldn't open \`$filename': $!");
2159 print "automake: reading $filename\n" if $verbose;
2161 local ($vfile, $outfile);
2164 if (/^\@setfilename +(\S+)/)
2170 if (/^\@include\s+(vers[^.]*\.texi)\s*$/)
2172 # Found version.texi include.
2179 return ($outfile, $vfile);
2182 # Handle all Texinfo source.
2185 &am_line_error ('TEXINFOS',
2186 "\`TEXINFOS' is an anachronism; use \`info_TEXINFOS'")
2187 if &variable_defined ('TEXINFOS');
2188 return if (! &variable_defined ('info_TEXINFOS')
2189 && ! &variable_defined ('html_TEXINFOS'));
2191 if (&variable_defined ('html_TEXINFOS'))
2193 &am_line_error ('html_TEXINFOS',
2194 "HTML generation not yet supported");
2198 local (@texis) = &variable_value_as_list ('info_TEXINFOS', 'all');
2200 local (@info_deps_list, @dvis_list, @texi_deps);
2201 local ($infobase, $info_cursor);
2205 local ($tc_cursor, @texi_cleans);
2208 foreach $info_cursor (@texis)
2210 # FIXME: This is mildly hacky, since it recognizes "txinfo".
2211 # I don't feel like making it right.
2212 ($infobase = $info_cursor) =~ s/\.te?xi(nfo)?$//;
2214 # If 'version.texi' is referenced by input file, then include
2215 # automatic versioning capability.
2216 local ($out_file, $vtexi) = &scan_texinfo_file ($relative_dir
2217 . "/" . $info_cursor);
2219 if ($out_file eq '')
2221 &am_error ("\`$info_cursor' missing \@setfilename");
2225 if ($out_file =~ /\.(.+)$/ && $1 ne 'info')
2227 # FIXME should report line number in input file.
2228 &am_error ("output of \`$info_cursor', \`$out_file', has unrecognized extension");
2234 &am_error ("\`$vtexi', included in \`$info_cursor', also included in \`$versions{$vtexi}'")
2235 if (defined $versions{$vtexi});
2236 $versions{$vtexi} = $info_cursor;
2238 # We number the stamp-vti files. This is doable since the
2239 # actual names don't matter much. We only number starting
2240 # with the second one, so that the common case looks nice.
2241 $vti = ($done ? $done : 'vti');
2242 &push_dist_common ($vtexi, 'stamp-' . $vti);
2243 push (@clean, $vti);
2245 # Only require once.
2246 &require_conf_file_with_line ('info_TEXINFOS', $FOREIGN,
2251 local ($conf_pat, $conf_dir);
2252 if ($config_aux_dir eq '.' || $config_aux_dir eq '')
2254 $conf_dir = '$(srcdir)/';
2258 $conf_dir = $config_aux_dir;
2259 $conf_dir .= '/' unless $conf_dir =~ /\/$/;
2261 ($conf_pat = $conf_dir) =~ s/(\W)/\\$1/g;
2263 &file_contents_with_transform
2264 ('s/\@TEXI\@/' . $info_cursor . '/g; '
2265 . 's/\@VTI\@/' . $vti . '/g; '
2266 . 's/\@VTEXI\@/' . $vtexi . '/g;'
2267 . 's,\@MDDIR\@,' . $conf_pat . ',g;',
2270 &push_phony_cleaners ($vti);
2273 # If user specified file_TEXINFOS, then use that as explicit
2276 push (@texi_deps, $info_cursor);
2277 push (@texi_deps, $vtexi) if $vtexi;
2279 # Canonicalize name first.
2280 ($canonical = $infobase) =~ tr/A-Za-z0-9_/_/c;
2281 if (&variable_defined ($canonical . "_TEXINFOS"))
2283 push (@texi_deps, '$(' . $canonical . '_TEXINFOS)');
2284 &push_dist_common ('$(' . $canonical . '_TEXINFOS)');
2287 $output_rules .= ("\n" . $out_file . ": "
2288 . join (' ', @texi_deps)
2289 . "\n" . $infobase . ".dvi: "
2290 . join (' ', @texi_deps)
2293 push (@info_deps_list, $out_file);
2294 push (@dvis_list, $infobase . '.dvi');
2296 # Generate list of things to clean for this target. We do
2297 # this explicitly because otherwise too many things could be
2298 # removed. In particular the ".log" extension might
2299 # reasonably be used in other contexts by the user.
2300 foreach $tc_cursor ('aux', 'cp', 'cps', 'dvi', 'fn', 'fns', 'pgs',
2301 'ky', 'kys', 'ps', 'log', 'pg', 'toc', 'tp', 'tps',
2302 'vr', 'vrs', 'op', 'tr', 'cv', 'cn')
2304 push (@texi_cleans, $infobase . '.' . $tc_cursor);
2308 # Find these programs wherever they may lie. Yes, this has
2309 # intimate knowledge of the structure of the texinfo distribution.
2310 &define_program_variable ('MAKEINFO', 'build', 'texinfo/makeinfo',
2312 # Circumlocution to avoid accidental
2313 # configure substitution.
2315 &define_program_variable ('TEXI2DVI', 'src', 'texinfo/util',
2318 # Set transform for including texinfos.am. First, handle --cygnus
2323 $xform = 's/^NOTCYGNUS.*$//; s/^CYGNUS//;';
2327 $xform = 's/^CYGNUS.*$//; s/^NOTCYGNUS//;';
2330 # Handle location of texinfo.tex.
2331 local ($need_texi_file) = 0;
2332 local ($texinfo_tex);
2335 $texinfo_tex = '$(top_srcdir)/../texinfo/texinfo.tex';
2336 &define_variable ('TEXINFO_TEX', $texinfo_tex);
2339 elsif ($config_aux_dir ne '.' && $config_aux_dir ne '')
2341 $texinfo_tex = $config_aux_dir . '/texinfo.tex';
2342 &define_variable ('TEXINFO_TEX', $texinfo_tex);
2343 $need_texi_file = 2; # so that we require_conf_file later
2345 elsif (&variable_defined ('TEXINFO_TEX'))
2347 # The user defined TEXINFO_TEX so assume he knows what he is
2349 $texinfo_tex = ('$(srcdir)/'
2350 . &dirname (&variable_value ('TEXINFO_TEX')));
2354 $texinfo_tex = '$(srcdir)/texinfo.tex';
2355 $need_texi_file = 1;
2358 ($xxform = $texinfo_tex) =~ s/\/texinfo\.tex$//;
2359 $xxform =~ s/(\W)/\\$1/g;
2360 $xform .= ' s/\@TEXINFODIR\@/' . $xxform . '/g;';
2362 $output_rules .= &file_contents_with_transform ($xform, 'texinfos');
2363 push (@phony, 'install-info-am', 'uninstall-info');
2364 push (@dist_targets, 'dist-info');
2366 # How to clean. The funny name is due to --cygnus influence; in
2367 # Cygnus mode, `clean-info' is a target that users can use.
2368 $output_rules .= "\nmostlyclean-aminfo:\n";
2369 &pretty_print_rule ("\t-rm -f", "\t ", @texi_cleans);
2370 $output_rules .= ("\nclean-aminfo:\n\ndistclean-aminfo:\n\n"
2371 . "maintainer-clean-aminfo:\n\t"
2372 # Eww. But how else can we find all the output
2373 # files from makeinfo?
2374 . ($cygnus_mode ? '' : 'cd $(srcdir) && ')
2375 . 'for i in $(INFO_DEPS); do' . " \\\n"
2376 . "\t" . ' rm -f $$i;' . " \\\n"
2377 . "\t" . ' if test "`echo $$i-[0-9]*`" != "$$i-[0-9]*"; then' . " \\\n"
2378 . "\t" . ' rm -f $$i-[0-9]*;' . " \\\n"
2379 . "\t" . ' fi;' . " \\\n"
2381 &push_phony_cleaners ('aminfo');
2384 $output_rules .= "clean-info: mostlyclean-aminfo\n";
2387 push (@suffixes, '.texi', '.texinfo', '.txi', '.info', '.dvi', '.ps');
2389 if (! defined $options{'no-installinfo'})
2391 push (@uninstall, 'uninstall-info');
2392 push (@installdirs, '$(DESTDIR)$(infodir)');
2393 unshift (@install_data, 'install-info-am');
2395 # Make sure documentation is made and installed first. Use
2396 # $(INFO_DEPS), not 'info', because otherwise recursive makes
2397 # get run twice during "make all".
2398 unshift (@all, '$(INFO_DEPS)');
2400 push (@clean, 'aminfo');
2401 push (@info, '$(INFO_DEPS)');
2402 push (@dvi, '$(DVIS)');
2404 &define_variable ("INFO_DEPS", join (' ', @info_deps_list));
2405 &define_variable ("DVIS", join (' ', @dvis_list));
2406 # This next isn't strictly needed now -- the places that look here
2407 # could easily be changed to look in info_TEXINFOS. But this is
2408 # probably better, in case noinst_TEXINFOS is ever supported.
2409 &define_variable ("TEXINFOS", &variable_value ('info_TEXINFOS'));
2411 # Do some error checking. Note that this file is not required
2412 # when in Cygnus mode; instead we defined TEXINFO_TEX explicitly
2414 if ($need_texi_file && ! defined $options{'no-texinfo.tex'})
2416 if ($need_texi_file > 1)
2418 &require_conf_file_with_line ('info_TEXINFOS', $FOREIGN,
2423 &require_file_with_line ('info_TEXINFOS', $FOREIGN, 'texinfo.tex');
2428 # Handle any man pages.
2429 sub handle_man_pages
2431 &am_line_error ('MANS', "\`MANS' is an anachronism; use \`man_MANS'")
2432 if &variable_defined ('MANS');
2433 return if ! &variable_defined ('man_MANS');
2435 # Find all the sections in use. We do this by first looking for
2436 # "standard" sections, and then looking for any additional
2437 # sections used in man_MANS.
2438 local ($sect, %sections, %vlist);
2439 # Add more sections as needed.
2440 foreach $sect ('0'..'9', 'n', 'l')
2442 if (&variable_defined ('man' . $sect . '_MANS'))
2444 $sections{$sect} = 1;
2445 $vlist{'$(man' . $sect . '_MANS)'} = 1;
2449 if (&variable_defined ('man_MANS'))
2451 $vlist{'$(man_MANS)'} = 1;
2452 foreach (&variable_value_as_list ('man_MANS', 'all'))
2454 # A page like `foo.1c' goes into man1dir.
2455 if (/\.([0-9a-z])([a-z]*)$/)
2463 # Now for each section, generate an install and unintall rule.
2464 # Sort sections so output is deterministic.
2466 foreach $sect (sort keys %sections)
2468 &define_variable ('man' . $sect . 'dir', '$(mandir)/man' . $sect);
2469 push (@installdirs, '$(DESTDIR)$(mandir)/man' . $sect)
2470 unless defined $options{'no-installman'};
2471 $output_rules .= &file_contents_with_transform ('s/\@SECTION\@/'
2474 push (@phony, 'install-man' . $sect, 'uninstall-man' . $sect);
2475 push (@namelist, 'install-man' . $sect);
2478 # We don't really need this, but we use it in case we ever want to
2479 # support noinst_MANS.
2480 &define_variable ("MANS", join (' ', sort keys %vlist));
2482 # Generate list of install dirs.
2483 $output_rules .= ("install-man: \$(MANS)\n"
2484 . "\t\@\$(NORMAL_INSTALL)\n");
2485 &pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t ", @namelist);
2486 push (@phony, 'install-man');
2488 $output_rules .= "uninstall-man:\n\t\@\$(NORMAL_UNINSTALL)\n";
2489 grep ($_ = 'un' . $_, @namelist);
2490 &pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t ", @namelist);
2491 push (@phony, 'uninstall-man');
2493 $output_vars .= &file_contents ('mans-vars');
2495 if (! defined $options{'no-installman'})
2497 push (@install_data, 'install-man');
2498 push (@uninstall, 'uninstall-man');
2499 push (@all, '$(MANS)');
2503 # Handle DATA variables.
2506 &am_install_var ('-noextra', '-defaultdist', 'data', 'DATA',
2507 'data', 'sysconf', 'sharedstate', 'localstate',
2508 'pkgdata', 'noinst', 'check');
2514 push (@phony, 'tags');
2515 local (@tag_deps) = ();
2516 if (&variable_defined ('SUBDIRS'))
2518 $output_rules .= ("tags-recursive:\n"
2519 . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
2520 # Never fail here if a subdir fails; it
2522 . "\t test \"\$\$subdir\" = . || (cd \$\$subdir"
2523 . " && \$(MAKE) \$(AM_MAKEFLAGS) tags); \\\n"
2525 push (@tag_deps, 'tags-recursive');
2526 push (@phony, 'tags-recursive');
2529 if (&saw_sources_p (1)
2530 || &variable_defined ('ETAGS_ARGS')
2533 local ($xform) = '';
2535 foreach $one_hdr (@config_headers)
2537 if ($relative_dir eq &dirname ($one_hdr))
2539 # The config header is in this directory. So require it.
2541 ($var = &basename ($one_hdr)) =~ s/(\W)/\\$1/g;
2542 $xform .= ' ' if $xform;
2546 $xform = ('s/\@CONFIG\@/' . $xform . '/;'
2547 . 's/\@DIRS\@/' . join (' ', @tag_deps) . '/;');
2549 if (&variable_defined ('SUBDIRS'))
2551 $xform .= 's/^SUBDIRS//;';
2555 $xform .= 's/^SUBDIRS.*$//;';
2558 $output_rules .= &file_contents_with_transform ($xform, 'tags');
2559 $output_rules .= &file_contents ('tags-clean');
2560 push (@clean, 'tags');
2561 &push_phony_cleaners ('tags');
2562 &examine_variable ('TAGS_DEPENDENCIES');
2564 elsif (&variable_defined ('TAGS_DEPENDENCIES'))
2566 &am_line_error ('TAGS_DEPENDENCIES',
2567 "doesn't make sense to define \`TAGS_DEPENDENCIES' without sources or \`ETAGS_ARGS'");
2571 # Every Makefile must define some sort of TAGS rule.
2572 # Otherwise, it would be possible for a top-level "make TAGS"
2573 # to fail because some subdirectory failed.
2574 $output_rules .= "tags: TAGS\nTAGS:\n\n";
2578 # Handle multilib support.
2581 return unless $seen_multilib;
2583 $output_rules .= &file_contents ('multilib.am');
2584 &push_phony_cleaners ('multi');
2585 push (@phony, 'all-multi', 'install-multi');
2588 # Worker for handle_dist.
2589 sub handle_dist_worker
2591 local ($makefile) = @_;
2593 $output_rules .= 'distdir: $(DISTFILES)' . "\n";
2595 # Initialization; only at top level.
2596 if ($relative_dir eq '.')
2598 if (defined $options{'check-news'})
2600 # For Gnits users, this is pretty handy. Look at 15 lines
2601 # in case some explanatory text is desirable.
2602 $output_rules .= ' @if sed 15q $(srcdir)/NEWS | fgrep -e "$(VERSION)" > /dev/null; then :; else \\
2603 echo "NEWS not updated; not releasing" 1>&2; \\
2610 # Create dist directory.
2611 $output_rules .= ("\t-rm -rf \$(distdir)\n"
2612 . "\tmkdir \$(distdir)\n");
2615 # Only run automake in `dist' target if --include-deps and
2616 # `no-dependencies' not specified. That way the recipient of a
2617 # distribution can run "make dist" and not need Automake. You
2618 # might be wondering why we run automake once for each directory
2619 # we distribute, instead of running it once at the top level. The
2620 # answer is that we want to run automake after the dependencies
2621 # have been generated. This occurs when "make" is run in the
2622 # subdir. So automake must be run after make has updated the
2623 # Makefile, which means that it must run once per directory.
2624 if ($use_dependencies)
2628 # There are several directories we need to know about
2629 # when rebuilding the Makefile.ins. They are:
2630 # here - The absolute path to our topmost build directory.
2631 # top_distdir - The absolute path to the top of our dist
2633 # distdir - The path to our sub-part of the dist hierarchy.
2634 # If this directory is the topmost directory, we set
2635 # top_distdir from distdir; that lets us pass in distdir
2636 # from an enclosing package.
2637 "\t" . 'here=`cd $(top_builddir) && pwd`; ' . "\\\n"
2638 . "\t" . 'top_distdir=`cd $('
2639 . (($relative_dir eq '.') ? 'distdir' : 'top_distdir')
2640 . ') && pwd`; ' . "\\\n"
2641 . "\t" . 'distdir=`cd $(distdir) && pwd`; ' . "\\\n"
2642 . "\tcd \$(top_srcdir) \\\n"
2643 . "\t && \$(AUTOMAKE) --include-deps --build-dir=\$\$here --srcdir-name=\$(top_srcdir) --output-dir=\$\$top_distdir "
2644 # Set strictness of output.
2645 . ($cygnus_mode ? '--cygnus' : ('--' . $strictness_name))
2646 . ($cmdline_use_dependencies ? '' : ' --include-deps')
2647 . " " . $makefile . "\n"
2651 # Scan EXTRA_DIST to see if we need to distribute anything from a
2652 # subdir. If so, add it to the list. I didn't want to do this
2653 # originally, but there were so many requests that I finally
2656 if (&variable_defined ('EXTRA_DIST'))
2658 # FIXME: This should be fixed to work with conditionals. That
2659 # will require only making the entries in @dist_dirs under the
2660 # appropriate condition. This is meaningful if the nature of
2661 # the distribution should depend upon the configure options
2663 foreach (&variable_value_as_list ('EXTRA_DIST', ''))
2666 next unless s,/+[^/]+$,,;
2667 push (@dist_dirs, $_)
2673 # Prepend $(distdir) to each directory given. Doing it via a
2674 # hash lets us ensure that each directory is used only once.
2676 grep ($dhash{'$(distdir)/' . $_} = 1, @dist_dirs);
2677 $output_rules .= "\t";
2678 &pretty_print_rule ('$(mkinstalldirs)', "\t ", sort keys %dhash);
2681 # In loop, test for file existence because sometimes a file gets
2682 # included in DISTFILES twice. For example this happens when a
2683 # single source file is used in building more than one program.
2684 # Also, there are situations in which "ln" can fail. For instance
2685 # a file to distribute could actually be a cross-filesystem
2686 # symlink -- this can easily happen if "gettextize" was run on the
2688 $output_rules .= "\t\@for file in \$(DISTFILES); do \\\n";
2691 $output_rules .= "\t if test -f \$\$file; then d=.; else d=\$(srcdir); fi; \\\n";
2695 $output_rules .= "\t d=\$(srcdir); \\\n";
2697 $output_rules .= ("\t if test -d \$\$d/\$\$file; then \\\n"
2698 . "\t cp -pr \$\$d/\$\$file \$(distdir)/\$\$file; \\\n"
2700 . "\t test -f \$(distdir)/\$\$file \\\n"
2701 . "\t || ln \$\$d/\$\$file \$(distdir)/\$\$file 2> /dev/null \\\n"
2702 . "\t || cp -p \$\$d/\$\$file \$(distdir)/\$\$file || :; \\\n"
2706 # If we have SUBDIRS, create all dist subdirectories and do
2708 if (&variable_defined ('SUBDIRS'))
2710 # If SUBDIRS is conditionally defined, then set DIST_SUBDIRS
2711 # to all possible directories, and use it. If DIST_SUBDIRS is
2712 # defined, just use it.
2713 local ($dist_subdir_name);
2714 if (&variable_conditions ('SUBDIRS')
2715 || &variable_defined ('DIST_SUBDIRS'))
2717 $dist_subdir_name = 'DIST_SUBDIRS';
2718 if (! &variable_defined ('DIST_SUBDIRS'))
2720 local (@full_list) = &variable_value_as_list ('SUBDIRS',
2722 local (@ds_list, %uniq, $iter);
2723 foreach $iter (@full_list)
2725 if (! defined $uniq{$iter})
2728 push (@ds_list, $iter);
2731 &define_pretty_variable ('DIST_SUBDIRS', '', @ds_list);
2736 $dist_subdir_name = 'SUBDIRS';
2739 # Test for directory existence here because previous automake
2740 # invocation might have created some directories. Note that
2741 # we explicitly set distdir for the subdir make; that lets us
2742 # mix-n-match many automake-using packages into one large
2743 # package, and have "dist" at the top level do the right
2744 # thing. If we're in the topmost directory, then we use
2745 # `distdir' instead of `top_distdir'; this lets us work
2746 # correctly with an enclosing package.
2748 ("\t" . 'for subdir in $(' . $dist_subdir_name . '); do ' . "\\\n"
2749 . "\t" . ' if test "$$subdir" = .; then :; else ' . "\\\n"
2750 . "\t" . ' test -d $(distdir)/$$subdir ' . "\\\n"
2751 . "\t" . ' || mkdir $(distdir)/$$subdir ' . "\\\n"
2752 . "\t" . ' || exit 1; ' . "\\\n"
2753 . "\t" . ' (cd $$subdir'
2754 . ' && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$('
2755 . (($relative_dir eq '.') ? 'distdir' : 'top_distdir')
2756 . ') distdir=../$(distdir)/$$subdir distdir) ' . "\\\n"
2757 . "\t" . ' || exit 1; ' . "\\\n"
2758 . "\t" . ' fi; ' . "\\\n"
2762 # If the target `dist-hook' exists, make sure it is run. This
2763 # allows users to do random weird things to the distribution
2764 # before it is packaged up.
2765 push (@dist_targets, 'dist-hook') if &target_defined ('dist-hook');
2768 foreach $targ (@dist_targets)
2770 # We must explicitly set distdir and top_distdir for these
2772 $output_rules .= ("\t\$(MAKE) \$(AM_MAKEFLAGS)"
2773 . " top_distdir=\"\$(top_distdir)\""
2774 . " distdir=\"\$(distdir)\" $targ\n");
2777 push (@phony, 'distdir');
2780 # Handle 'dist' target.
2783 local ($makefile) = @_;
2785 # Set up maint_charset.
2786 $local_maint_charset = &variable_value ('MAINT_CHARSET')
2787 if &variable_defined ('MAINT_CHARSET');
2788 $maint_charset = $local_maint_charset
2789 if $relative_dir eq '.';
2791 if (&variable_defined ('DIST_CHARSET'))
2793 &am_line_error ('DIST_CHARSET',
2794 "DIST_CHARSET defined but no MAINT_CHARSET defined")
2795 if ! $local_maint_charset;
2796 if ($relative_dir eq '.')
2798 $dist_charset = &variable_value ('DIST_CHARSET')
2802 &am_line_error ('DIST_CHARSET',
2803 "DIST_CHARSET can only be defined at top level");
2807 # Look for common files that should be included in distribution.
2809 foreach $cfile (@common_files)
2811 if (-f ($relative_dir . "/" . $cfile))
2813 &push_dist_common ($cfile);
2817 # Always require configure.in and configure at top level, even if
2818 # they don't exist. This is especially important for configure,
2819 # since it won't be created until autoconf is run -- which might
2820 # be after automake is run.
2821 &push_dist_common ('configure.in', 'configure')
2822 if $relative_dir eq '.';
2824 # Keys of %dist_common are names of files to distributed. We put
2825 # README first because it then becomes easier to make a
2826 # Usenet-compliant shar file (in these, README must be first).
2827 # FIXME: do more ordering of files here.
2829 if (defined $dist_common{'README'})
2831 push (@coms, 'README');
2832 delete $dist_common{'README'};
2834 push (@coms, sort keys %dist_common);
2836 &define_pretty_variable ("DIST_COMMON", '', @coms);
2837 $output_vars .= "\n";
2840 $output_vars .= &file_contents ('dist-vars') . "\n";
2841 &define_variable ('GZIP_ENV', '--best');
2843 # Put these things in rules section so it is easier for whoever
2844 # reads Makefile.in.
2845 if (! &variable_defined ('distdir'))
2847 if ($relative_dir eq '.')
2849 $output_rules .= "\n" . 'distdir = $(PACKAGE)-$(VERSION)' . "\n";
2853 $output_rules .= ("\n"
2854 . 'distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)'
2858 if ($relative_dir eq '.')
2860 $output_rules .= "top_distdir = \$(distdir)\n";
2862 $output_rules .= "\n";
2864 # Generate 'dist' target, and maybe other dist targets.
2865 if ($relative_dir eq '.')
2867 # Rule to check whether a distribution is viable.
2868 local ($xform) = '';
2870 if (! &target_defined ('distcheck-hook'))
2872 $xform .= 's/^DISTHOOK.*$//;';
2874 if (! $seen_gettext)
2876 $xform .= 's/^GETTEXT.*$//;';
2879 $output_rules .= &file_contents_with_transform ($xform, 'dist');
2881 local ($dist_all) = ('dist-all: distdir' . "\n"
2884 foreach $curs ('dist', 'dist-shar', 'dist-zip', 'dist-tarZ',
2887 if (defined $options{$curs} || $curs eq 'dist')
2889 $output_rules .= ($curs . ': distdir' . "\n"
2893 $dist_all .= $dist{$curs};
2896 $output_rules .= $dist_all . $dist_trailer;
2899 # Generate distdir target.
2900 &handle_dist_worker ($makefile);
2903 # Scan a single dependency file and rewrite the dependencies as
2904 # appropriate. Essentially this means:
2905 # * Clean out absolute dependencies which are not desirable.
2906 # * Rewrite other dependencies to be relative to $(top_srcdir).
2907 sub scan_dependency_file
2909 local ($depfile) = @_;
2911 if (! open (DEP_FILE, $depfile))
2913 &am_error ("couldn't open \`$depfile': $!");
2916 print "automake: reading $depfile\n" if $verbose;
2918 # Sometimes it is necessary to omit some dependencies.
2919 local (%omit) = %omit_dependencies;
2920 if (&variable_defined ('OMIT_DEPENDENCIES'))
2922 # FIXME: Doesn't work with conditionals. I'm not sure if this
2924 grep ($omit{$_} = 1,
2925 &variable_value_as_list ('OMIT_DEPENDENCIES', ''));
2928 local ($first_line) = 1;
2929 local ($last_line) = 0;
2930 local ($target, @dependencies);
2931 local ($one_dep, $xform);
2934 local ($srcdir_rx, $fixup_rx);
2935 ($fixup_rx = $srcdir_name . '/' . $relative_dir . '/')
2937 ($srcdir_rx = $srcdir_name . '/') =~ s/(\W)/\\$1/g;
2939 local ($rewrite_builddir) = (($top_builddir eq '.')
2941 : $top_builddir . '/');
2946 next if (/$WHITE_PATTERN/o);
2950 # No trailing "\" means this should be the last line of
2951 # the first target. We can have multiple targets due to
2952 # the "deleted header file" fix. For the generated
2953 # Makefile we simply skip these fake targets.
2959 if (! /^([^:]+:)(.+)$/)
2962 &am_error ("\`$depfile' has incorrect format");
2968 # Make sure to strip the .P file from the target.
2969 ($target = $1) =~ s, *\.deps/[^.]+\.P,,;
2974 foreach $one_dep (split (' ', $_))
2976 ($just_file = $one_dep) =~ s,^.*/,,;
2977 next if defined $omit{$just_file};
2979 if ($one_dep =~ /^$fixup_rx/)
2981 # The dependency points to the current directory in
2983 ($xform = $one_dep) =~ s/^$fixup_rx//;
2984 push (@dependencies, $xform);
2986 elsif ($one_dep =~ /^$srcdir_rx/)
2988 # The dependency is in some other directory in the package.
2989 ($xform = $one_dep) =~ s/^$srcdir_rx/$rewrite_builddir/;
2990 push (@dependencies, $xform);
2992 elsif ($one_dep =~ /^\// || $one_dep =~ /^[A-Za-z]:\\/)
2994 # Absolute path; ignore.
2998 # Anything else is assumed to be correct.
2999 push (@dependencies, $one_dep);
3004 &pretty_print_rule ($target, "\t", @dependencies);
3009 # A subroutine of handle_dependencies. This function includes
3010 # `depend2' with appropriate transformations.
3015 # First include code for ordinary objects.
3016 local ($key) = $lang . '-autodep';
3017 local ($xform, $ext);
3018 $xform = ('s/\@COMPILE\@/\$(' . $language_map{$key} . 'COMPILE)/g;'
3019 . 's/\@LTCOMPILE\@/\$(LT' . $language_map{$key} . 'COMPILE)/g;'
3020 . 's/\@OBJ\@/%.o/g;'
3021 . 's/\@LTOBJ\@/%.lo/g;');
3022 foreach $ext (&lang_extensions ($lang))
3024 $output_rules .= &file_contents_with_transform ('s/\@SOURCE\@/%'
3030 # Now include code for each specially handled object with this
3032 local (@list) = grep ($_ ne '', split (' ', $lang_specific_files{$lang}));
3033 local ($max) = scalar @list;
3035 local ($derived, $source, $obj);
3038 $derived = $list[$i];
3039 ($source = $list[$i + 1]) =~ s,([/\$]),\\$1,g;
3040 ($obj = $list[$i + 2]) =~ s,([/\$]),\\$1,g;
3043 local ($flag) = $language_map{$lang . '-flags'};
3044 local ($val) = "(${derived}_${flag}";
3045 ($rule = $language_map{$lang . '-compile'}) =~
3048 $rule =~ s,([/\$]),\\$1,g;
3050 $xform = ('s/\@COMPILE\@/' . $rule . '/g;'
3051 . 's/\@LTCOMPILE\@/\$(LIBTOOL) --mode=compile ' . $rule
3053 . 's/\@OBJ\@/' . $obj . '.o/g;'
3054 . 's/\@LTOBJ\@/' . $obj . '.lo/g;'
3055 . 's/\@SOURCE\@/' . $source . '/g;');
3056 $output_rules .= &file_contents_with_transform ($xform, 'depend2');
3060 # Handle auto-dependency code.
3061 sub handle_dependencies
3063 # Make sure this variable is always marked as used.
3064 &examine_variable ('OMIT_DEPENDENCIES');
3066 if ($use_dependencies)
3068 # Include GNU-make-specific auto-dep code. Don't include it
3069 # if DEP_FILES would be empty.
3070 if (&saw_sources_p (0) && keys %dep_files)
3072 &define_pretty_variable ('DEP_FILES', '', sort keys %dep_files);
3073 $output_rules .= &file_contents ('depend');
3074 push (@clean, 'depend');
3075 &push_phony_cleaners ('depend');
3077 local ($key, $lang, $ext, $xform);
3078 foreach $key (sort keys %language_map)
3080 if ($key =~ /^(.*)-autodep$/
3081 && $language_map{$key} ne 'no')
3088 elsif ($build_directory ne '')
3090 # Include any auto-generated deps that are present. Note that
3091 # $build_directory ends in a "/".
3092 if (-d ($build_directory . $relative_dir . "/.deps"))
3096 foreach $depfile (&my_glob ($build_directory
3097 . $relative_dir . "/.deps/*.P"))
3099 &scan_dependency_file ($depfile);
3102 $output_rules .= "\n";
3107 # Handle subdirectories.
3110 return if ! &variable_defined ('SUBDIRS');
3112 # Make sure each directory mentioned in SUBDIRS actually exists.
3114 foreach $dir (&variable_value_as_list ('SUBDIRS', 'all'))
3116 # Skip directories substituted by configure.
3117 next if $dir =~ /^\@.*\@$/;
3119 if (! -d $am_relative_dir . '/' . $dir)
3121 &am_line_error ('SUBDIRS',
3122 "required directory $am_relative_dir/$dir does not exist");
3126 &am_line_error ('SUBDIRS', "directory should not contain \`/'")
3130 local ($xform) = ('s/\@INSTALLINFO\@/' .
3131 (defined $options{'no-installinfo'}
3132 ? 'install-info-recursive'
3135 $output_rules .= &file_contents_with_transform ($xform, 'subdirs');
3137 # Push a bunch of phony targets.
3139 foreach $phonies ('', '-data', '-exec', 'dirs')
3141 push (@phony, 'install' . $phonies . '-recursive');
3142 push (@phony, 'uninstall' . $phonies . '-recursive');
3144 foreach $phonies ('all', 'check', 'installcheck', 'info', 'dvi')
3146 push (@phony, $phonies . '-recursive');
3148 &push_phony_cleaners ('recursive');
3150 $recursive_install = 1;
3153 # Handle aclocal.m4.
3154 sub handle_aclocal_m4
3156 local ($regen_aclocal) = 0;
3157 if (-f 'aclocal.m4')
3159 &define_variable ("ACLOCAL_M4", '$(top_srcdir)/aclocal.m4');
3160 &push_dist_common ('aclocal.m4');
3162 if (open (ACLOCAL, '< aclocal.m4'))
3168 if ($line =~ 'generated automatically by aclocal')
3175 local ($acinclude) = 0;
3176 if (-f 'acinclude.m4')
3182 # Note that it might be possible that aclocal.m4 doesn't exist but
3183 # should be auto-generated. This case probably isn't very
3187 local (@ac_deps) = (
3189 ? "\@MAINTAINER_MODE_TRUE\@"
3192 ($acinclude ? ' acinclude.m4' : '')
3195 # Scan all -I directories for m4 files. These are our
3197 if (&variable_defined ('ACLOCAL_AMFLAGS'))
3199 local ($examine_next, $amdir) = 0;
3200 foreach $amdir (&variable_value_as_list ('ACLOCAL_AMFLAGS', ''))
3205 if ($amdir !~ /^\// && -d $amdir)
3207 push (@ac_deps, &my_glob ($amdir . '/*.m4'));
3210 elsif ($amdir eq '-I')
3217 &pretty_print_rule ("\$(ACLOCAL_M4):", "\t\t", @ac_deps);
3219 $output_rules .= ("\t"
3220 . 'cd $(srcdir) && $(ACLOCAL)'
3221 . (&variable_defined ('ACLOCAL_AMFLAGS')
3222 ? ' $(ACLOCAL_AMFLAGS)' : '')
3227 # Rewrite a list of input files into a form suitable to put on a
3228 # dependency list. The idea is that if an input file has a directory
3229 # part the same as the current directory, then the directory part is
3230 # simply removed. But if the directory part is different, then
3231 # $(top_srcdir) is prepended. Among other things, this is used to
3232 # generate the dependency list for the output files generated by
3233 # AC_OUTPUT. Consider what the dependencies should look like in this
3235 # AC_OUTPUT(src/out:src/in1:lib/in2)
3236 # The first argument, ADD_SRCDIR, is 1 if $(top_srcdir) should be added.
3237 # If 0 then files that require this addition will simply be ignored.
3238 sub rewrite_inputs_into_dependencies
3240 local ($add_srcdir, @inputs) = @_;
3241 local ($single, @newinputs);
3243 foreach $single (@inputs)
3245 if (&dirname ($single) eq $relative_dir)
3247 push (@newinputs, &basename ($single));
3251 push (@newinputs, '$(top_srcdir)/' . $single);
3258 # Handle remaking and configure stuff.
3259 # We need the name of the input file, to do proper remaking rules.
3260 sub handle_configure
3262 local ($local, $input, @secondary_inputs) = @_;
3264 # If SUBDIRS defined, require AC_PROG_MAKE_SET.
3265 &am_line_error ('SUBDIRS', "AC_PROG_MAKE_SET must be used in configure.in")
3266 if &variable_defined ('SUBDIRS') && ! $seen_make_set;
3268 local ($top_reldir);
3270 local ($input_base) = &basename ($input);
3271 local ($local_base) = &basename ($local);
3273 local ($amfile) = $input_base . '.am';
3274 # We know we can always add '.in' because it really should be an
3275 # error if the .in was missing originally.
3276 local ($infile) = '$(srcdir)/' . $input_base . '.in';
3277 local ($colon_infile);
3278 if ($local ne $input || @secondary_inputs)
3280 $colon_infile = ':' . $input . '.in';
3282 $colon_infile .= ':' . join (':', @secondary_inputs)
3283 if @secondary_inputs;
3285 local (@rewritten) = &rewrite_inputs_into_dependencies (1,
3288 # This rule remakes the Makefile.in. Note use of
3289 # @MAINTAINER_MODE_TRUE@ forces us to abandon pretty-printing.
3291 $output_rules .= ($infile
3292 # NOTE perl 5.003 (with -w) gives a
3293 # uninitialized value error on the next line.
3296 . ($seen_maint_mode ? "\@MAINTAINER_MODE_TRUE\@ " : '')
3298 . '$(top_srcdir)/configure.in $(ACLOCAL_M4)'
3299 . ' ' . join (' ', @include_stack)
3301 . "\tcd \$(top_srcdir) && \$(AUTOMAKE) "
3302 . ($cygnus_mode ? '--cygnus' : ('--' . $strictness_name))
3303 . ($cmdline_use_dependencies ? '' : ' --include-deps')
3304 . ' ' . $input . $colon_infile . "\n\n");
3306 # This rule remakes the Makefile.
3307 $output_rules .= ($local_base
3308 # NOTE: bogus uninit value error on next line;
3309 # see comment above.
3312 . join (' ', @rewritten)
3313 . ' $(top_builddir)/config.status'
3314 # NOTE: Makefile only depends on BUILT_SOURCES
3315 # when dependencies are being computed. This is
3316 # a workaround for an obscure bug with
3317 # AC_LINK_FILES. Anyway, when dependencies are
3318 # turned off, this shouldn't matter.
3319 . ($use_dependencies ? ' $(BUILT_SOURCES)' : '')
3321 . "\tcd \$(top_builddir) \\\n"
3322 . "\t && CONFIG_FILES="
3323 . (($relative_dir eq '.') ? '$@' : '$(subdir)/$@')
3325 . ' CONFIG_HEADERS= $(SHELL) ./config.status'
3328 if ($relative_dir ne '.')
3331 $top_reldir = '../';
3336 $output_rules .= &file_contents ('remake');
3337 &examine_variable ('CONFIG_STATUS_DEPENDENCIES');
3338 &examine_variable ('CONFIGURE_DEPENDENCIES');
3341 &push_dist_common ('acconfig.h')
3345 # Make it easy to see if there is a Makefile.am in a given
3347 local (%make_dirs, $iter);
3348 foreach $iter (@configure_input_files)
3350 $make_dirs{&dirname ($iter)} = 1;
3352 # We also want to notice Makefile.in's.
3353 foreach $iter (@other_input_files)
3355 if ($iter =~ /Makefile\.in$/)
3357 $make_dirs{&dirname ($iter)} = 1;
3361 # If we have a configure header, require it.
3363 local (@local_fullnames) = @config_fullnames;
3364 local (@local_names) = @config_names;
3365 local ($hdr_index) = 0;
3366 local ($distclean_config) = '';
3367 foreach $one_hdr (@config_headers)
3369 local ($one_fullname) = shift (@local_fullnames);
3370 local ($one_name) = shift (@local_names);
3372 local ($header_dir) = &dirname ($one_name);
3374 # If the header is in the current directory we want to build
3375 # the header here. Otherwise, if we're at the topmost
3376 # directory and the header's directory doesn't have a
3377 # Makefile, then we also want to build the header.
3378 if ($relative_dir eq $header_dir
3379 || ($relative_dir eq '.' && ! defined $make_dirs{$header_dir}))
3381 local ($ch_sans_dir, $cn_sans_dir, $stamp_dir);
3382 if ($relative_dir eq $header_dir)
3384 $cn_sans_dir = &basename ($one_name);
3389 $cn_sans_dir = $one_name;
3390 if ($header_dir eq '.')
3396 $stamp_dir = $header_dir . '/';
3400 # Compute relative path from directory holding output
3401 # header to directory holding input header. FIXME:
3402 # doesn't handle case where we have multiple inputs.
3403 if (&dirname ($one_hdr) eq $relative_dir)
3405 $ch_sans_dir = &basename ($one_hdr);
3409 local (@rel_out_path);
3410 # FIXME this chunk of code should be its own sub.
3411 # It is used elsewhere.
3412 foreach (split (/\//, $relative_dir))
3414 next if $_ eq '' || $_ eq '.';
3417 # FIXME: actually this is an error.
3422 push (@rel_out_path, '..');
3427 $ch_sans_dir = join ('/', @rel_out_path) . '/' . $one_hdr;
3431 $ch_sans_dir = $one_hdr;
3435 &require_file_with_conf_line ($config_header_line,
3436 $FOREIGN, $ch_sans_dir);
3438 # Header defined and in this directory.
3440 if (-f $one_name . '.top')
3442 push (@files, "${cn_sans_dir}.top");
3444 if (-f $one_name . '.bot')
3446 push (@files, "${cn_sans_dir}.bot");
3449 &push_dist_common (@files);
3451 # For now, acconfig.h can only appear in the top srcdir.
3452 if (-f 'acconfig.h')
3454 if ($relative_dir eq '.')
3456 push (@files, 'acconfig.h');
3460 # Strange quoting because this gets fed through
3462 push (@files, '\$(top_srcdir)/acconfig.h');
3466 local ($stamp_name) = 'stamp-h';
3467 $stamp_name .= "${hdr_index}" if scalar (@config_headers) > 1;
3469 local ($xform) = '';
3471 $xform = 's,\@FILES\@,' . join (' ', @files) . ',;';
3472 $xform .= 's,\@CONFIG_HEADER\@,' . "${cn_sans_dir}" . ',;';
3473 $xform .= 's,\@CONFIG_HEADER_IN\@,' . "${ch_sans_dir}" . ',;';
3474 $xform .= 's,\@CONFIG_HEADER_FULL\@,' . "${one_fullname}" . ',;';
3475 $xform .= 's,\@STAMP\@,' . "${stamp_dir}${stamp_name}" . ',g;';
3477 local ($out_dir) = &dirname ($ch_sans_dir);
3478 $xform .= 's,\@SRC_STAMP\@,' . "${out_dir}/${stamp_name}" . ',g;';
3479 $output_rules .= &file_contents_with_transform ($xform,
3482 &create ("${relative_dir}/${out_dir}/${stamp_name}.in");
3483 &require_file_with_conf_line ($config_header_line, $FOREIGN,
3484 "${out_dir}/${stamp_name}.in");
3486 $distclean_config .= ' ' if $distclean_config;
3487 $distclean_config .= $cn_sans_dir;
3491 if ($distclean_config)
3493 $output_rules .= &file_contents_with_transform ('s,\@FILES\@,'
3497 push (@clean, 'hdr');
3498 &push_phony_cleaners ('hdr');
3501 # Set location of mkinstalldirs.
3502 if ($config_aux_dir ne '.' && $config_aux_dir ne '')
3504 &define_variable ('mkinstalldirs', ('$(SHELL) ' . $config_aux_dir
3505 . '/mkinstalldirs'));
3509 &define_variable ('mkinstalldirs',
3510 '$(SHELL) $(top_srcdir)/mkinstalldirs');
3513 &am_line_error ('CONFIG_HEADER',
3514 "\`CONFIG_HEADER' is an anachronism; now determined from \`configure.in'")
3515 if &variable_defined ('CONFIG_HEADER');
3518 local ($config_header) = '';
3519 foreach $one_name (@config_names)
3521 # Generate CONFIG_HEADER define.
3523 if ($relative_dir eq &dirname ($one_name))
3525 $one_hdr = &basename ($one_name);
3529 $one_hdr = "${top_builddir}/${one_name}";
3532 $config_header .= ' ' if $config_header;
3533 $config_header .= $one_hdr;
3537 &define_variable ("CONFIG_HEADER", $config_header);
3540 # Now look for other files in this directory which must be remade
3541 # by config.status, and generate rules for them.
3542 local (@actual_other_files) = ();
3543 local ($file, $local);
3544 local (@inputs, @rewritten_inputs, $single);
3545 local ($need_rewritten);
3546 foreach $file (@other_input_files)
3548 if ($file =~ /^([^:]*):(.*)$/)
3550 # This is the ":" syntax of AC_OUTPUT.
3552 $local = &basename ($file);
3553 @inputs = split (':', $2);
3554 @rewritten_inputs = &rewrite_inputs_into_dependencies (1, @inputs);
3555 $need_rewritten = 1;
3560 $local = &basename ($file);
3561 @inputs = ($local . '.in');
3563 &rewrite_inputs_into_dependencies (1, $file . '.in');
3564 $need_rewritten = 0;
3567 # Skip files not in this directory.
3568 next unless &dirname ($file) eq $relative_dir;
3570 # Skip any file that is an automake input.
3571 next if -f $file . '.am';
3573 # Some users have been tempted to put `stamp-h' in the
3574 # AC_OUTPUT line. This won't do the right thing, so we
3575 # explicitly fail here.
3576 if ($local eq 'stamp-h')
3578 # FIXME: allow real filename.
3579 &am_conf_error ('configure.in', $ac_output_line,
3580 'stamp-h should not appear in AC_OUTPUT');
3584 $output_rules .= ($local . ': '
3585 . '$(top_builddir)/config.status '
3586 . join (' ', @rewritten_inputs) . "\n"
3588 . 'cd $(top_builddir) && CONFIG_FILES='
3589 . ($relative_dir eq '.' ? '' : '$(subdir)/')
3590 . '$@' . ($need_rewritten
3591 ? (':' . join (':', @inputs))
3593 . ' CONFIG_HEADERS= $(SHELL) ./config.status'
3595 &push_dist_common (@inputs);
3596 push (@actual_other_files, $local);
3598 # Require all input files.
3599 &require_file_with_conf_line ($ac_output_line, $FOREIGN,
3600 &rewrite_inputs_into_dependencies (0, @inputs));
3603 # These files get removed by "make clean".
3604 &define_pretty_variable ('CONFIG_CLEAN_FILES', '', @actual_other_files);
3611 @r = &am_install_var ('-defaultdist', 'header', 'HEADERS', 'include',
3612 'oldinclude', 'pkginclude',
3616 next unless /\.(.*)$/;
3617 &saw_extension ($1);
3623 return if ! $seen_gettext || $relative_dir ne '.';
3625 if (! &variable_defined ('SUBDIRS'))
3628 ("AM_GNU_GETTEXT in configure.in but SUBDIRS not defined");
3632 &require_file_with_conf_line ($ac_gettext_line, $GNU, 'ABOUT-NLS');
3634 if (&variable_defined ('SUBDIRS'))
3638 "AM_GNU_GETTEXT in configure.in but \`po' not in SUBDIRS")
3639 if $contents{'SUBDIRS'} !~ /\bpo\b/;
3642 "AM_GNU_GETTEXT in configure.in but \`intl' not in SUBDIRS")
3643 if $contents{'SUBDIRS'} !~ /\bintl\b/;
3646 # Ensure that each language in ALL_LINGUAS has a .po file, and
3647 # each po file is mentioned in ALL_LINGUAS.
3650 local (%linguas) = ();
3651 grep ($linguas{$_} = 1, split (' ', $all_linguas));
3658 &am_line_error ($all_linguas_line,
3659 ("po/$_.po exists but \`$_' not in \`ALL_LINGUAS'"))
3663 foreach (keys %linguas)
3665 &am_line_error ($all_linguas_line,
3666 "$_ in \`ALL_LINGUAS' but po/$_.po does not exist")
3672 &am_error ("AM_GNU_GETTEXT in configure.in but \`ALL_LINGUAS' not defined");
3676 # Handle footer elements.
3679 if ($contents{'SOURCES'})
3681 # NOTE don't use define_pretty_variable here, because
3682 # $contents{...} is already defined.
3683 $output_vars .= 'SOURCES = ' . $contents{'SOURCES'} . "\n";
3685 if ($contents{'OBJECTS'})
3687 # NOTE don't use define_pretty_variable here, because
3688 # $contents{...} is already defined.
3689 $output_vars .= 'OBJECTS = ' . $contents{'OBJECTS'} . "\n";
3691 if ($contents{'SOURCES'} || $contents{'OBJECTS'})
3693 $output_vars .= "\n";
3696 if (&variable_defined ('SUFFIXES'))
3698 # Push actual suffixes, and not $(SUFFIXES). Some versions of
3699 # make do not like variable substitutions on the .SUFFIXES
3701 push (@suffixes, &variable_value_as_list ('SUFFIXES', ''));
3703 if (&target_defined ('.SUFFIXES'))
3705 &am_line_error ('.SUFFIXES',
3706 "use variable \`SUFFIXES', not target \`.SUFFIXES'");
3709 # Note: AIX 4.1 /bin/make will fail if any suffix rule appears
3710 # before .SUFFIXES. So we make sure that .SUFFIXES appears before
3711 # anything else, by sticking it right after the default: target.
3712 $output_header .= ".SUFFIXES:\n";
3716 # Make sure suffixes has unique elements. Sort them to ensure
3717 # the output remains consistent.
3720 grep ($suffixes{$_} = 1, @suffixes);
3722 $output_header .= (".SUFFIXES: "
3723 . join (' ', sort keys %suffixes)
3726 $output_trailer .= &file_contents ('footer');
3729 # Deal with installdirs target.
3730 sub handle_installdirs
3732 # GNU Makefile standards recommend this.
3733 if ($recursive_install)
3735 # We create a separate `-am' target so that the -recursive
3736 # rule will work correctly.
3737 $output_rules .= ("installdirs: installdirs-recursive\n"
3738 . "installdirs-am:\n");
3739 push (@phony, 'installdirs-am');
3743 $output_rules .= "installdirs:\n";
3745 push (@phony, 'installdirs');
3748 &pretty_print_rule ("\t" . '$(mkinstalldirs) ', "\t\t",
3751 $output_rules .= "\n";
3754 # There are several targets which need to be merged. This is because
3755 # their complete definition is compiled from many parts. Note that we
3756 # avoid double colon rules, otherwise we'd use them instead.
3757 sub handle_merge_targets
3759 local ($makefile) = @_;
3761 # There are a few install-related variables that you should not define.
3763 foreach $var ('PRE_INSTALL', 'POST_INSTALL', 'NORMAL_INSTALL')
3765 if (&variable_defined ($var))
3767 &am_line_error ($var, "\`$var' should not be defined");
3771 # Put this at the beginning for the sake of non-GNU makes. This
3772 # is still wrong if these makes can run parallel jobs. But it is
3774 unshift (@all, &basename ($makefile));
3777 foreach $one_name (@config_names)
3779 push (@all, &basename ($one_name))
3780 if &dirname ($one_name) eq $relative_dir;
3783 &do_one_merge_target ('info', @info);
3784 &do_one_merge_target ('dvi', @dvi);
3785 &do_check_merge_target;
3786 &do_one_merge_target ('installcheck', @installcheck);
3788 if (defined $options{'no-installinfo'})
3790 &do_one_merge_target ('install-info', '');
3792 elsif (&target_defined ('install-info-local'))
3794 &am_line_error ('install-info-local',
3795 "\`install-info-local' target defined but \`no-installinfo' option not in use");
3799 foreach $utarg ('uninstall-data-local', 'uninstall-data-hook',
3800 'uninstall-exec-local', 'uninstall-exec-hook')
3802 if (&target_defined ($utarg))
3805 ($x = $utarg) =~ s/(data|exec)-//;
3806 &am_line_error ($utarg, "use \`$x', not \`$utarg'");
3810 if (&target_defined ('install-local'))
3812 &am_line_error ('install-local',
3813 "use \`install-data-local' or \`install-exec-local', not \`install-local'");
3819 local ($local_headers) = '';
3820 foreach $one_name (@config_names)
3822 if (&dirname ($one_name) eq $relative_dir)
3824 $local_headers .= ' ' if $local_headers;
3825 $local_headers .= &basename ($one_name);
3830 # This is kind of a hack, but I couldn't see a better way
3831 # to handle it. In this particular case, we need to make
3832 # sure config.h is built before we recurse. We can't do
3833 # this by changing the order of dependencies to the "all"
3834 # because that breaks when using parallel makes. Instead
3835 # we handle things explicitly.
3836 $output_rules .= ("all-recursive-am: ${local_headers}"
3838 . '$(MAKE) $(AM_MAKEFLAGS)'
3841 $all_target = 'all-recursive-am';
3842 push (@phony, 'all-recursive-am');
3846 # Print definitions users can use.
3847 &do_one_merge_target ('install-exec', @install_exec);
3848 $output_rules .= "\n";
3850 &do_one_merge_target ('install-data', @install_data);
3851 $output_rules .= "\n";
3853 &do_one_merge_target ('install', 'all-am');
3854 &do_one_merge_target ('uninstall', @uninstall);
3856 &do_one_merge_target ('all', @all);
3858 # Generate the new 'install-strip' target. We can't just set
3859 # INSTALL_PROGRAM because that might be a relative path.
3860 $output_rules .= ("install-strip:\n\t"
3861 . '$(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install'
3863 push (@phony, 'install-strip');
3866 # Helper for handle_merge_targets. Note that handle_merge_targets
3867 # relies on the fact that this doesn't add an extra \n at the end.
3868 sub do_one_merge_target
3870 local ($name, @values) = @_;
3872 if (&target_defined ($name . '-local'))
3874 # User defined local form of target. So include it.
3875 push (@values, $name . '-local');
3876 push (@phony, $name . '-local');
3879 &pretty_print_rule ($name . "-am:", "\t\t", @values);
3880 if ($name eq 'install')
3882 # Special-case `install-am' to run install-exec-am and
3883 # install-data-am after all-am is built.
3884 &pretty_print_rule ("\t\@\$(MAKE) \$(AM_MAKEFLAGS)", "\t ",
3885 'install-exec-am', 'install-data-am');
3887 elsif ($name eq 'install-exec' && &target_defined ('install-exec-hook'))
3889 $output_rules .= ("\t\@\$(NORMAL_INSTALL)\n"
3890 . "\t" . '$(MAKE) $(AM_MAKEFLAGS) install-exec-hook'
3893 elsif ($name eq 'install-data' && &target_defined ('install-data-hook'))
3895 $output_rules .= ("\t\@\$(NORMAL_INSTALL)\n"
3896 . "\t" . '$(MAKE) $(AM_MAKEFLAGS) install-data-hook'
3900 local ($lname) = $name . ($recursive_install ? '-recursive' : '-am');
3901 local ($tname) = $name;
3902 # To understand this special case, see handle_merge_targets.
3905 $tname = 'all-redirect';
3906 $lname = $all_target if $recursive_install;
3907 push (@phony, 'all-redirect');
3908 $output_all = "all: all-redirect\n";
3910 &pretty_print_rule ($tname . ":", "\t\t", $lname);
3911 push (@phony, $name . '-am', $name);
3914 # Handle check merge target specially.
3915 sub do_check_merge_target
3917 if (&target_defined ('check-local'))
3919 # User defined local form of target. So include it.
3920 push (@check_tests, 'check-local');
3921 push (@phony, 'check-local');
3924 # In --cygnus mode, check doesn't depend on all.
3927 # Just run the local check rules.
3928 &pretty_print_rule ('check-am:', "\t\t", @check);
3932 # The check target must depend on the local equivalent of
3933 # `all', to ensure all the primary targets are built. Then it
3934 # must build the local check rules.
3935 $output_rules .= "check-am: all-am\n";
3936 &pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t ",
3940 &pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t ",
3944 push (@phony, 'check', 'check-am');
3945 $output_rules .= ("check: "
3946 . ($recursive_install ? 'check-recursive' : 'check-am')
3950 # Handle all 'clean' targets.
3953 local ($xform) = '';
3956 # Don't include `MAINTAINER'; it is handled specially below.
3957 foreach $name ('MOSTLY', '', 'DIST')
3959 if (! &variable_defined ($name . 'CLEANFILES'))
3961 $xform .= 's/^' . $name . 'CLEAN.*$//;';
3965 $xform .= 's/^' . $name . 'CLEAN//;';
3969 # Built sources are automatically removed by maintainer-clean.
3970 push (@maintainer_clean_files, '\$(BUILT_SOURCES)')
3971 if &variable_defined ('BUILT_SOURCES');
3972 push (@maintainer_clean_files, '\$(MAINTAINERCLEANFILES)')
3973 if &variable_defined ('MAINTAINERCLEANFILES');
3974 if (! @maintainer_clean_files)
3976 $xform .= 's/^MAINTAINERCLEAN.*$//;';
3980 $xform .= ('s/^MAINTAINERCLEAN//;'
3981 # Join with no space to avoid spurious `test -z'
3982 # success at runtime.
3983 . 's,\@MCFILES\@,' . join ('', @maintainer_clean_files)
3985 # A space is required in the join here.
3986 . 's,\@MFILES\@,' . join (' ', @maintainer_clean_files)
3990 $output_rules .= &file_contents_with_transform ($xform, 'clean');
3992 push (@clean, 'generic');
3993 &push_phony_cleaners ('generic');
3995 &do_one_clean_target ('clean', 'mostly', '', @clean);
3996 &do_one_clean_target ('clean', '', 'mostly', @clean);
3997 &do_one_clean_target ('clean', 'dist', '', @clean);
3998 &do_one_clean_target ('clean', 'maintainer-', 'dist', @clean);
4000 push (@phony, 'clean', 'mostlyclean', 'distclean', 'maintainer-clean');
4003 # Helper for handle_clean.
4004 sub do_one_clean_target
4006 local ($target, $name, $last_name, @deps) = @_;
4008 # Change each dependency `BLARG' into `clean-BLARG'.
4009 grep (($_ = $name . 'clean-' . $_) && 0, @deps);
4011 # Push the previous clean target. There is no previous clean
4012 # target if we're doing mostlyclean.
4013 push (@deps, $last_name . $target . '-am')
4014 unless $name eq 'mostly';
4016 # If a -local version of the rule is given, add it to the list.
4017 if (&target_defined ($name . $target . '-local'))
4019 push (@deps, $name . $target . '-local');
4022 # Print the target and the dependencies.
4023 &pretty_print_rule ($name . $target . "-am: ", "\t\t", @deps);
4025 # FIXME: shouldn't we really print these messages before running
4027 if ($name . $target eq 'maintainer-clean')
4029 # Print a special warning.
4031 ("\t\@echo \"This command is intended for maintainers to use;\"\n"
4032 . "\t\@echo \"it deletes files that may require special "
4033 . "tools to rebuild.\"\n");
4035 elsif ($name . $target eq 'distclean')
4037 $output_rules .= "\t-rm -f libtool\n" if $seen_libtool;
4039 $output_rules .= "\n";
4041 # Now generate the actual clean target.
4042 $output_rules .= ($name . $target . ": " . $name . $target
4043 . ($recursive_install ? '-recursive' : '-am')
4046 # We special-case config.status here. If we do it as part of the
4047 # normal clean processing for this directory, then it might be
4048 # removed before some subdir is cleaned. However, that subdir's
4049 # Makefile depends on config.status.
4050 if (($name . $target eq 'maintainer-clean'
4051 || $name . $target eq 'distclean')
4052 && $relative_dir eq '.')
4054 $output_rules .= "\t-rm -f config.status\n";
4056 $output_rules .= "\n";
4059 # Handle .PHONY target.
4062 &pretty_print_rule ('.PHONY:', "", @phony);
4063 $output_rules .= "\n";
4066 # Handle TESTS variable and other checks.
4069 if (defined $options{'dejagnu'})
4071 push (@check_tests, 'check-DEJAGNU');
4072 push (@phony, 'check-DEJAGNU');
4077 $xform = 's/^CYGNUS//;';
4081 $xform = 's/^CYGNUS.*$//;';
4083 $output_rules .= &file_contents_with_transform ($xform, 'dejagnu');
4085 # In Cygnus mode, these are found in the build tree.
4086 # Otherwise they are looked for in $PATH.
4087 &define_program_variable ('EXPECT', 'build', 'expect', 'expect');
4088 &define_program_variable ('RUNTEST', 'src', 'dejagnu', 'runtest');
4090 # Only create site.exp rule if user hasn't already written
4092 if (! &target_defined ('site.exp'))
4094 # Note that in the rule we don't directly generate
4095 # site.exp to avoid the possibility of a corrupted
4096 # site.exp if make is interrupted. Jim Meyering has some
4097 # useful text on this topic.
4098 $output_rules .= ("site.exp: Makefile\n"
4099 . "\t\@echo 'Making a new site.exp file...'\n"
4100 . "\t\@test ! -f site.bak || rm -f site.bak\n"
4101 . "\t\@echo '## these variables are automatically generated by make ##' > \$\@-t\n"
4102 . "\t\@echo '# Do not edit here. If you wish to override these values' >> \$\@-t\n"
4103 . "\t\@echo '# edit the last section' >> \$\@-t\n"
4104 . "\t\@echo 'set tool \$(DEJATOOL)' >> \$\@-t\n"
4105 . "\t\@echo 'set srcdir \$(srcdir)' >> \$\@-t\n"
4106 . "\t\@echo 'set objdir' \`pwd\` >> \$\@-t\n");
4108 # Extra stuff for AC_CANONICAL_*
4109 local (@whatlist) = ();
4110 if ($seen_canonical)
4112 push (@whatlist, 'host');
4115 # Extra stuff only for AC_CANONICAL_SYSTEM.
4116 if ($seen_canonical == $AC_CANONICAL_SYSTEM)
4118 push (@whatlist, 'target', 'build');
4122 foreach $c1 (@whatlist)
4124 foreach $c2 ('alias', 'triplet')
4126 $output_rules .= "\t\@echo 'set ${c1}_${c2} \$(${c1}_${c2})' >> \$\@-t\n";
4130 $output_rules .= ("\t\@echo '## All variables above are generated by configure. Do Not Edit ##' >> \$\@-t\n"
4131 . "\t\@test ! -f site.exp || sed '1,/^## All variables above are.*##/ d' site.exp >> \$\@-t\n"
4132 . "\t\@test ! -f site.exp || mv site.exp site.bak\n"
4133 . "\t\@mv \$\@-t site.exp\n");
4139 foreach $c ('DEJATOOL', 'RUNTEST', 'RUNTESTFLAGS')
4141 if (&variable_defined ($c))
4143 &am_line_error ($c, "\`$c' defined but \`dejagnu' not in \`AUTOMAKE_OPTIONS'");
4148 if (&variable_defined ('TESTS'))
4150 push (@check_tests, 'check-TESTS');
4151 push (@phony, 'check-TESTS');
4153 # Note: Solaris 2.7 seems to expand TESTS using VPATH. That's
4154 # why we also try `dir='
4155 $output_rules .= 'check-TESTS: $(TESTS)
4156 @failed=0; all=0; xfail=0; xpass=0; \\
4157 srcdir=$(srcdir); export srcdir; \\
4158 for tst in $(TESTS); do \\
4159 if test -f ./$$tst; then dir=./; \\
4160 elif test -f $$tst; then dir=; \\
4161 else dir="$(srcdir)/"; fi; \\
4162 if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \\
4163 all=`expr $$all + 1`; \\
4164 case " $(XFAIL_TESTS) " in \\
4166 xpass=`expr $$xpass + 1`; \\
4167 failed=`expr $$failed + 1`; \\
4168 echo "XPASS: $$tst"; \\
4171 echo "PASS: $$tst"; \\
4174 elif test $$? -ne 77; then \\
4175 all=`expr $$all + 1`; \\
4176 case " $(XFAIL_TESTS) " in \\
4178 xfail=`expr $$xfail + 1`; \\
4179 echo "XFAIL: $$tst"; \\
4182 failed=`expr $$failed + 1`; \\
4183 echo "FAIL: $$tst"; \\
4188 if test "$$failed" -eq 0; then \\
4189 if test "$$xfail" -eq 0; then \\
4190 banner="All $$all tests passed"; \\
4192 banner="All $$all tests behaved as expected ($$xfail expected failures)"; \\
4195 if test "$$xpass" -eq 0; then \\
4196 banner="$$failed of $$all tests failed"; \\
4198 banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \\
4201 dashes=`echo "$$banner" | sed s/./=/g`; \\
4205 test "$$failed" -eq 0
4210 # Handle Emacs Lisp.
4211 sub handle_emacs_lisp
4213 local (@elfiles) = &am_install_var ('-candist', 'lisp', 'LISP',
4219 &define_configure_variable ('lispdir');
4220 &define_configure_variable ('EMACS');
4221 $output_rules .= (".el.elc:\n"
4222 . "\t\@echo 'WARNING: Warnings can be ignored. :-)'\n"
4223 . "\tif test \$(EMACS) != no; then \\\n"
4224 . "\t EMACS=\$(EMACS) \$(SHELL) \$(srcdir)/elisp-comp \$<; \\\n"
4226 push (@suffixes, '.el', '.elc');
4228 # Generate .elc files.
4229 grep ($_ .= 'c', @elfiles);
4230 &define_pretty_variable ('ELCFILES', '', @elfiles);
4232 $output_rules .= &file_contents ('lisp-clean');
4233 push (@clean, 'lisp');
4234 &push_phony_cleaners ('lisp');
4236 push (@all, '$(ELCFILES)');
4239 if (&variable_defined ('lisp_LISP'))
4241 $varname = 'lisp_LISP';
4242 &am_error ("\`lisp_LISP' defined but \`AM_PATH_LISPDIR' not in \`configure.in'")
4247 $varname = 'noinst_LISP';
4250 &require_file_with_line ($varname, $FOREIGN, 'elisp-comp');
4257 local (@sourcelist) = &am_install_var ('-candist', '-clean',
4259 'java', 'noinst', 'check');
4260 return if ! @sourcelist;
4262 &define_variable ('JAVAC', 'javac');
4263 &define_variable ('JAVACFLAGS', '');
4264 &define_variable ('CLASSPATH_ENV',
4265 'CLASSPATH=$(JAVAROOT):$(srcdir)/$(JAVAROOT):$$CLASSPATH');
4266 &define_variable ('JAVAROOT', '$(top_builddir)');
4268 local (%valid) = &am_primary_prefixes ('JAVA', 1,
4269 'java', 'noinst', 'check');
4271 local ($dir, $curs);
4272 foreach $curs (keys %valid)
4274 if (! &variable_defined ($curs . '_JAVA') || $curs eq 'noinst'
4275 || $curs eq 'EXTRA')
4282 &am_line_error ($curs . '_JAVA',
4283 "multiple _JAVA primaries in use");
4288 $output_rules .= ('class' . $dir . '.stamp: $(' . $dir . '_JAVA)' . "\n"
4289 . "\t" . '$(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) '
4290 . '$(JAVACFLAGS) $?' . "\n"
4291 . "\t" . 'echo timestamp > class' . $dir . '.stamp'
4293 push (@all, 'class' . $dir . '.stamp');
4294 &push_dist_common ('$(' . $dir . '_JAVA)');
4297 # Handle some of the minor options.
4298 sub handle_minor_options
4300 if (defined $options{'readme-alpha'})
4302 if ($relative_dir eq '.')
4304 if ($package_version !~ /^$GNITS_VERSION_PATTERN$/)
4306 # FIXME: allow real filename.
4307 &am_conf_line_error ('configure.in',
4308 $package_version_line,
4309 "version \`$package_version' doesn't follow Gnits standards");
4311 elsif (defined $1 && -f 'README-alpha')
4313 # This means we have an alpha release. See
4314 # GNITS_VERSION_PATTERN for details.
4315 &require_file ($FOREIGN, 'README-alpha');
4321 ################################################################
4323 # Scan one file for interesting things. Subroutine of scan_configure.
4324 sub scan_one_configure_file
4326 local ($filename) = @_;
4329 open (CONFIGURE, $filename)
4330 || die "automake: couldn't open \`$filename': $!\n";
4331 print "automake: reading $filename\n" if $verbose;
4335 # Remove comments from current line.
4339 # Skip macro definitions. Otherwise we might be confused into
4340 # thinking that a macro that was only defined was actually
4344 # Follow includes. This is a weirdness commonly in use at
4345 # Cygnus and hopefully nowhere else.
4346 if (/sinclude\((.*)\)/ && -f $1)
4348 &scan_one_configure_file ($1);
4351 # Populate libobjs array.
4352 if (/AC_FUNC_ALLOCA/)
4354 $libsources{'alloca.c'} = 1;
4356 elsif (/AC_FUNC_GETLOADAVG/)
4358 $libsources{'getloadavg.c'} = 1;
4360 elsif (/AC_FUNC_MEMCMP/)
4362 $libsources{'memcmp.c'} = 1;
4364 elsif (/AC_STRUCT_ST_BLOCKS/)
4366 $libsources{'fileblocks.c'} = 1;
4368 elsif (/A[CM]_REPLACE_GNU_GETOPT/)
4370 $libsources{'getopt.c'} = 1;
4371 $libsources{'getopt1.c'} = 1;
4373 elsif (/AM_FUNC_STRTOD/)
4375 $libsources{'strtod.c'} = 1;
4377 elsif (/AM_WITH_REGEX/)
4379 $libsources{'rx.c'} = 1;
4380 $libsources{'rx.h'} = 1;
4381 $libsources{'regex.c'} = 1;
4382 $libsources{'regex.h'} = 1;
4383 $omit_dependencies{'rx.h'} = 1;
4384 $omit_dependencies{'regex.h'} = 1;
4386 elsif (/AC_FUNC_MKTIME/)
4388 $libsources{'mktime.c'} = 1;
4390 elsif (/AM_FUNC_ERROR_AT_LINE/)
4392 $libsources{'error.c'} = 1;
4393 $libsources{'error.h'} = 1;
4395 elsif (/AM_FUNC_OBSTACK/)
4397 $libsources{'obstack.c'} = 1;
4398 $libsources{'obstack.h'} = 1;
4400 elsif (/LIBOBJS="(.*)\s+\$LIBOBJS"/
4401 || /LIBOBJS="\$LIBOBJS\s+(.*)"/)
4403 foreach $libobj_iter (split (' ', $1))
4405 if ($libobj_iter =~ /^(.*)\.o(bj)?$/
4406 || $libobj_iter =~ /^(.*)\.\$ac_objext$/
4407 || $libobj_iter =~ /^(.*)\.\$\{ac_objext\}$/)
4409 $libsources{$1 . '.c'} = 1;
4414 if (! $in_ac_replace && s/AC_REPLACE_FUNCS\s*\(\[?//)
4420 $in_ac_replace = 0 if s/[\]\)].*$//;
4421 # Remove trailing backslash.
4425 # Need to skip empty elements for Perl 4.
4427 $libsources{$_ . '.c'} = 1;
4431 if (/$obsolete_rx/o)
4434 if ($obsolete_macros{$1} ne '')
4436 $hint = '; ' . $obsolete_macros{$1};
4438 &am_conf_line_error ($filename, $., "\`$1' is obsolete$hint");
4441 # Process the AC_OUTPUT macro.
4442 if (! $in_ac_output && s/AC_OUTPUT\s*\(\[?//)
4445 $ac_output_line = $.;
4449 local ($closing) = 0;
4456 # Look at potential Makefile.am's.
4459 # Must skip empty string for Perl 4.
4460 next if $_ eq "\\" || $_ eq '';
4462 # Handle $local:$input syntax. Note that we ignore
4463 # every input file past the first, though we keep
4464 # those around for later.
4465 local ($local, $input, @rest) = split (/:/);
4472 # FIXME: should be error if .in is missing.
4473 $input =~ s/\.in$//;
4476 if (-f $input . '.am')
4478 # We have a file that automake should generate.
4479 push (@make_input_list, $input);
4480 $make_list{$input} = join (':', ($local, @rest));
4484 # We have a file that automake should cause to be
4485 # rebuilt, but shouldn't generate itself.
4486 push (@other_input_files, $_);
4490 if ($closing && @make_input_list == 0 && @other_input_files == 0)
4492 &am_conf_line_error ($filename, $ac_output_line,
4493 "No files mentioned in \`AC_OUTPUT'");
4498 if (/$AC_CONFIG_AUX_DIR_PATTERN/o)
4500 @config_aux_path = $1;
4503 # Check for ansi2knr.
4504 $am_c_prototypes = 1 if /AM_C_PROTOTYPES/;
4506 # Check for exe extension stuff.
4510 $configure_vars{'EXEEXT'} = $filename . ':' . $.;
4516 $configure_vars{'OBJEXT'} = $filename . ':' . $.;
4519 # Check for `-c -o' code.
4520 $seen_cc_c_o = 1 if /AM_PROG_CC_C_O/;
4522 # Check for NLS support.
4523 if (/AM_GNU_GETTEXT/)
4526 $ac_gettext_line = $.;
4527 $omit_dependencies{'libintl.h'} = 1;
4530 # Look for ALL_LINGUAS.
4531 if (/ALL_LINGUAS="(.*)"$/ || /ALL_LINGUAS=(.*)$/)
4535 $all_linguas_line = $.;
4538 # Handle configuration headers. A config header of `[$1]'
4539 # means we are actually scanning AM_CONFIG_HEADER from
4541 if (/A([CM])_CONFIG_HEADER\s*\((.*)\)/
4545 ($filename, $., "\`automake requires \`AM_CONFIG_HEADER', not \`AC_CONFIG_HEADER'")
4548 $config_header_line = $.;
4550 foreach $one_hdr (split (' ', $2))
4552 push (@config_fullnames, $one_hdr);
4553 if ($one_hdr =~ /^([^:]+):(.+)$/)
4555 push (@config_names, $1);
4556 push (@config_headers, $2);
4560 push (@config_names, $one_hdr);
4561 push (@config_headers, $one_hdr . '.in');
4566 # Handle AC_CANONICAL_*. Always allow upgrading to
4567 # AC_CANONICAL_SYSTEM, but never downgrading.
4568 $seen_canonical = $AC_CANONICAL_HOST
4569 if ! $seen_canonical
4570 && (/AC_CANONICAL_HOST/ || /AC_CHECK_TOOL/);
4571 $seen_canonical = $AC_CANONICAL_SYSTEM if /AC_CANONICAL_SYSTEM/;
4573 $seen_path_xtra = 1 if /AC_PATH_XTRA/;
4575 # This macro handles several different things.
4576 if (/$AM_INIT_AUTOMAKE_PATTERN/o)
4582 $seen_prog_install = 1;
4583 ($package_version = $1) =~ s/$AM_PACKAGE_VERSION_PATTERN/$1/o;
4584 $package_version_line = $.;
4587 # This is like AM_INIT_AUTOMAKE, but doesn't actually set the
4588 # package and version number. (This might change in the
4589 # future). Yes, I'm not above hacking Automake so it works
4590 # well with other GNU tools -- that is actually the point.
4591 if (/AM_INIT_GUILE_MODULE/)
4597 $seen_prog_install = 1;
4598 @config_aux_path = ('..');
4601 # Some things required by Automake.
4602 $seen_make_set = 1 if /AC_PROG_MAKE_SET/;
4603 $seen_arg_prog = 1 if /AC_ARG_PROGRAM/;
4607 $configure_vars{'LEX'} = $filename . ':' . $.;
4608 $seen_decl_yytext = 1;
4610 if (/AC_DECL_YYTEXT/ && $filename =~ /configure\.in$/)
4612 &am_conf_line_warning ($filename, $., "\`AC_DECL_YYTEXT' is covered by \`AM_PROG_LEX'");
4614 if (/AC_PROG_LEX/ && $filename =~ /configure\.in$/)
4616 &am_conf_line_warning ($filename, $., "automake requires \`AM_PROG_LEX', not \`AC_PROG_LEX'");
4619 if (/AC_PROG_(F77|YACC|RANLIB|CC|CXXCPP|CXX|LEX|AWK|CPP|LN_S)/)
4621 $configure_vars{$1} = $filename . ':' . $.;
4623 if (/$AC_CHECK_PATTERN/o)
4625 $configure_vars{$3} = $filename . ':' . $.;
4627 if (/$AM_MISSING_PATTERN/o
4631 && $1 ne 'AUTOHEADER')
4633 $configure_vars{$1} = $filename . ':' . $.;
4636 # Explicitly avoid ANSI2KNR -- we AC_SUBST that in protos.m4,
4637 # but later define it elsewhere. This is pretty hacky. We
4638 # also explicitly avoid INSTALL_SCRIPT and some other
4639 # variables because they are defined in header-vars.am.
4641 if (/$AC_SUBST_PATTERN/o
4643 && $1 ne 'INSTALL_SCRIPT'
4644 && $1 ne 'INSTALL_DATA')
4646 $configure_vars{$1} = $filename . ':' . $.;
4649 $seen_decl_yytext = 1 if /AC_DECL_YYTEXT/;
4650 if (/AM_MAINTAINER_MODE/)
4652 $seen_maint_mode = 1;
4653 $configure_cond{'MAINTAINER_MODE'} = 1;
4655 $seen_package = 1 if /PACKAGE=/;
4657 # Skip VERSION of [$2]; that is from AM_INIT_AUTOMAKE.
4658 if (/\bVERSION=(\S+)/ && $1 ne '[$2]')
4661 $package_version = $1;
4662 $package_version_line = $.;
4669 $seen_prog_install = 1 if /AC_PROG_INSTALL/;
4670 $seen_lispdir = 1 if /AM_PATH_LISPDIR/;
4672 if (/A(C|M)_PROG_LIBTOOL/)
4674 if (/AM_PROG_LIBTOOL/)
4676 &am_conf_line_warning ($filename, $., "\`AM_PROG_LIBTOOL' is obsolete, use \`AC_PROG_LIBTOOL' instead");
4680 $configure_vars{'LIBTOOL'} = $filename . ':' . $.;
4681 $configure_vars{'RANLIB'} = $filename . ':' . $.;
4682 $configure_vars{'CC'} = $filename . ':' . $.;
4683 # AC_PROG_LIBTOOL runs AC_CANONICAL_HOST. Make sure we
4684 # never downgrade (if we've seen AC_CANONICAL_SYSTEM).
4685 $seen_canonical = $AC_CANONICAL_HOST if ! $seen_canonical;
4688 $seen_multilib = 1 if (/AM_ENABLE_MULTILIB/);
4690 if (/$AM_CONDITIONAL_PATTERN/o)
4692 $configure_cond{$1} = 1;
4695 # Check for Fortran 77 intrinsic and run-time libraries.
4696 if (/AC_F77_LIBRARY_LDFLAGS/)
4698 $configure_vars{'FLIBS'} = $filename . ':' . $.;
4705 # Scan configure.in and aclocal.m4 for interesting things. We must
4706 # scan aclocal.m4 because there might be AC_SUBSTs and such there.
4709 # Reinitialize libsources here. This isn't really necessary,
4710 # since we currently assume there is only one configure.in. But
4711 # that won't always be the case.
4714 local ($in_ac_output, $in_ac_replace) = (0, 0);
4715 local (%make_list, @make_input_list);
4716 local ($libobj_iter);
4718 &scan_one_configure_file ('configure.in');
4719 &scan_one_configure_file ('aclocal.m4')
4722 # Set input and output files if not specified by user.
4725 @input_files = @make_input_list;
4726 %output_files = %make_list;
4729 @configure_input_files = @make_input_list;
4731 &am_conf_error ("\`PACKAGE' not defined in configure.in")
4733 &am_conf_error ("\`VERSION' not defined in configure.in")
4736 # Look for some files we need. Always check for these. This
4737 # check must be done for every run, even those where we are only
4738 # looking at a subdir Makefile. We must set relative_dir so that
4739 # the file-finding machinery works.
4740 local ($relative_dir) = '.';
4741 &require_config_file ($FOREIGN, 'install-sh', 'mkinstalldirs', 'missing');
4742 &am_error ("\`install.sh' is an anachronism; use \`install-sh' instead")
4743 if -f $config_aux_path[0] . '/install.sh';
4746 ################################################################
4748 # Set up for Cygnus mode.
4751 return unless $cygnus_mode;
4753 &set_strictness ('foreign');
4754 $options{'no-installinfo'} = 1;
4755 $options{'no-dependencies'} = 1;
4756 $use_dependencies = 0;
4758 if (! $seen_maint_mode)
4760 &am_conf_error ("\`AM_MAINTAINER_MODE' required when --cygnus specified");
4765 &am_conf_error ("\`AC_EXEEXT' required when --cygnus specified");
4769 # Do any extra checking for GNU standards.
4770 sub check_gnu_standards
4772 if ($relative_dir eq '.')
4774 # In top level (or only) directory.
4775 &require_file ($GNU, 'INSTALL', 'NEWS', 'README', 'COPYING',
4776 'AUTHORS', 'ChangeLog');
4779 if ($strictness >= $GNU)
4781 if (defined $options{'no-installman'})
4783 &am_line_error ('AUTOMAKE_OPTIONS',
4784 "option \`no-installman' disallowed by GNU standards");
4787 if (defined $options{'no-installinfo'})
4789 &am_line_error ('AUTOMAKE_OPTIONS',
4790 "option \`no-installinfo' disallowed by GNU standards");
4795 # Do any extra checking for GNITS standards.
4796 sub check_gnits_standards
4798 if ($strictness >= $GNITS)
4800 if (-f $relative_dir . '/COPYING.LIB')
4802 &am_error ("\`${relative_dir}/COPYING.LIB' disallowed by Gnits standards");
4806 if ($relative_dir eq '.')
4808 # In top level (or only) directory.
4809 &require_file ($GNITS, 'THANKS');
4813 ################################################################
4815 # Functions to handle files of each language.
4817 # Each `lang_X_rewrite' function follows a simple formula:
4818 # * Args are the directory, base name and extension of the file.
4819 # * Return value is 1 if file is to be dealt with, 0 otherwise.
4820 # Much of the actual processing is handled in handle_single_transform_list.
4821 # These functions exist so that auxiliary information can be recorded
4822 # for a later cleanup pass. Note that the calls to these functions
4823 # are computed, so don't bother searching for their precise names
4826 # This is just a convenience function that can be used to determine
4827 # when a subdir object should be used.
4830 return defined $options{'subdir-objects'} ? $LANG_SUBDIR : $LANG_PROCESS;
4833 # Rewrite a single C source file.
4836 local ($directory, $base, $ext) = @_;
4838 if (defined $options{'ansi2knr'} && $base =~ /_$/)
4840 # FIXME: include line number in error.
4841 &am_error ("C source file \`$base.c' would be deleted by ansi2knr rules");
4844 local ($r) = $LANG_PROCESS;
4845 if (defined $options{'subdir-objects'})
4848 $base = $directory . '/' . $base;
4852 # Only give error once.
4854 # FIXME: line number.
4855 &am_error ("C objects in subdir but \`AM_PROG_CC_C_O' not in \`configure.in'");
4858 &require_file ($FOREIGN, 'compile')
4859 if $relative_dir eq '.';
4862 $de_ansi_files{$base} = 1;
4866 # Rewrite a single C++ source file.
4867 sub lang_cxx_rewrite
4869 return &lang_sub_obj;
4872 # Rewrite a single header file.
4873 sub lang_header_rewrite
4875 # Header files are simply ignored.
4876 return $LANG_IGNORE;
4879 # Rewrite a single yacc file.
4880 sub lang_yacc_rewrite
4882 local ($directory, $base, $ext) = @_;
4884 local ($r) = &lang_c_rewrite ($directory, $base, $ext);
4886 if ($r == $LANG_SUBDIR)
4888 $pfx = $directory . '/';
4890 $yacc_sources{$pfx . $base . '.' . $ext} = 1;
4892 &saw_extension ('c');
4894 &push_dist_common ($pfx . $base . '.' . $ext);
4898 # Rewrite a single yacc++ file.
4899 sub lang_yaccxx_rewrite
4901 local ($directory, $base, $ext) = @_;
4903 local ($r) = $LANG_PROCESS;
4905 if (defined $options{'subdir-objects'})
4907 $pfx = $directory . '/';
4910 $yacc_sources{$pfx . $base . '.' . $ext} = 1;
4912 &saw_extension ($ext);
4914 &push_dist_common ($pfx . $base . '.' . $ext);
4918 # Rewrite a single lex file.
4919 sub lang_lex_rewrite
4921 local ($directory, $base, $ext) = @_;
4923 local ($r) = &lang_c_rewrite ($directory, $base, $ext);
4925 if ($r == $LANG_SUBDIR)
4927 $pfx = $directory . '/';
4929 $lex_sources{$pfx . $base . '.' . $ext} = 1;
4931 &saw_extension ('c');
4933 &push_dist_common ($pfx . $base . '.' . $ext);
4937 # Rewrite a single lex++ file.
4938 sub lang_lexxx_rewrite
4940 local ($directory, $base, $ext) = @_;
4942 local ($r) = $LANG_PROCESS;
4944 if (defined $options{'subdir-objects'})
4946 $pfx = $directory . '/';
4949 $lex_sources{$pfx . $base . '.' . $ext} = 1;
4951 &saw_extension ($ext);
4953 &push_dist_common ($pfx . $base . '.' . $ext);
4957 # Rewrite a single assembly file.
4958 sub lang_asm_rewrite
4960 return &lang_sub_obj;
4963 # Rewrite a single Fortran 77 file.
4964 sub lang_f77_rewrite
4966 return $LANG_PROCESS;
4969 # Rewrite a single preprocessed Fortran 77 file.
4970 sub lang_ppf77_rewrite
4972 return $LANG_PROCESS;
4975 # Rewrite a single ratfor file.
4976 sub lang_ratfor_rewrite
4978 return $LANG_PROCESS;
4981 # Rewrite a single Objective C file.
4982 sub lang_objc_rewrite
4984 return &lang_sub_obj;
4987 # Rewrite a single Java file.
4988 sub lang_java_rewrite
4990 return $LANG_SUBDIR;
4993 # The lang_X_finish functions are called after all source file
4994 # processing is done. Each should handle defining rules for the
4995 # language, etc. A finish function is only called if a source file of
4996 # the appropriate type has been seen.
5000 # Push all libobjs files onto de_ansi_files. We actually only
5001 # push files which exist in the current directory, and which are
5002 # genuine source files.
5004 foreach $file (keys %libsources)
5006 if ($file =~ /^(.*)\.[cly]$/ && -f "$relative_dir/$file")
5008 $de_ansi_files{$1} = 1;
5012 if (defined $options{'ansi2knr'} && keys %de_ansi_files)
5014 # Make all _.c files depend on their corresponding .c files.
5015 local ($base, @objects);
5016 foreach $base (sort keys %de_ansi_files)
5018 # Each _.c file must depend on ansi2knr; otherwise it
5019 # might be used in a parallel build before it is built.
5020 # We need to support files in the srcdir and in the build
5021 # dir (because these files might be auto-generated. But
5022 # we can't use $< -- some makes only define $< during a
5024 $output_rules .= ($base . "_.c: $base.c \$(ANSI2KNR)\n\t"
5025 . '$(CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) '
5026 . '`if test -f $(srcdir)/' . $base . '.c'
5027 . '; then echo $(srcdir)/' . $base . '.c'
5028 . '; else echo ' . $base . '.c; fi` '
5029 . "| sed 's/^# \\([0-9]\\)/#line \\1/' "
5030 . '| $(ANSI2KNR) > ' . $base . "_.c\n");
5031 push (@objects, $base . '_'
5032 . ($seen_objext ? '.$(OBJEXT)' : '.o'));
5033 push (@objects, $base . '_.lo') if $seen_libtool;
5036 # Make all _.o (and _.lo) files depend on ansi2knr.
5037 # Use a sneaky little hack to make it print nicely.
5038 &pretty_print_rule ('', '', @objects, ':', '$(ANSI2KNR)');
5041 if (! defined $configure_vars{'CC'})
5043 # FIXME: line number.
5044 &am_error ("C source seen but \`CC' not defined in \`configure.in'");
5050 local ($ltcompile, $ltlink) = &libtool_compiler;
5052 &define_variable ('CXXLD', '$(CXX)');
5053 &define_variable ('CXXLINK', $ltlink . '$(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@');
5055 if (! defined $configure_vars{'CXX'})
5057 &am_error ("C++ source seen but \`CXX' not defined in \`configure.in'");
5061 sub lang_header_finish
5066 # This is a helper for both lex and yacc.
5067 sub yacc_lex_finish_helper
5069 return if defined $language_scratch{'lex-yacc-done'};
5070 $language_scratch{'lex-yacc-done'} = 1;
5072 # If there is more than one distinct yacc (resp lex) source file
5073 # in a given directory, then the `ylwrap' program is required to
5074 # allow parallel builds to work correctly. FIXME: for now, no
5076 &require_config_file ($FOREIGN, 'ylwrap');
5077 if ($config_aux_dir ne '.' && $config_aux_dir ne '')
5079 &define_variable ('YLWRAP', $config_aux_dir . "/ylwrap");
5083 &define_variable ('YLWRAP', '$(srcdir)/ylwrap');
5087 sub lang_yacc_finish
5089 return if defined $language_scratch{'yacc-done'};
5090 $language_scratch{'yacc-done'} = 1;
5092 local ($file, $base, $hname, $cname);
5093 local (%seen_suffix) = ();
5094 local (@yacc_files) = sort keys %yacc_sources;
5095 local ($yacc_count) = scalar (@yacc_files);
5096 foreach $file (@yacc_files)
5099 &output_yacc_build_rule ($1, $yacc_count > 1)
5100 if ! defined $seen_suffix{$1};
5101 $seen_suffix{$1} = 1;
5103 $file =~ /^(.*)\.(y|yy|y\+\+|yxx|ypp)$/;
5105 $hname = 'h'; # Always use `.h' for header file.
5106 ($cname = $2) =~ tr/y/c/;
5108 if ((&variable_defined ('AM_YFLAGS')
5109 && &variable_value ('AM_YFLAGS') =~ /(^|\s)-d(\s|$)/)
5110 || (&variable_defined ('YFLAGS')
5111 && &variable_value ('YFLAGS') =~ /(^|\s)-d(\s|$)/)) {
5112 # Now generate rule to make the header file. This should only
5113 # be generated if `yacc -d' specified.
5114 $output_rules .= "${base}.${hname}: ${base}.${cname}\n";
5116 # If the files are built in the build directory, then we want
5117 # to remove them with `make clean'. If they are in srcdir
5118 # they shouldn't be touched. However, we can't determine this
5119 # statically, and the GNU rules say that yacc/lex output files
5120 # should be removed by maintainer-clean. So that's what we
5122 push (@maintainer_clean_files, "${base}.${hname}");
5124 &push_dist_common ("${base}.${hname}");
5126 push (@maintainer_clean_files, "${base}.${cname}");
5128 $output_rules .= "\n";
5130 if (! defined $configure_vars{'YACC'})
5132 &am_error ("yacc source seen but \`YACC' not defined in \`configure.in'");
5134 if (&variable_defined ('YACCFLAGS'))
5136 &am_line_error ('YACCFLAGS',
5137 "\`YACCFLAGS' obsolete; use \`YFLAGS' instead");
5140 if ($yacc_count > 1)
5142 &yacc_lex_finish_helper;
5146 sub lang_yaccxx_finish
5153 return if defined $language_scratch{'lex-done'};
5154 $language_scratch{'lex-done'} = 1;
5156 local (%seen_suffix) = ();
5157 local ($file, $cname);
5158 local ($lex_count) = scalar (keys %lex_sources);
5159 foreach $file (sort keys %lex_sources)
5162 &output_lex_build_rule ($1, $lex_count > 1)
5163 if (! defined $seen_suffix{$1});
5164 $seen_suffix{$1} = 1;
5166 # If the files are built in the build directory, then we want
5167 # to remove them with `make clean'. If they are in srcdir
5168 # they shouldn't be touched. However, we can't determine this
5169 # statically, and the GNU rules say that yacc/lex output files
5170 # should be removed by maintainer-clean. So that's what we
5172 $file =~ /^(.*)\.(l|ll|l\+\+|lxx|lpp)$/;
5173 ($cname = $2) =~ tr/l/c/;
5174 push (@maintainer_clean_files, "${1}.${cname}");
5177 if (! defined $configure_vars{'LEX'})
5179 &am_error ("lex source seen but \`LEX' not defined in \`configure.in'");
5181 if (! $seen_decl_yytext)
5183 &am_error ("lex source seen but \`AC_DECL_YYTEXT' not in \`configure.in'");
5188 &yacc_lex_finish_helper;
5192 sub lang_lexxx_finish
5199 # We need the C code for assembly.
5205 # FIXME: this function can be called more than once. We should
5206 # arrange for it to only do anything the first time through.
5208 local ($ltcompile, $ltlink) = &libtool_compiler;
5210 &define_variable ('F77LD', '$(F77)');
5211 &define_variable ('F77LINK', $ltlink . '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@');
5213 if (! defined $configure_vars{'F77'})
5215 &am_error ("Fortran 77 source seen but \`F77' not defined in \`configure.in'");
5219 # Preprocessed Fortran 77
5221 # The current support for preprocessing Fortran 77 just involves passing
5222 # `$(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS)' as additional flags
5223 # to the Fortran 77 compiler, since this is how GNU Make does it; see
5224 # the `GNU Make Manual, Edition 0.51 for `make' Version 3.76 Beta'
5225 # (specifically, from info file `(make)Catalogue of Rules').
5227 # A better approach would be to write an Autoconf test
5228 # (i.e. AC_PROG_FPP) for a Fortran 77 preprocessor, because not all
5229 # Fortran 77 compilers know how to do preprocessing. The Autoconf macro
5230 # AC_PROG_FPP should test the Fortran 77 compiler first for
5231 # preprocessing capabilities, and then fall back on cpp (if cpp were
5233 sub lang_ppf77_finish
5237 # We also handle the case of preprocessing `.F' files into `.f'
5239 $output_rules .= (".F.f:\n"
5240 . "\t\$(F77COMPILE) -F \$<\n");
5243 sub lang_ratfor_finish
5247 # We also handle the case of preprocessing `.r' files into `.f'
5249 $output_rules .= (".r.f:\n"
5250 . "\t\$(RCOMPILE) -F \$<\n");
5253 sub lang_objc_finish
5255 local ($ltcompile, $ltlink) = &libtool_compiler;
5257 &define_variable ('OBJCLD', '$(OBJC)');
5258 &define_variable ('OBJCLINK', $ltlink . '$(OBJCLD) $(AM_OBJCFLAGS) $(OBJCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@');
5260 if (! defined $configure_vars{'OBJC'})
5262 &am_error ("Objective C source seen but \`OBJC' not defined in \`configure.in'");
5266 sub lang_java_finish
5268 local ($ltcompile, $ltlink) = &libtool_compiler;
5270 &define_variable ('GCJLD', '$(GCJ)');
5271 &define_variable ('GCJLINK', $ltlink . '$(GCJLD) $(AM_GCJFLAGS) $(GCJFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@');
5273 if (! defined $configure_vars{'GCJ'})
5275 &am_error ("Java source seen but \`GCJ' not defined in \`configure.in'");
5279 # A helper which computes a sorted list of all extensions for LANG.
5284 foreach $key (sort keys %extension_seen)
5286 push (@r, '.' . $key) if $extension_map{$key} eq $lang;
5291 # A helper which decides whether libtool is needed. Returns prefix
5292 # for compiler and linker.
5293 sub libtool_compiler
5295 local ($ltcompile, $ltlink) = ('', '');
5298 &define_configure_variable ("LIBTOOL");
5299 $ltcompile = '$(LIBTOOL) --mode=compile ';
5300 $ltlink = '$(LIBTOOL) --mode=link ';
5302 return ($ltcompile, $ltlink);
5305 # Given a hash table of linker names, pick the name that has the most
5306 # precedence. This is lame, but something has to have global
5307 # knowledge in order to eliminate the conflict. Add more linkers as
5311 local (%linkers) = @_;
5314 if defined $linkers{'GCJLINK'};
5316 if defined $linkers{'CXXLINK'};
5318 if defined $linkers{'F77LINK'};
5320 if defined $linkers{'OBJCLINK'};
5324 # Called to indicate that an extension was used.
5328 $extension_seen{$ext} = 1;
5331 # Called to ask whether source files have been seen . If HEADERS is 1,
5332 # headers can be included.
5335 local ($headers) = @_;
5343 local (@exts) = &lang_extensions ('header');
5347 return scalar keys %extension_seen > $headers;
5350 # Register a single language. LANGUAGE is the name of the language.
5351 # Each OPTION is either of the form NAME=VALUE, or is a file extension
5353 sub register_language
5355 local ($language, @options) = @_;
5358 $language_map{$language . '-ansi-p'} = 0;
5359 $language_map{$language . '-linker'} = '';
5360 $language_map{$language . '-autodep'} = 'no';
5363 foreach $iter (@options)
5365 if ($iter =~ /^(.*)=(.*)$/)
5367 $language_map{$language . '-' . $1} = $2;
5369 elsif (defined $extension_map{$iter})
5372 "automake: programming error: duplicate extension $iter\n";
5377 $extension_map{$iter} = $language;
5383 ################################################################
5385 # Pretty-print something. HEAD is what should be printed at the
5386 # beginning of the first line, FILL is what should be printed at the
5387 # beginning of every subsequent line.
5388 sub pretty_print_internal
5390 local ($head, $fill, @values) = @_;
5392 local ($column) = length ($head);
5393 local ($result) = $head;
5395 # Fill length is number of characters. However, each Tab
5396 # character counts for eight. So we count the number of Tabs and
5398 local ($fill_length) = length ($fill);
5399 $fill_length += 7 * ($fill =~ tr/\t/\t/d);
5401 local ($bol) = ($head eq '');
5404 # "71" because we also print a space.
5405 if ($column + length ($_) > 71)
5407 $result .= " \\\n" . $fill;
5408 $column = $fill_length;
5412 $result .= ' ' unless ($bol);
5414 $column += length ($_) + 1;
5422 # Pretty-print something and append to output_vars.
5425 $output_vars .= &pretty_print_internal (@_);
5428 # Pretty-print something and append to output_rules.
5429 sub pretty_print_rule
5431 $output_rules .= &pretty_print_internal (@_);
5435 ################################################################
5437 # See if a target exists.
5440 local ($target) = @_;
5441 return defined $targets{$target};
5444 # See if two conditionals are the same.
5445 sub conditional_same
5447 local ($cond1, $cond2) = @_;
5449 return (&conditional_true_when ($cond1, $cond2)
5450 && &conditional_true_when ($cond2, $cond1));
5453 # See if a conditional is true. Both arguments are conditional
5454 # strings. This returns true if the first conditional is true when
5455 # the second conditional is true.
5456 sub conditional_true_when
5458 local ($cond, $when) = @_;
5460 # Check the easy case first.
5466 # Check each component of $cond, which looks @COND1@@COND2@.
5467 foreach $comp (split ('@', $cond))
5469 # The way we split will give null strings between each
5473 if (index ($when, '@' . $comp . '@') == -1)
5482 # Check for an ambiguous conditional. This is called when a variable
5483 # or target is being defined conditionally. If we already know about
5484 # a definition that is true under the same conditions, then we have an
5486 sub check_ambiguous_conditional
5488 local ($var_name, $cond) = @_;
5489 local (@cond_vals) = split (' ', $conditional{$var_name});
5492 local ($vcond) = shift (@cond_vals);
5494 if (&conditional_true_when ($vcond, $cond)
5495 || &conditional_true_when ($cond, $vcond))
5497 &am_line_error ($var_name,
5498 "$var_name multiply defined in condition");
5503 # See if a variable exists. The first argument is the variable name,
5504 # and the optional second argument is the condition which we should
5505 # check. If no condition is given, we currently return true if the
5506 # variable is defined under any condition.
5507 sub variable_defined
5509 local ($var, $cond) = @_;
5510 if (defined $targets{$var})
5512 &am_line_error ($var, "\`$var' is target; expected variable");
5515 elsif (defined $contents{$var})
5517 if ($cond && $conditional{$var})
5519 # We have been asked to check for a particular condition,
5520 # and the variable is defined conditionally. We need to
5521 # look through the conditions under which the variable is
5522 # defined, and see if any of them match the conditional we
5523 # have been asked to check.
5524 local (@cond_vars) = split (' ', $conditional{$var});
5527 if (&conditional_same ($cond, shift (@cond_vars)))
5529 # Even a conditional examination is good enough
5530 # for us. FIXME: really should maintain examined
5531 # status on a per-condition basis.
5532 $content_seen{$var} = 1;
5538 # The variable is not defined for the given condition.
5542 $content_seen{$var} = 1;
5548 # Mark a variable as examined.
5549 sub examine_variable
5552 &variable_defined ($var);
5555 # Quote a value in order to put it in $conditional. We need to quote
5556 # spaces, and we need to handle null strings, so that we can later
5557 # retrieve values by splitting on space.
5561 $val =~ tr/ \t\n/\001\003\004/;
5562 $val = "\002" if $val eq '';
5566 # Unquote a value in $conditional.
5567 sub unquote_cond_val
5570 $val =~ tr/\001\003\004/ \t\n/;
5575 # Return the set of conditions for which a variable is defined.
5577 # If the variable is not defined conditionally, and is not defined in
5578 # terms of any variables which are defined conditionally, then this
5579 # returns the empty list.
5581 # If the variable is defined conditionally, but is not defined in
5582 # terms of any variables which are defined conditionally, then this
5583 # returns the list of conditions for which the variable is defined.
5585 # If the variable is defined in terms of any variables which are
5586 # defined conditionally, then this returns a full set of permutations
5587 # of the subvariable conditions. For example, if the variable is
5588 # defined in terms of a variable which is defined for @COND_TRUE@,
5589 # then this returns both @COND_TRUE@ and @COND_FALSE@. This is
5590 # because we will need to define the variable under both conditions.
5592 sub variable_conditions
5600 foreach $cond (&variable_conditions_sub ($var, '', ()))
5602 $uniqify{$cond} = 1;
5605 @uniq_list = sort keys %uniqify;
5606 # Note we cannot just do `return sort keys %uniqify', because this
5607 # function is sometimes used in a scalar context.
5611 # A subroutine of variable_conditions. We only return conditions
5612 # which are true for all the conditions in @PARENT_CONDS.
5613 sub variable_conditions_sub
5615 local ($var, $parent, @parent_conds) = @_;
5616 local (@new_conds) = ();
5618 if (defined $vars_scanned{$var})
5620 &am_line_error ($parent, "variable \`$var' recursively defined");
5623 $vars_scanned{$var} = 1;
5625 if (! $conditional{$var})
5627 foreach (split (' ', $contents{$var}))
5629 # If a comment seen, just leave.
5632 # Handle variable substitutions.
5633 if (/^\$\{(.*)\}$/ || /^\$\((.*)\)$/)
5636 &variable_conditions_sub ($1, $var, @parent_conds));
5640 # Now we want to return all permutations of the subvariable
5642 local (%allconds, $item);
5643 foreach $item (@new_conds)
5645 foreach (split ('@', $item))
5649 $allconds{$_ . '_TRUE'} = 1;
5653 # Unset our entry in vars_scanned. We only care about recursive
5655 delete $vars_scanned{$var};
5657 return &variable_conditions_permutations (sort keys %allconds);
5660 local (@this_conds) = ();
5661 local (@condvals) = split (' ', $conditional{$var});
5664 local ($cond) = shift (@condvals);
5665 local ($val) = &unquote_cond_val (shift (@condvals));
5670 local ($parent_cond);
5671 foreach $parent_cond (@parent_conds)
5673 if (! &conditional_true_when ($parent_cond, $cond))
5683 push (@this_conds, $cond);
5685 push (@parent_conds, $cond);
5686 local (@subvar_conds) = ();
5687 foreach (split (' ', $val))
5689 # If a comment seen, just leave.
5692 # Handle variable substitutions.
5693 if (/^\$\{(.*)\}$/ || /^\$\((.*)\)$/)
5695 push (@subvar_conds,
5696 &variable_conditions_sub ($1, $var, @parent_conds));
5699 pop (@parent_conds);
5701 # If there are no conditional subvariables, then we want to
5702 # return this condition. Otherwise, we want to return the
5703 # permutations of the subvariables.
5704 if (! @subvar_conds)
5706 push (@new_conds, $cond);
5710 push (@new_conds, &variable_conditions_reduce (@subvar_conds));
5714 # Unset our entry in vars_scanned. We only care about recursive
5716 delete $vars_scanned{$var};
5721 # If we are being called on behalf of another variable, we need to
5722 # return all possible permutations of the conditions. We have
5723 # already handled everything in @this_conds along with their
5724 # subvariables. We now need to add any permutations that are not
5727 foreach $this_cond (@this_conds)
5730 &variable_conditions_permutations (split('@', $this_cond));
5732 foreach $perm (@perms)
5736 foreach $scan (@this_conds)
5738 if (&conditional_true_when ($perm, $scan)
5739 || &conditional_true_when ($scan, $perm))
5750 local ($parent_cond);
5751 foreach $parent_cond (@parent_conds)
5753 if (! &conditional_true_when ($parent_cond, $perm))
5763 # This permutation was not already handled, and is valid
5765 push (@new_conds, $perm);
5772 # Subroutine for variable_conditions_sort
5773 sub variable_conditions_cmp
5779 return (length ($as) <=> length ($bs)
5783 # Sort a list of conditionals so that only the exclusive ones are
5784 # retained. For example, if both @COND1_TRUE@@COND2_TRUE@ and
5785 # @COND1_TRUE@ are in the list, discard the latter.
5786 sub variable_conditions_reduce
5788 local (@conds) = @_;
5791 foreach $cond (sort variable_conditions_cmp @conds)
5795 foreach $scan (@ret)
5797 if (&conditional_true_when ($cond, $scan))
5810 # Return a list of permutations of a conditional string.
5811 sub variable_conditions_permutations
5813 local (@comps) = @_;
5816 local ($comp) = shift (@comps);
5817 return &variable_conditions_permutations (@comps)
5819 local ($neg) = $comp;
5820 $neg =~ s/TRUE$/TRUEO/;
5821 $neg =~ s/FALSE$/TRUE/;
5822 $neg =~ s/TRUEO$/FALSE/;
5825 foreach $sub (&variable_conditions_permutations (@comps))
5827 push (@ret, '@' . $comp . '@' . $sub);
5828 push (@ret, '@' . $neg . '@' . $sub);
5832 push (@ret, '@' . $comp . '@');
5833 push (@ret, '@' . $neg . '@');
5838 # Warn if a variable is conditionally defined. This is called if we
5839 # are using the value of a variable.
5840 sub variable_conditionally_defined
5842 local ($var, $parent) = @_;
5843 if ($conditional{$var})
5847 &am_line_error ($parent,
5848 "warning: automake does not support conditional definition of $var in $parent");
5852 &am_line_error ($parent,
5853 "warning: automake does not support $var being defined conditionally")
5858 # Get the value of a variable. This just returns $contents, but warns
5859 # if the variable is conditionally defined.
5863 &variable_conditionally_defined ($var);
5864 return $contents{$var};
5867 # Convert a variable value to a list, split as whitespace. This will
5868 # recursively follow $(...) and ${...} inclusions. It preserves @...@
5869 # substitutions. If COND is 'all', then all values under all
5870 # conditions should be returned; if COND is a particular condition
5871 # (all conditions are surrounded by @...@) then only the value for
5872 # that condition should be returned; otherwise, warn if VAR is
5873 # conditionally defined. SCANNED is a global hash listing whose keys
5874 # are all the variables already scanned; it is an error to rescan a
5878 local ($var, $val, $cond) = @_;
5882 $val =~ s/\\(\n|$)/ /g;
5884 foreach (split (' ', $val))
5886 # If a comment seen, just leave.
5889 # Handle variable substitutions.
5890 if (/^\$\{([^}]*)\}$/ || /^\$\(([^)]*)\)$/)
5892 local ($varname) = $1;
5894 # If the user uses a losing variable name, just ignore it.
5895 # This isn't ideal, but people have requested it.
5896 next if ($varname =~ /\@.*\@/);
5900 if ($varname =~ /^([^:]*):([^=]*)=(.*)$/)
5904 ($from = $2) =~ s/(\W)/\\$1/g;
5908 @temp_list = &variable_value_as_list_worker ($1, $cond, $var);
5910 # Now rewrite the value if appropriate.
5913 grep (s/$from$/$to/, @temp_list);
5916 push (@result, @temp_list);
5927 # Return contents of variable as list, split as whitespace. This will
5928 # recursively follow $(...) and ${...} inclusions. It preserves @...@
5929 # substitutions. If COND is 'all', then all values under all
5930 # conditions should be returned; if COND is a particular condition
5931 # (all conditions are surrounded by @...@) then only the value for
5932 # that condition should be returned; otherwise, warn if VAR is
5933 # conditionally defined. If PARENT is specified, it is the name of
5934 # the including variable; this is only used for error reports.
5935 sub variable_value_as_list_worker
5937 local ($var, $cond, $parent) = @_;
5940 if (defined $targets{$var})
5942 &am_line_error ($var, "\`$var' is target; expected variable");
5944 elsif (! defined $contents{$var})
5946 &am_line_error ($parent, "variable \`$var' not defined");
5948 elsif (defined $vars_scanned{$var})
5950 # `vars_scanned' is a global we use to keep track of which
5951 # variables we've already examined.
5952 &am_line_error ($parent, "variable \`$var' recursively defined");
5954 elsif ($cond eq 'all' && $conditional{$var})
5956 $vars_scanned{$var} = 1;
5957 local (@condvals) = split (' ', $conditional{$var});
5961 local ($val) = &unquote_cond_val (shift (@condvals));
5962 push (@result, &value_to_list ($var, $val, $cond));
5965 elsif ($cond && $conditional{$var})
5967 $vars_scanned{$var} = 1;
5968 local (@condvals) = split (' ', $conditional{$var});
5972 local ($vcond) = shift (@condvals);
5973 local ($val) = &unquote_cond_val (shift (@condvals));
5974 if (&conditional_true_when ($vcond, $cond))
5976 # Warn if we have an ambiguity. It's hard to know how
5977 # to handle this case correctly.
5978 &variable_conditionally_defined ($var, $parent)
5981 push (@result, &value_to_list ($var, $val, $cond));
5987 $vars_scanned{$var} = 1;
5988 &variable_conditionally_defined ($var, $parent);
5989 $content_seen{$var} = 1;
5990 push (@result, &value_to_list ($var, $contents{$var}, $cond));
5993 # Unset our entry in vars_scanned. We only care about recursive
5995 delete $vars_scanned{$var};
6000 # This is just a wrapper for variable_value_as_list_worker that
6001 # initializes the global hash `vars_scanned'. This hash is used to
6002 # avoid infinite recursion.
6003 sub variable_value_as_list
6005 local ($var, $cond, $parent) = @_;
6007 return &variable_value_as_list_worker ($var, $cond, $parent);
6010 # Define a new variable, but only if not already defined.
6013 local ($var, $value) = @_;
6015 if (! defined $contents{$var})
6017 $output_vars .= $var . ' = ' . $value . "\n";
6018 $contents{$var} = $value;
6019 $content_seen{$var} = 1;
6021 elsif ($var_was_plus_eq{$var})
6023 &am_line_error ($var, "internally generated variable \`$var' was set with \`+='");
6027 # Like define_variable, but the value is a list, and the variable may
6028 # be defined conditionally. The second argument is the conditional
6029 # under which the value should be defined; this should be the empty
6030 # string to define the variable unconditionally. The third argument
6031 # is a list holding the values to use for the variable. The value is
6032 # pretty printed in the output file.
6033 sub define_pretty_variable
6035 local ($var, $cond, @value) = @_;
6036 if (! defined $contents{$var}
6037 || ($cond && ! &variable_defined ($var, $cond)))
6039 $contents{$var} = join (' ', @value);
6042 if ($conditional{$var})
6044 $conditional{$var} .= ' ';
6048 $conditional{$var} = '';
6050 $conditional{$var} .= ($cond
6052 . "e_cond_val ($contents{$var}));
6054 &pretty_print ($cond . $var . ' = ', $cond, @value);
6055 $content_seen{$var} = 1;
6059 # Like define_variable, but define a variable to be the configure
6060 # substitution by the same name.
6061 sub define_configure_variable
6064 local ($value) = '@' . $var . '@';
6065 &define_variable ($var, $value);
6068 # Define a compiler variable. We also handle defining the `LT'
6069 # version of the command when using libtool.
6070 sub define_compiler_variable
6072 local ($var, $ltcompile, $value) = @_;
6073 local ($name) = $var;
6074 &define_variable ($name, $value);
6075 &define_variable ('LT' . $name, $ltcompile . $value)
6079 # Define a variable that represents a program to run. If in Cygnus
6080 # mode, the program is searched for in the build (or source) tree.
6081 # Otherwise no searching is done at all. Arguments are:
6082 # * VAR Name of variable to define
6083 # * WHATDIR Either `src' or `build', depending on where program should
6084 # be found. (runtest is in srcdir!)
6085 # * SUBDIR Subdir of top-level dir
6086 # * PROGRAM Name of program
6087 # * OVERRIDE If specified, the name of the program to use when not in
6088 # Cygnus mode. Defaults to PROGRAM.
6089 sub define_program_variable
6091 local ($var, $whatdir, $subdir, $program, $override) = @_;
6095 $override = $program;
6100 local ($full) = ('$(top_' . $whatdir . 'dir)/../'
6101 . $subdir . '/' . $program);
6102 &define_variable ($var, ('`if test -f ' . $full
6103 . '; then echo ' . $full . '; else echo '
6104 . $program . '; fi`'));
6108 &define_variable ($var, $override);
6113 ################################################################
6115 # Read Makefile.am and set up %contents. Simultaneously copy lines
6116 # from Makefile.am into $output_trailer or $output_vars as
6117 # appropriate. NOTE we put rules in the trailer section. We want
6118 # user rules to come after our generated stuff.
6121 local ($amfile) = @_;
6124 open (AM_FILE, $amfile) || die "automake: couldn't open \`$amfile': $!\n";
6125 print "automake: reading $amfile\n" if $verbose;
6127 local ($saw_bk) = 0;
6128 local ($was_rule) = 0;
6129 local ($spacing) = '';
6130 local ($comment) = '';
6131 local ($last_var_name) = '';
6136 if (/$IGNORE_PATTERN/o)
6138 # Merely delete comments beginning with two hashes.
6140 elsif (/$WHITE_PATTERN/o)
6142 # Stick a single white line before the incoming macro or rule.
6146 elsif (/$COMMENT_PATTERN/o)
6148 # Stick comments before the incoming macro or rule. Make
6149 # sure a blank line preceeds first block of comments.
6150 $spacing = "\n" unless $blank;
6152 $comment .= $spacing . $_;
6161 $output_vars .= $comment . "\n";
6165 local ($is_ok_macro);
6169 unless substr ($_, -1, 1) eq "\n";
6171 # Don't look at MAINTAINER_MODE_TRUE here. That shouldn't be
6172 # used by users. @MAINT@ is an anachronism now.
6173 $_ =~ s/\@MAINT\@//g
6174 unless $seen_maint_mode;
6176 if (/$IGNORE_PATTERN/o)
6178 # Merely delete comments beginning with two hashes.
6180 elsif (/$WHITE_PATTERN/o)
6182 # Stick a single white line before the incoming macro or rule.
6184 &am_line_error ($., "blank line following trailing backslash")
6187 elsif (/$COMMENT_PATTERN/o)
6189 # Stick comments before the incoming macro or rule.
6190 $comment .= $spacing . $_;
6192 &am_line_error ($., "comment following trailing backslash")
6199 $output_trailer .= join ('', @conditional_stack) . $_;
6205 $contents{$last_var_name} .= ' '
6206 unless $contents{$last_var_name} =~ /\s$/;
6207 $contents{$last_var_name} .= $_;
6208 if (@conditional_stack)
6210 $conditional{$last_var_name} .= "e_cond_val ($_);
6214 elsif (/$IF_PATTERN/o)
6216 &am_line_error ($., "$1 does not appear in AM_CONDITIONAL")
6217 if (! $configure_cond{$1});
6218 push (@conditional_stack, "\@" . $1 . "_TRUE\@");
6220 elsif (/$ELSE_PATTERN/o)
6222 if (! @conditional_stack)
6224 &am_line_error ($., "else without if");
6226 elsif ($conditional_stack[$#conditional_stack] =~ /_FALSE\@$/)
6228 &am_line_error ($., "else after else");
6232 $conditional_stack[$#conditional_stack]
6233 =~ s/_TRUE\@$/_FALSE\@/;
6236 elsif (/$ENDIF_PATTERN/o)
6238 if (! @conditional_stack)
6240 &am_line_error ($., "endif without if");
6244 pop @conditional_stack;
6247 elsif (/$RULE_PATTERN/o)
6251 if (defined $contents{$1}
6252 && (@conditional_stack
6253 ? ! defined $conditional{$1}
6254 : defined $conditional{$1}))
6257 "$1 defined both conditionally and unconditionally");
6259 # Value here doesn't matter; for targets we only note
6263 local ($cond_string) = join ('', @conditional_stack);
6264 if (@conditional_stack)
6266 if ($conditional{$1})
6268 &check_ambiguous_conditional ($1, $cond_string);
6269 $conditional{$1} .= ' ';
6273 $conditional{$1} = '';
6275 $conditional{$1} .= $cond_string . ' 1';
6277 $content_lines{$1} = $.;
6278 $output_trailer .= $comment . $spacing . $cond_string . $_;
6279 $comment = $spacing = '';
6282 # Check the rule for being a suffix rule. If so, store in
6285 local ($source_suffix);
6286 local ($object_suffix);
6288 if (($source_suffix, $object_suffix) = ($1 =~ $SUFFIX_RULE_PATTERN))
6290 $suffix_rules{$source_suffix} = $object_suffix;
6291 print "Sources ending in .$source_suffix become .$object_suffix\n" if $verbose;
6292 $source_suffix_pattern = "(" . join('|', keys %suffix_rules) . ")";
6295 # FIXME: make sure both suffixes are in SUFFIXES? Or set
6296 # SUFFIXES from suffix_rules?
6298 elsif (($is_ok_macro = /$MACRO_PATTERN/o)
6299 || /$BOGUS_MACRO_PATTERN/o)
6301 # Found a macro definition.
6303 $last_var_name = $1;
6304 if (defined $contents{$1}
6305 && (@conditional_stack
6306 ? ! defined $conditional{$1}
6307 : defined $conditional{$1}))
6310 "$1 defined both conditionally and unconditionally");
6313 if ($3 ne '' && substr ($3, -1) eq "\\")
6315 # We preserve the `\' because otherwise the long lines
6316 # that are generated will be truncated by broken
6326 if (! defined $contents{$last_var_name})
6328 # The first assignment to a macro sets the line
6329 # number. Ideally I suppose we would associate line
6330 # numbers with random bits of text.
6331 $content_lines{$last_var_name} = $.;
6333 # If first assignment, set `+=' indicator.
6334 $var_was_plus_eq{$last_var_name} =
6336 && ! defined $am_var_defs{$last_var_name});
6341 if (! defined $contents{$last_var_name}
6342 && defined $am_var_defs{$last_var_name})
6344 $contents{$last_var_name} = $am_var_defs{$last_var_name};
6346 if (substr ($contents{$last_var_name}, -1) eq "\n")
6348 # Insert a backslash before a trailing newline.
6349 $contents{$last_var_name}
6350 = substr ($contents{$last_var_name}, 0, -1) . "\\\n";
6352 $contents{$last_var_name} .= ' ' . $value;
6356 $contents{$last_var_name} = $value;
6358 local ($cond_string) = join ('', @conditional_stack);
6359 if (@conditional_stack)
6363 if ($conditional{$last_var_name})
6367 # If we're adding to the conditional, and it
6368 # exists, then we might want to simply replace
6369 # the old value with the new one.
6370 local (@new_vals, @cond_vals);
6371 @cond_vals = split (' ', $conditional{$last_var_name});
6374 local ($vcond) = shift (@cond_vals);
6375 push (@new_vals, $vcond);
6376 if (&conditional_same ($vcond, $cond_string))
6379 $val = (&unquote_cond_val (shift (@cond_vals))
6381 push (@new_vals, "e_cond_val ($val));
6385 push (@new_vals, shift (@cond_vals));
6390 $conditional{$last_var_name}
6391 = join (' ', @new_vals);
6397 &check_ambiguous_conditional ($last_var_name,
6399 $conditional{$last_var_name} .= ' ';
6405 $conditional{$last_var_name} = '';
6406 $val = $contents{$last_var_name};
6410 $conditional{$last_var_name} .= ($cond_string
6412 . "e_cond_val ($val));
6416 # FIXME: this doesn't always work correctly; it will group
6417 # all comments for a given variable, no matter where
6419 $am_vars{$last_var_name} = $comment . $spacing;
6420 $def_type{$last_var_name} = ($type eq ':') ? ':' : '';
6421 push (@var_list, $last_var_name);
6422 $comment = $spacing = '';
6426 &am_line_error ($., "bad macro name \`$last_var_name'")
6429 elsif (/$INCLUDE_PATTERN/o)
6433 if ($path =~ s/^\$\(top_srcdir\)\///)
6435 push (@include_stack, "\$\(top_srcdir\)/$path");
6439 $path =~ s/\$\(srcdir\)\///;
6440 push (@include_stack, "\$\(srcdir\)/$path");
6441 $path = $relative_dir . "/" . $path;
6443 &read_am_file ($path);
6447 # This isn't an error; it is probably a continued rule.
6448 # In fact, this is what we assume.
6450 $output_trailer .= ($comment . $spacing
6451 . join ('', @conditional_stack) . $_);
6452 $comment = $spacing = '';
6459 $output_trailer .= $comment;
6461 &am_error ("unterminated conditionals: " . join (' ', @conditional_stack))
6462 if (@conditional_stack);
6465 # A helper for read_main_am_file which initializes configure variables
6466 # and variables from header-vars.am. This is a subr so we can call it
6468 sub define_standard_variables
6470 # Compute relative location of the top object directory.
6471 local (@topdir) = ();
6472 foreach (split (/\//, $relative_dir))
6474 next if $_ eq '.' || $_ eq '';
6481 push (@topdir, '..');
6484 @topdir = ('.') if ! @topdir;
6486 $top_builddir = join ('/', @topdir);
6488 ($build_rx = $top_builddir) =~ s/(\W)/\\$1/g;
6489 $output_vars .= &file_contents_with_transform
6490 ('s/\@top_builddir\@/' . $build_rx . '/g;',
6493 # Generate some useful variables when AC_CANONICAL_* used. FIXME:
6494 # this should use generic %configure_vars method.
6495 if ($seen_canonical)
6497 local ($curs, %vars);
6498 $vars{'host_alias'} = 'host_alias';
6499 $vars{'host_triplet'} = 'host';
6500 if ($seen_canonical == $AC_CANONICAL_SYSTEM)
6502 $vars{'build_alias'} = 'build_alias';
6503 $vars{'build_triplet'} = 'build';
6504 $vars{'target_alias'} = 'target_alias';
6505 $vars{'target_triplet'} = 'target';
6507 foreach $curs (sort keys %vars)
6509 $output_vars .= "$curs = \@$vars{$curs}\@\n";
6510 $contents{$curs} = "\@$vars{$curs}\@";
6515 foreach $curs (sort keys %configure_vars)
6517 &define_configure_variable ($curs);
6521 # Read main am file.
6522 sub read_main_am_file
6524 local ($amfile) = @_;
6526 # The keys here are variables we want to dump at the end of this
6527 # function. The values are corresponding comments.
6528 local (%am_vars) = ();
6529 local (@var_list) = ();
6530 local (%def_type) = ();
6532 # This supports the strange variable tricks we are about to play.
6533 if (scalar keys %contents > 0)
6535 print STDERR "automake: programming error: variable defined before read_main_am_file\n";
6539 # We want to predefine as many variables as possible. This lets
6540 # the user set them with `+=' in Makefile.am. However, we don't
6541 # want these initial definitions to end up in the output quite
6542 # yet. So we adopt a hack: read the `.am' file twice, throwing
6543 # away the output the first time. We also squirrel away a list of
6544 # all the variables defined by the .am file so that we know which
6545 # ones to remove from the content list.
6548 &define_standard_variables;
6549 local (%saved_contents) = %contents;
6551 # Read user file, but discard text of variable assignments we just
6554 &read_am_file ($amfile);
6556 # Now dump the variables that were defined. We do it in the same
6557 # order in which they were defined (skipping duplicates).
6559 foreach $curs (@var_list)
6561 next if $done{$curs};
6564 $output_vars .= $am_vars{$curs};
6565 if ($conditional{$curs})
6567 local (@cond_vals) = split (' ', $conditional{$curs});
6570 local ($vcond) = shift (@cond_vals);
6571 local ($val) = &unquote_cond_val (shift (@cond_vals));
6572 $output_vars .= ($vcond . $curs . ' '
6573 . $def_type{$curs} . "= ");
6575 foreach $line (split ("\n", $val))
6577 $output_vars .= $vcond . $line . "\n";
6579 $output_vars .= "\n"
6585 $output_vars .= ($curs . ' ' . $def_type{$curs} . '= '
6586 . $contents{$curs} . "\n");
6590 # Generate copyright header for generated Makefile.in.
6591 local ($ov) = $output_vars;
6592 $output_vars = ("# $in_file_name generated automatically by automake "
6593 . $VERSION . " from $am_file_name\n");
6594 $output_vars .= $gen_copyright;
6596 # Now go through and delete all the variables that the user did
6599 foreach $var (keys %saved_contents)
6601 if ($contents{$var} eq $saved_contents{$var})
6603 delete $contents{$var};
6607 # Re-read the standard variables, and this time keep their
6608 # contributions to the output. Then add the user's output to the
6610 &define_standard_variables;
6611 $output_vars .= $ov;
6615 ################################################################
6617 sub initialize_global_constants
6619 # Values for AC_CANONICAL_*
6620 $AC_CANONICAL_HOST = 1;
6621 $AC_CANONICAL_SYSTEM = 2;
6623 # Associative array of standard directory names. Entry is TRUE if
6624 # corresponding directory should be installed during
6625 # 'install-exec' phase.
6643 # Commonly found files we look for and automatically include in
6647 "README", "THANKS", "TODO", "NEWS", "COPYING", "COPYING.LIB",
6648 "INSTALL", "ABOUT-NLS", "ChangeLog", "configure", "configure.in",
6649 "config.guess", "config.sub", "AUTHORS", "BACKLOG", "ABOUT-GNU",
6650 "libversion.in", "mdate-sh", "mkinstalldirs", "install-sh",
6651 'texinfo.tex', "ansi2knr.c", "ansi2knr.1", 'elisp-comp',
6652 'ylwrap', 'acinclude.m4', @libtoolize_files,
6653 'missing', 'compile'
6656 # Commonly used files we auto-include, but only sometimes.
6659 "aclocal.m4", "acconfig.h", "config.h.top",
6660 "config.h.bot", "stamp-h.in", 'stamp-vti'
6664 -a, --add-missing add missing standard files to package
6665 --amdir=DIR directory storing config files
6666 --build-dir=DIR directory where build being done (for dependencies)
6667 -c, --copy with -a, copy missing files (default is symlink)
6668 --cygnus assume program is part of Cygnus-style tree
6669 --foreign set strictness to foreign
6670 --gnits set strictness to gnits
6671 --gnu set strictness to gnu
6672 --help print this help, then exit
6673 -i, --include-deps include generated dependencies in Makefile.in
6674 --no-force only update Makefile.in's that are out of date
6675 -o DIR, --output-dir=DIR
6676 put generated Makefile.in's into DIR
6677 --srcdir-name=DIR name used for srcdir (for dependencies)
6678 -v, --verbose verbosely list files processed
6679 --version print version number, then exit\n";
6681 # Copyright on generated Makefile.ins.
6683 # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
6684 # This Makefile.in is free software; the Free Software Foundation
6685 # gives unlimited permission to copy and/or distribute it,
6686 # with or without modifications, as long as this notice is preserved.
6688 # This program is distributed in the hope that it will be useful,
6689 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
6690 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
6691 # PARTICULAR PURPOSE.
6694 # This complex find command will try to avoid changing the modes of
6695 # links into the source tree, in case they're hard-linked. It will
6696 # also make directories writable by everybody, because some
6697 # brain-dead tar implementations change ownership and permissions of
6698 # a directory before extracting the files, thus becoming unable to
6700 # Ignore return result from chmod, because it might give an error
6701 # if we chmod a symlink.
6702 $dist_header = ' -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \\
6703 ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \\
6704 ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \\
6705 || chmod -R a+r $(distdir)
6707 $dist{'dist-bzip2'} = ("\t"
6708 . '$(AMTAR) ch$(AMTARFLAGS)f - $(distdir) | bzip --best -c > $(distdir).bz2'
6710 $dist{'dist-tarZ'} = ("\t"
6711 . '$(AMTAR) ch$(AMTARFLAGS)f - $(distdir) | compress -c > $(distdir).tar.Z'
6713 $dist{'dist-shar'} = ("\t"
6714 . 'shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c > $(distdir).shar.gz'
6716 $dist{'dist-zip'} = ("\t" . '-rm -f $(distdir).zip' . "\n" .
6717 "\t" . 'zip -rq $(distdir).zip $(distdir)' . "\n");
6718 $dist{'dist'} = ("\t"
6719 . '$(AMTAR) ch$(AMTARFLAGS)f - $(distdir) | GZIP=$(GZIP_ENV) gzip -c > $(distdir).tar.gz'
6721 $dist_trailer = "\t" . '-rm -rf $(distdir)' . "\n";
6724 # (Re)-Initialize per-Makefile.am variables.
6725 sub initialize_per_input
6727 # These two variables are used when generating each Makefile.in.
6728 # They hold the Makefile.in until it is ready to be printed.
6731 $output_trailer = '';
6733 $output_header = '';
6735 # Suffixes found during a run.
6738 # This holds the contents of a Makefile.am, as parsed by
6742 # This holds the names which are targets. These also appear in
6746 # This maps a variable name onto a flag. The flag is true iff the
6747 # variable was first defined with `+='.
6748 %var_was_plus_eq = ();
6750 # This holds definitions of all variables defined in .am files.
6751 # This is used during startup to determine which variables can be
6752 # assigned with `+='.
6755 # For a variable or target which is defined conditionally, this
6756 # holds an array of the conditional values. The array is composed
6757 # of pairs of condition strings (the variables which configure
6758 # will substitute) and values (the value of a target is
6759 # meaningless). For an unconditional variable, this is empty.
6762 # This holds the line numbers at which various elements of
6763 # %contents are defined.
6764 %content_lines = ();
6766 # This holds a 1 if a particular variable was examined.
6769 # This is the conditional stack.
6770 @conditional_stack = ();
6772 # This holds the set of included files.
6773 @include_stack = ();
6775 # This holds the "relative directory" of the current Makefile.in.
6776 # Eg for src/Makefile.in, this is "src".
6779 # This holds a list of files that are included in the
6783 # List of dependencies for the obvious targets.
6799 # A list of files deleted by `maintainer-clean'.
6800 @maintainer_clean_files = ();
6802 # These are pretty obvious, too. They are used to define the
6803 # SOURCES and OBJECTS variables.
6806 # Sources which go in the distribution.
6809 # This hash maps object file names onto their corresponding source
6810 # file names. This is used to ensure that each object is created
6811 # by a single source file.
6814 # This keeps track of the directories for which we've already
6815 # created `.dirstamp' code.
6816 %directory_map = ();
6818 # These variables track inclusion of various compile-related .am
6819 # files. $included_generic_compile is TRUE if the basic code has
6820 # been included. $included_knr_compile is TRUE if the ansi2knr
6821 # code has been included. $included_libtool_compile is TRUE if
6822 # libtool support has been included.
6823 $included_generic_compile = 0;
6824 $included_knr_compile = 0;
6825 $included_libtool_compile = 0;
6827 # TRUE if install targets should work recursively.
6828 $recursive_install = 0;
6833 # Strictness levels.
6834 $strictness = $default_strictness;
6835 $strictness_name = $default_strictness_name;
6837 # Options from AUTOMAKE_OPTIONS.
6840 # Whether or not dependencies are handled. Can be further changed
6841 # in handle_options.
6842 $use_dependencies = $cmdline_use_dependencies;
6845 $local_maint_charset = $maint_charset;
6847 # All yacc and lex source filenames for this directory. Use
6848 # filenames instead of raw count so that multiple instances are
6849 # counted correctly (eg one yacc file can appear in multiple
6850 # programs without harm).
6854 # This is a list of all targets to run during "make dist".
6857 # Keys in this hash are the basenames of files which must depend
6859 %de_ansi_files = ();
6861 # This maps the source extension of a suffix rule to its
6862 # corresponding output extension.
6865 # This is the name of the recursive `all' target to use.
6866 $all_target = 'all-recursive';
6868 # This keeps track of which extensions we've seen (that we care
6870 %extension_seen = ();
6872 # This is random scratch space for the language finish functions.
6873 # Don't randomly overwrite it; examine other uses of keys first.
6874 %language_scratch = ();
6876 # We keep track of which objects need special (per-executable)
6877 # handling on a per-language basis.
6878 %lang_specific_files = ();
6882 ################################################################
6884 # Return contents of a file from $am_dir, automatically skipping
6885 # macros or rules which are already known. Runs command on each line
6886 # as it is read; this command can modify $_.
6887 sub file_contents_with_transform
6889 local ($command, $basename) = @_;
6890 local ($file) = $am_dir . '/' . $basename . '.am';
6892 if ($command ne '' && substr ($command, -1) ne ';')
6894 die "automake: programming error in file_contents_with_transform: $command\n";
6897 open (FC_FILE, $file)
6898 || die "automake: installation error: cannot open \`$file'\n";
6900 # print "automake: reading $file\n" if $verbose;
6902 local ($was_rule) = 0;
6903 local ($result_vars) = '';
6904 local ($result_rules) = '';
6905 local ($comment) = '';
6906 local ($spacing) = "\n";
6907 local ($skipping) = 0;
6912 $_ =~ s/\@MAINTAINER_MODE_TRUE\@//g
6913 unless $seen_maint_mode;
6915 $had_chars = length ($_) && $_ ne "\n";
6917 # If the transform caused all the characters to go away, then
6918 # ignore the line. Why do this? Because in Perl 4, a "next"
6919 # inside of an eval doesn't affect a loop outside the eval.
6920 # So we can't pass in a "transform" that uses next. We used
6921 # to do this. "Empty" also means consisting of a single
6923 next if $had_chars && ($_ eq '' || $_ eq "\n");
6925 if (/$IGNORE_PATTERN/o)
6927 # Merely delete comments beginning with two hashes.
6929 elsif (/$WHITE_PATTERN/o)
6931 # Stick a single white line before the incoming macro or rule.
6933 &am_line_error ($., "blank line following trailing backslash")
6936 elsif (/$COMMENT_PATTERN/o)
6938 # Stick comments before the incoming macro or rule.
6939 $comment .= $spacing . $_;
6941 &am_line_error ($., "comment following trailing backslash")
6948 $result_rules .= $_ if ! $skipping;
6952 $result_vars .= $_ if ! $skipping;
6956 elsif (/$RULE_PATTERN/o)
6960 $skipping = defined $contents{$1};
6961 $result_rules .= $comment . $spacing . $_ if ! $skipping;
6962 $comment = $spacing = '';
6965 elsif (/$MACRO_PATTERN/o)
6967 # Found a variable reference.
6969 $skipping = defined $contents{$1};
6970 $result_vars .= $comment . $spacing . $_ if ! $skipping;
6971 $comment = $spacing = '';
6973 print STDERR "automake: programming error: .am macro \`$1' with trailing backslash\n"
6975 $am_var_defs{$1} = $3;
6979 # This isn't an error; it is probably a continued rule.
6980 # In fact, this is what we assume.
6982 $result_rules .= $comment . $spacing . $_ if ! $skipping;
6983 $comment = $spacing = '';
6989 return $result_vars . $result_rules . $comment;
6992 # Like file_contents_with_transform, but no transform.
6995 return &file_contents_with_transform ('', @_);
6998 # Find all variable prefixes that are used for install directories. A
6999 # prefix `zar' qualifies iff:
7000 # * `zardir' is a variable.
7001 # * `zar_PRIMARY' is a variable.
7002 sub am_primary_prefixes
7004 local ($primary, $can_dist, @prefixes) = @_;
7006 local (%valid, $varname);
7007 grep ($valid{$_} = 0, @prefixes);
7008 $valid{'EXTRA'} = 0;
7009 foreach $varname (keys %contents)
7011 if ($varname =~ /^(dist_|nodist_)?(.*)_$primary$/)
7013 if (($1 ne '' && ! $can_dist)
7014 || (! defined $valid{$2}
7015 && ! &variable_defined ($2 . 'dir')
7016 # Note that a configure variable is always
7017 # legitimate. It is natural to name such
7018 # variables after the primary, so we explicitly
7020 && ! defined $configure_vars{$varname}))
7022 &am_line_error ($varname, "invalid variable \`$varname'");
7026 # Ensure all extended prefixes are actually used.
7027 $valid{$1 . $2} = 1;
7035 # Handle `where_HOW' variable magic. Does all lookups, generates
7036 # install code, and possibly generates code to define the primary
7037 # variable. The first argument is the name of the .am file to munge,
7038 # the second argument is the primary variable (eg HEADERS), and all
7039 # subsequent arguments are possible installation locations. Returns
7040 # list of all values of all _HOW targets.
7042 # FIXME: this should be rewritten to be cleaner. It should be broken
7043 # up into multiple functions.
7045 # Usage is: am_install_var (OPTION..., file, HOW, where...)
7050 local ($do_clean) = 0;
7051 local ($do_require) = 1;
7052 local ($can_dist) = 0;
7053 local ($default_dist) = 0;
7056 if (defined $configure_vars{'LIBTOOL'})
7058 # Transform '@LIBTOOL ...@' to '$(LIBTOOL) ...'
7059 $ltxform = 's/\@LIBTOOL([^\@]*)\@/\$(LIBTOOL) $1/;';
7063 # Delete '@LIBTOOL ...@'
7064 $ltxform = 's/\@LIBTOOL([^\@]*)\@//;';
7070 $cygxform = 's/\@EXEEXT\@//g;';
7074 $cygxform = 's/\@EXEEXT\@/\$(EXEEXT)/g;';
7079 if ($args[0] eq '-clean')
7083 elsif ($args[0] eq '-noextra')
7087 elsif ($args[0] eq '-candist')
7091 elsif ($args[0] eq '-defaultdist')
7096 elsif ($args[0] !~ /^-/)
7103 local ($file, $primary, @prefixes) = @args;
7106 local (@result) = ();
7108 # Now that configure substitutions are allowed in where_HOW
7109 # variables, it is an error to actually define the primary. We
7110 # allow `JAVA', as it is customarily used to mean the Java
7111 # interpreter. This is but one of several Java hacks.
7112 &am_line_error ($primary, "\`$primary' is an anachronism")
7113 if &variable_defined ($primary) && $primary ne 'JAVA';
7116 # Look for misspellings. It is an error to have a variable ending
7117 # in a "reserved" suffix whose prefix is unknown, eg
7118 # "bni_PROGRAMS". However, unusual prefixes are allowed if a
7119 # variable of the same name (with "dir" appended) exists. For
7120 # instance, if the variable "zardir" is defined, then
7121 # "zar_PROGRAMS" becomes valid. This is to provide a little extra
7122 # flexibility in those cases which need it.
7123 local (%valid) = &am_primary_prefixes ($primary, $can_dist, @prefixes);
7125 # If a primary includes a configure substitution, then the EXTRA_
7126 # form is required. Otherwise we can't properly do our job.
7127 local ($require_extra);
7128 local ($warned_about_extra) = 0;
7130 local ($clean_file) = $file . '-clean';
7133 local ($nodir_name);
7134 foreach $X (sort keys %valid)
7136 $one_name = $X . '_' . $primary;
7137 if (&variable_defined ($one_name))
7139 # If files should be distributed, do so.
7142 if (($default_dist && $one_name !~ /^nodist_/)
7143 || (! $default_dist && $one_name =~ /^dist_/))
7145 &push_dist_common ('$(' . $one_name . ')');
7147 ($nodir_name = $X) =~ s/^(dist|nodist)_//;
7154 # Append actual contents of where_PRIMARY variable to
7157 foreach $rcurs (&variable_value_as_list ($one_name, 'all'))
7159 # Skip configure substitutions. Possibly bogus.
7160 if ($rcurs =~ /^\@.*\@$/)
7164 if (! $warned_about_extra)
7166 $warned_about_extra = 1;
7168 &am_line_error ($one_name,
7169 "\`$one_name' contains configure substitution, but shouldn't");
7173 # Check here to make sure variables defined in
7174 # configure.in do not imply that EXTRA_PRIMARY
7176 elsif (! defined $configure_vars{$one_name})
7178 $require_extra = $one_name
7185 push (@result, $rcurs);
7188 # "EXTRA" shouldn't be used when generating clean targets,
7189 # all, or install targets.
7192 # We used to warn if EXTRA_FOO was defined uselessly,
7193 # but this was annoying.
7197 # A blatant hack: we rewrite each _PROGRAMS primary to
7198 # include EXEEXT when in Cygwin32 mode.
7199 if ($seen_exeext && $primary eq 'PROGRAMS')
7201 local (@conds) = &variable_conditions ($one_name);
7202 local (@one_binlist);
7204 # FIXME: this definitely loses aesthetically; it
7205 # redefines $ONE_NAME. Instead we should arrange for
7206 # variable definitions to be output later, instead of
7212 foreach $rcurs (&variable_value_as_list ($one_name, ''))
7214 if ($rcurs =~ /\./ || $rcurs =~ /^\@.*\@$/)
7216 push (@one_binlist, $rcurs);
7220 push (@one_binlist, $rcurs . '$(EXEEXT)');
7224 delete $contents{$one_name};
7225 &define_pretty_variable ($one_name, '', @one_binlist);
7230 local ($condvals) = '';
7231 foreach $cond (@conds)
7234 local (@condval) = &variable_value_as_list ($one_name,
7236 foreach $rcurs (@condval)
7238 if ($rcurs =~ /\./ || $rcurs =~ /^\@.*\@$/)
7240 push (@one_binlist, $rcurs);
7244 push (@one_binlist, $rcurs . '$(EXEEXT)');
7248 push (@condvals, $cond);
7249 push (@condvals, join (' ', @one_binlist));
7252 delete $contents{$one_name};
7256 $cond = shift (@condvals);
7257 local (@val) = split (' ', shift (@condvals));
7258 &define_pretty_variable ($one_name, $cond, @val);
7266 &file_contents_with_transform ('s/\@DIR\@/' . $X . '/go;'
7270 push (@clean, $X . $primary);
7271 &push_phony_cleaners ($X . $primary);
7276 push (@check, '$(' . $one_name . ')');
7280 push (@used, '$(' . $one_name . ')');
7282 if ($X eq 'noinst' || $X eq 'check')
7284 # Objects which don't get installed by default.
7289 &file_contents_with_transform ('s/\@DIR\@/' . $X . '/g;'
7290 . 's/\@NDIR\@/' . $nodir_name . '/go;'
7291 . $ltxform . $cygxform,
7294 push (@uninstall, 'uninstall-' . $X . $primary);
7295 push (@phony, 'uninstall-' . $X . $primary);
7296 push (@installdirs, '$(DESTDIR)$(' . $X . 'dir)');
7297 if (defined $exec_dir_p{$X} ? $exec_dir_p{$X} : ($X =~ /exec/))
7299 push (@install_exec, 'install-' . $X . $primary);
7300 push (@phony, 'install-' . $X . $primary);
7304 push (@install_data, 'install-' . $X . $primary);
7305 push (@phony, 'install-' . $X . $primary);
7310 # The JAVA variable is used as the name of the Java interpreter.
7311 if (@used && $primary ne 'JAVA')
7314 &define_pretty_variable ($primary, '', @used);
7315 $output_vars .= "\n";
7318 if ($require_extra && ! &variable_defined ('EXTRA_' . $primary))
7320 &am_line_error ($require_extra,
7321 "\`$require_extra' contains configure substitution, but \`EXTRA_$primary' not defined");
7324 # Push here because PRIMARY might be configure time determined.
7325 push (@all, '$(' . $primary . ')')
7326 if @used && $primary ne 'JAVA';
7328 # Make the result unique. This lets the user use conditionals in
7329 # a natural way, but still lets us program lazily -- we don't have
7330 # to worry about handling a particular object more than once.
7331 local (%uniquify) = ();
7332 grep ($uniquify{$_} = 1, @result);
7333 return sort keys %uniquify;
7337 ################################################################
7339 # This variable is local to the "require file" set of functions.
7340 @require_file_paths = ();
7342 # Verify that the file must exist in the current directory. Usage:
7343 # require_file (isconfigure, line_number, strictness, file) strictness
7344 # is the strictness level at which this file becomes required. Must
7345 # set require_file_paths before calling this function.
7346 # require_file_paths is set to hold a single directory (the one in
7347 # which the first file was found) before return.
7348 sub require_file_internal
7350 local ($is_configure, $line, $mystrict, @files) = @_;
7351 local ($file, $fullfile);
7352 local ($found_it, $errfile, $errdir);
7355 foreach $file (@files)
7358 foreach $dir (@require_file_paths)
7362 $fullfile = $relative_dir . "/" . $file;
7363 $errdir = $relative_dir unless $errdir;
7367 $fullfile = $dir . "/" . $file;
7368 $errdir = $dir unless $errdir;
7371 # Use different name for "error filename". Otherwise on
7372 # an error the bad file will be reported as eg
7373 # `../../install-sh' when using the default
7375 $errfile = $errdir . '/' . $file;
7380 # FIXME: Once again, special-case `.'.
7381 &push_dist_common ($file)
7382 if $dir eq $relative_dir || $dir eq '.';
7390 # Prune the path list.
7391 @require_file_paths = $save_dir;
7395 if ($strictness >= $mystrict)
7397 local ($trailer) = '';
7398 local ($suppress) = 0;
7400 # Only install missing files according to our desired
7402 local ($message) = "required file \`$errfile' not found";
7407 # Maybe run libtoolize.
7409 && grep ($_ eq $file, @libtoolize_files)
7410 && system ('libtoolize', '--automake'))
7412 $message = "installing \`$errfile'";
7414 $trailer = "; cannot run \`libtoolize': $!";
7416 elsif (-f ($am_dir . '/' . $file))
7418 # Install the missing file. Symlink if we
7419 # can, copy if we must. Note: delete the file
7420 # first, in case it is a dangling symlink.
7421 $message = "installing \`$errfile'";
7422 # Windows Perl will hang if we try to delete a
7423 # file that doesn't exist.
7424 unlink ($errfile) if -f $errfile;
7425 if ($symlink_exists && ! $copy_missing)
7427 if (! symlink ($am_dir . '/' . $file, $errfile))
7430 $trailer = "; error while making link: $!\n";
7433 elsif (system ('cp', $am_dir . '/' . $file, $errfile))
7436 $trailer = "\n error while copying\n";
7441 local ($save) = $exit_status;
7444 # FIXME: allow actual file to be specified.
7445 &am_conf_line_error ('configure.in', $line,
7446 "$message$trailer");
7450 &am_line_error ($line, "$message$trailer");
7452 $exit_status = $save if $suppress;
7458 # Like require_file_with_line, but error messages refer to
7459 # configure.in, not the current Makefile.am.
7460 sub require_file_with_conf_line
7462 @require_file_paths = '.';
7463 &require_file_internal (1, @_);
7466 sub require_file_with_line
7468 @require_file_paths = '.';
7469 &require_file_internal (0, @_);
7474 @require_file_paths = '.';
7475 &require_file_internal (0, '', @_);
7478 # Require a file that is also required by Autoconf. Looks in
7479 # configuration path, as specified by AC_CONFIG_AUX_DIR.
7480 sub require_config_file
7482 @require_file_paths = @config_aux_path;
7483 &require_file_internal (1, '', @_);
7484 local ($dir) = $require_file_paths[0];
7485 @config_aux_path = @require_file_paths;
7488 $config_aux_dir = '.';
7492 $config_aux_dir = '$(top_srcdir)/' . $dir;
7496 # Assumes that the line number is in Makefile.am.
7497 sub require_conf_file_with_line
7499 @require_file_paths = @config_aux_path;
7500 &require_file_internal (0, @_);
7501 local ($dir) = $require_file_paths[0];
7502 @config_aux_path = @require_file_paths;
7505 $config_aux_dir = '.';
7509 $config_aux_dir = '$(top_srcdir)/' . $dir;
7513 # Assumes that the line number is in configure.in.
7514 sub require_conf_file_with_conf_line
7516 @require_file_paths = @config_aux_path;
7517 &require_file_internal (1, @_);
7518 local ($dir) = $require_file_paths[0];
7519 @config_aux_path = @require_file_paths;
7522 $config_aux_dir = '.';
7526 $config_aux_dir = '$(top_srcdir)/' . $dir;
7530 ################################################################
7532 # Push a list of files onto dist_common.
7533 sub push_dist_common
7535 local (@files) = @_;
7538 foreach $file (@files)
7540 $dist_common{$file} = 1;
7544 # Push a list of clean targets onto phony.
7545 sub push_phony_cleaners
7549 foreach $target ('mostly', 'dist', '', 'maintainer-')
7551 push (@phony, $target . 'clean-' . $base);
7558 $strictness_name = $_[0];
7559 if ($strictness_name eq 'gnu')
7563 elsif ($strictness_name eq 'gnits')
7565 $strictness = $GNITS;
7567 elsif ($strictness_name eq 'foreign')
7569 $strictness = $FOREIGN;
7573 die "automake: level \`$strictness_name' not recognized\n";
7578 ################################################################
7580 # Return directory name of file.
7586 ($sub = $file) =~ s,/+[^/]+$,,g;
7587 $sub = '.' if $sub eq $file;
7591 # Return file name of a file.
7597 ($sub = $file) =~s,^.*/+,,g;
7601 # Ensure a file exists.
7606 open (TOUCH, ">> $file");
7610 # Glob something. Do this to avoid indentation screwups everywhere we
7611 # want to glob. Gross!
7618 ################################################################
7620 # Print an error message and set exit status.
7623 warn "automake: ${am_file}.am: ", join (' ', @_), "\n";
7629 local ($symbol, @args) = @_;
7631 if ($symbol && "$symbol" ne '-1')
7633 local ($file) = "${am_file}.am";
7635 if ($symbol =~ /^\d+$/)
7637 # SYMBOL is a line number, so just add the colon.
7638 $file .= ':' . $symbol;
7640 elsif (defined $content_lines{$symbol})
7642 # SYMBOL is a variable defined in Makefile.am, so add the
7643 # line number we saved from there.
7644 $file .= ':' . $content_lines{$symbol};
7646 elsif (defined $configure_vars{$symbol})
7648 # SYMBOL is a variable defined in configure.in, so add the
7649 # appropriate line number.
7650 $file = $configure_vars{$symbol};
7654 # Couldn't find the line number.
7656 warn $file, ": ", join (' ', @args), "\n";
7665 # Like am_error, but while scanning configure.in.
7668 # FIXME: can run in subdirs.
7669 warn "automake: configure.in: ", join (' ', @_), "\n";
7673 # Error message with line number referring to configure.in.
7674 sub am_conf_line_error
7676 local ($file, $line, @args) = @_;
7680 warn "$file: $line: ", join (' ', @args), "\n";
7685 &am_conf_error (@args);
7689 # Warning message with line number referring to configure.in.
7690 # Does not affect exit_status
7691 sub am_conf_line_warning
7693 local ($saved_exit_status) = $exit_status;
7694 &am_conf_line_error (@_);
7695 $exit_status = $saved_exit_status;
7698 # Tell user where our aclocal.m4 is, but only once.
7699 sub keyed_aclocal_warning
7702 warn "automake: macro \`$key' can be generated by \`aclocal'\n";
7705 # Print usage information.
7708 print "Usage: automake [OPTION] ... [Makefile]...\n\n";
7709 print "Generate Makefile.in for autoconf from Makefile.am\n";
7711 print "\nFiles which are automatically distributed, if found:\n";
7712 $~ = "USAGE_FORMAT";
7713 local ($last, $iter, @lcomm);
7715 foreach $iter (sort ((@common_files, @common_sometimes)))
7717 push (@lcomm, $iter) unless $iter eq $last;
7721 local ($one, $two, $three, $four, $i, $max);
7722 $max = int (($#lcomm + 1) / 4);
7724 for ($i = 0; $i < $max; ++$i)
7727 $two = $lcomm[$max + $i];
7728 $three = $lcomm[2 * $max + $i];
7729 $four = $lcomm[3 * $max + $i];
7733 local ($mod) = ($#lcomm + 1) % 4;
7736 $one = $lcomm[$max];
7737 $two = ($mod > 1) ? $lcomm[2 * $max] : '';
7738 $three = ($mod > 2) ? $lcomm[3 * $max] : '';
7739 $four = ($mod > 3) ? $lcomm[4 * $max] : '';
7743 print "\nReport bugs to <bug-automake\@gnu.org>.\n";
7748 format USAGE_FORMAT =
7749 @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<
7750 $one, $two, $three, $four