* automake.in (read_am_file): Removed debugging code.
[automake.git] / automake.in
blobd8aa76c1858a87b0e1ed05fcfdf9fbf0d4265833
1 #!@PERL@ -w
2 # -*- perl -*-
3 # @configure_input@
5 eval 'exec @PERL@ -S $0 ${1+"$@"}'
6     if 0;
8 # automake - create Makefile.in from Makefile.am
9 # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
10 # Free Software Foundation, Inc.
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2, or (at your option)
15 # any later version.
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
25 # 02111-1307, USA.
27 # Originally written by David Mackenzie <djm@gnu.ai.mit.edu>.
28 # Perl reimplementation by Tom Tromey <tromey@cygnus.com>.
30 package Language;
32 BEGIN
34   my $prefix = "@prefix@";
35   my $perllibdir = $ENV{'perllibdir'} || "@datadir@/@PACKAGE@";
36   unshift @INC, "$perllibdir";
39 use Automake::Struct;
40 struct (# Short name of the language (c, f77...).
41         'name' => '$',
42         # Nice name of the language (C, Fortran 77...).
43         'Name' => '$',
45         # List of configure variables which must be defined.
46         'config_vars' => '@',
48         'ansi'    => '$',
49         # `pure' is `1' or `'.  A `pure' language is one where, if
50         # all the files in a directory are of that language, then we
51         # do not require the C compiler or any code to call it.
52         'pure'   => '$',
54         'autodep' => '$',
56         # Name of the compiling variable (COMPILE).
57         'compiler'  => '$',
58         # Content of the compiling variable.
59         'compile'  => '$',
60         # Flag to require compilation without linking (-c).
61         'compile_flag' => '$',
62         'derived_autodep' => '$',
63         'extensions'      => '@',
64         'flags' => '$',
66         # Name of the linking variable (LINK).
67         'linker' => '$',
68         # Content of the linking variable.
69         'link' => '$',
71         # Name of the linker variable (LD).
72         'lder' => '$',
73         # Content of the linker variable ($(CC)).
74         'ld' => '$',
76         # Flag to specify the output file (-o).
77         'output_flag' => '$',
78         '_finish' => '$');
81 sub finish ($)
83   my ($self) = @_;
84   if (defined $self->_finish)
85     {
86       &{$self->_finish} ();
87     }
91 package Automake;
93 require 5.005;
94 use strict 'vars', 'subs';
95 use File::Basename;
96 use IO::File;
98 my $me = basename ($0);
101 ## ----------- ##
102 ## Constants.  ##
103 ## ----------- ##
105 # Parameters set by configure.  Not to be changed.  NOTE: assign
106 # VERSION as string so that eg version 0.30 will print correctly.
107 my $VERSION = "@VERSION@";
108 my $PACKAGE = "@PACKAGE@";
109 my $prefix = "@prefix@";
110 my $am_dir = "@datadir@/@PACKAGE@/am";
111 my $pkgdata_dir = "@datadir@/@PACKAGE@";
113 # String constants.
114 my $IGNORE_PATTERN = '^##([^#\n].*)?\n';
115 my $WHITE_PATTERN = '^\s*$';
116 my $COMMENT_PATTERN = '^#';
117 my $TARGET_PATTERN='[$a-zA-Z_.][-.a-zA-Z0-9_(){}/$]*';
118 # A rule has three parts: a list of targets, a list of dependencies,
119 # and optionally actions.
120 my $RULE_PATTERN =
121   "^($TARGET_PATTERN(?:(?:\\\\\n|\\s)+$TARGET_PATTERN)*) *:([^=].*|)\$";
123 my $SUFFIX_RULE_PATTERN = '^\.([a-zA-Z0-9]+)\.([a-zA-Z0-9]+)$';
124 # Only recognize leading spaces, not leading tabs.  If we recognize
125 # leading tabs here then we need to make the reader smarter, because
126 # otherwise it will think rules like `foo=bar; \' are errors.
127 my $MACRO_PATTERN = '^[A-Za-z0-9_@]+$';
128 my $ASSIGNMENT_PATTERN = '^ *([^ \t]*)\s*([:+]?)=\s*(.*)$';
129 # This pattern recognizes a Gnits version id and sets $1 if the
130 # release is an alpha release.  We also allow a suffix which can be
131 # used to extend the version number with a "fork" identifier.
132 my $GNITS_VERSION_PATTERN = '\d+\.\d+([a-z]|\.\d+)?(-[A-Za-z0-9]+)?';
133 my $IF_PATTERN =          '^if\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*)\s*(?:#.*)?$';
134 my $ELSE_PATTERN =   '^else(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?$';
135 my $ENDIF_PATTERN = '^endif(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?$';
136 my $PATH_PATTERN='(\w|[/.-])+';
137 # This will pass through anything not of the prescribed form.
138 my $INCLUDE_PATTERN = ('^include\s+'
139                        . '((\$\(top_srcdir\)/' . $PATH_PATTERN . ')'
140                        . '|(\$\(srcdir\)/' . $PATH_PATTERN . ')'
141                        . '|([^/\$]' . $PATH_PATTERN. '))\s*(#.*)?$');
143 # Some regular expressions.  One reason to put them here is that it
144 # makes indentation work better in Emacs.
145 my $AC_CONFIG_AUX_DIR_PATTERN = 'AC_CONFIG_AUX_DIR\(([^)]+)\)';
146 my $AM_INIT_AUTOMAKE_PATTERN = 'AM_INIT_AUTOMAKE\([^,]*,([^,)]+)[,)]';
147 my $AM_PACKAGE_VERSION_PATTERN = '^\s*\[?([^]\s]+)\]?\s*$';
148 # Note that there is no AC_PATH_TOOL.  But we don't really care.
149 my $AC_CHECK_PATTERN = 'AC_(CHECK|PATH)_(PROG|PROGS|TOOL)\(\[?(\w+)';
150 my $AM_MISSING_PATTERN = 'AM_MISSING_PROG\(\[?(\w+)';
151 # Just check for alphanumeric in AC_SUBST.  If you do AC_SUBST(5),
152 # then too bad.
153 my $AC_SUBST_PATTERN = 'AC_SUBST\(\[?(\w+)';
154 my $AM_CONDITIONAL_PATTERN = 'AM_CONDITIONAL\(\[?(\w+)';
156 # Constants to define the "strictness" level.
157 my $FOREIGN = 0;
158 my $GNU = 1;
159 my $GNITS = 2;
161 # Values for AC_CANONICAL_*
162 my $AC_CANONICAL_HOST = 1;
163 my $AC_CANONICAL_SYSTEM = 2;
165 # Values indicating when something should be cleaned.  Right now we
166 # only need to handle `mostly'- and `dist'-clean; add more as
167 # required.
168 my $MOSTLY_CLEAN = 0;
169 my $DIST_CLEAN = 1;
171 # Files installed by libtoolize.
172 my @libtoolize_files = ('ltmain.sh', 'config.guess', 'config.sub');
173 # ltconfig appears here for compatibility with old versions of libtool.
174 my @libtoolize_sometimes = ('ltconfig', 'ltcf-c.sh', 'ltcf-cxx.sh',
175                             'ltcf-gcj.sh');
177 # Commonly found files we look for and automatically include in
178 # DISTFILES.
179 my @common_files =
180   (
181    'README', 'THANKS', 'TODO', 'NEWS', 'COPYING', 'COPYING.LIB',
182    'INSTALL', 'ABOUT-NLS', 'ChangeLog', 'configure.ac',
183    'configure.in', 'configure', 'config.guess', 'config.sub',
184    'AUTHORS', 'BACKLOG', 'ABOUT-GNU', 'libversion.in',
185    'mdate-sh', 'mkinstalldirs', 'install-sh', 'texinfo.tex',
186    'ansi2knr.c', 'ansi2knr.1', 'elisp-comp',
187    # ltconfig appears here for compatibility with old versions
188    # of libtool.
189    'ylwrap', 'acinclude.m4', @libtoolize_files, @libtoolize_sometimes,
190    'missing', 'depcomp', 'compile', 'py-compile'
191   );
193 # Commonly used files we auto-include, but only sometimes.
194 my @common_sometimes =
195   (
196    'aclocal.m4', 'acconfig.h', 'config.h.top',
197    'config.h.bot', 'stamp-h.in', 'stamp-vti'
198   );
200 # Copyright on generated Makefile.ins.
201 my $gen_copyright = "\
202 # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
203 # Free Software Foundation, Inc.
204 # This Makefile.in is free software; the Free Software Foundation
205 # gives unlimited permission to copy and/or distribute it,
206 # with or without modifications, as long as this notice is preserved.
208 # This program is distributed in the hope that it will be useful,
209 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
210 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
211 # PARTICULAR PURPOSE.
214 # These constants are returned by lang_*_rewrite functions.
215 # LANG_SUBDIR means that the resulting object file should be in a
216 # subdir if the source file is.  In this case the file name cannot
217 # have `..' components.
218 my $LANG_IGNORE = 0;
219 my $LANG_PROCESS = 1;
220 my $LANG_SUBDIR = 2;
222 # Directories installed during 'install-exec' phase.
223 my %exec_dir_p =
224   (
225    'bin'        => 1,
226    'sbin'       => 1,
227    'libexec'    => 1,
228    'data'       => 0,
229    'sysconf'    => 1,
230    'localstate' => 1,
231    'lib'        => 1,
232    'info'       => 0,
233    'man'        => 0,
234    'include'    => 0,
235    'oldinclude' => 0,
236    'pkgdata'    => 0,
237    'pkglib'     => 1,
238    'pkginclude' => 0
239   );
241 # Map from obsolete macros to hints for new macros.
242 # If you change this, change the corresponding list in aclocal.in.
243 # FIXME: should just put this into a single file.
244 my %obsolete_macros =
245     (
246      'AC_FEATURE_CTYPE'         => "use `AC_HEADER_STDC'",
247      'AC_FEATURE_ERRNO'         => "add `strerror' to `AC_REPLACE_FUNCS(...)'",
248      'AC_FEATURE_EXIT'          => '',
249      'AC_SYSTEM_HEADER'         => '',
251      # Note that we do not handle this one, because it is still run
252      # from AM_CONFIG_HEADER.  So we deal with it specially in
253      # &scan_autoconf_files.
254      # 'AC_CONFIG_HEADER'       => "use `AM_CONFIG_HEADER'",
256      'fp_C_PROTOTYPES'          => "use `AM_C_PROTOTYPES'",
257      'fp_PROG_CC_STDC'          => "use `AM_PROG_CC_STDC'",
258      'fp_PROG_INSTALL'          => "use `AC_PROG_INSTALL'",
259      'fp_WITH_DMALLOC'          => "use `AM_WITH_DMALLOC'",
260      'fp_WITH_REGEX'            => "use `AM_WITH_REGEX'",
261      'gm_PROG_LIBTOOL'          => "use `AM_PROG_LIBTOOL'",
262      'jm_MAINTAINER_MODE'       => "use `AM_MAINTAINER_MODE'",
263      'md_TYPE_PTRDIFF_T'        => "use `AM_TYPE_PTRDIFF_T'",
264      'ud_PATH_LISPDIR'          => "use `AM_PATH_LISPDIR'",
265      'ud_GNU_GETTEXT'           => "use `AM_GNU_GETTEXT'",
267      # Now part of autoconf proper, under a different name.
268      'AM_FUNC_FNMATCH'          => "use `AC_FUNC_FNMATCH'",
269      'fp_FUNC_FNMATCH'          => "use `AC_FUNC_FNMATCH'",
270      'AM_SANITY_CHECK_CC'       => "automatically done by `AC_PROG_CC'",
271      'AM_PROG_INSTALL'          => "use `AC_PROG_INSTALL'",
272      'AM_EXEEXT'                => "use `AC_EXEEXT'",
273      'AM_CYGWIN32'              => "use `AC_CYGWIN'",
274      'AM_MINGW32'               => "use `AC_MINGW32'",
275      'AM_FUNC_MKTIME'           => "use `AC_FUNC_MKTIME'",
277 # These aren't quite obsolete.
278 #      'md_PATH_PROG',
279      );
281 # Regexp to match the above macros.
282 my $obsolete_rx = '(\b' . join ('\b|\b', keys %obsolete_macros) . '\b)';
286 ## ---------------------------------- ##
287 ## Variables related to the options.  ##
288 ## ---------------------------------- ##
290 # TRUE if we should always generate Makefile.in.
291 my $force_generation = 1;
293 # Strictness level as set on command line.
294 my $default_strictness = $GNU;
296 # Name of strictness level, as set on command line.
297 my $default_strictness_name = 'gnu';
299 # This is TRUE if automatic dependency generation code should be
300 # included in generated Makefile.in.
301 my $cmdline_use_dependencies = 1;
303 # TRUE if in verbose mode.
304 my $verbose = 0;
306 # This holds our (eventual) exit status.  We don't actually exit until
307 # we have processed all input files.
308 my $exit_status = 0;
310 # From the Perl manual.
311 my $symlink_exists = (eval 'symlink ("", "");', $@ eq '');
313 # TRUE if missing standard files should be installed.
314 my $add_missing = 0;
316 # TRUE if we should copy missing files; otherwise symlink if possible.
317 my $copy_missing = 0;
319 # TRUE if we should always update files that we know about.
320 my $force_missing = 0;
323 ## ---------------------------------------- ##
324 ## Variables filled during files scanning.  ##
325 ## ---------------------------------------- ##
327 # Name of the top autoconf input: `configure.ac' or `configure.in'.
328 my $configure_ac = '';
330 # Files found by scanning configure.ac for LIBOBJS.
331 my %libsources = ();
333 # True if AM_C_PROTOTYPES appears in configure.ac.
334 my $am_c_prototypes = 0;
336 # Names used in AC_CONFIG_HEADER call.  @config_fullnames holds the
337 # name which appears in AC_CONFIG_HEADER, colon and all.
338 # @config_names holds the file names.  @config_headers holds the '.in'
339 # files.  Ordinarily these are similar, but they can be different if
340 # the weird "NAME:FILE" syntax is used.
341 my @config_fullnames = ();
342 my @config_names = ();
343 my @config_headers = ();
344 # Line number at which AC_CONFIG_HEADER appears in configure.ac.
345 my $config_header_line = 0;
347 # Directory where output files go.  Actually, output files are
348 # relative to this directory.
349 my $output_directory = '.';
351 # List of Makefile.am's to process, and their corresponding outputs.
352 my @input_files = ();
353 my %output_files = ();
355 # Complete list of Makefile.am's that exist.
356 my @configure_input_files = ();
358 # List of files in AC_OUTPUT without Makefile.am, and their outputs.
359 my @other_input_files = ();
360 # Line number at which AC_OUTPUT seen.
361 my $ac_output_line = 0;
363 # List of directories to search for configure-required files.  This
364 # can be set by AC_CONFIG_AUX_DIR.
365 my @config_aux_path = ('.', '..', '../..');
366 my $config_aux_dir = '';
368 # Whether AM_GNU_GETTEXT has been seen in configure.ac.
369 my $seen_gettext = 0;
370 # Line number at which AM_GNU_GETTEXT seen.
371 my $ac_gettext_line = 0;
373 # Whether ALL_LINGUAS has been seen.
374 my $seen_linguas = '';
375 # The actual text.
376 my $all_linguas = '';
377 # Line number at which it appears.
378 my $all_linguas_line = 0;
380 # TRUE if AC_DECL_YYTEXT was seen.
381 my $seen_decl_yytext = 0;
383 # TRUE if we've seen AC_CANONICAL_(HOST|SYSTEM).  The presence of
384 # AC_CHECK_TOOL also sets this.
385 my $seen_canonical = 0;
387 # TRUE if we've seen AC_PROG_LIBTOOL.
388 my $seen_libtool = 0;
389 my $libtool_line = 0;
391 # TRUE if we've seen AM_MAINTAINER_MODE.
392 my $seen_maint_mode = 0;
394 # Actual version we've seen.
395 my $package_version = '';
397 # Line number where we saw version definition.
398 my $package_version_line = 0;
400 # TRUE if we've seen AM_PATH_LISPDIR.
401 my $seen_lispdir = 0;
403 # TRUE if we've seen AM_CHECK_PYTHON.
404 my $seen_pythondir = 0;
406 # TRUE if we've seen AC_EXEEXT.
407 my $seen_exeext = 0;
409 # TRUE if we've seen AC_OBJEXT.
410 my $seen_objext = 0;
412 # TRUE if we've seen AC_ENABLE_MULTILIB.
413 my $seen_multilib = 0;
415 # TRUE if we've seen AM_PROG_CC_C_O
416 my $seen_cc_c_o = 0;
418 # TRUE if we've seen AM_INIT_AUTOMAKE.
419 my $seen_init_automake = 0;
421 # Hash table of discovered configure substitutions.  Keys are names,
422 # values are `FILE:LINE' strings which are used by error message
423 # generation.
424 my %configure_vars = ();
426 # This is used to keep track of which variable definitions we are
427 # scanning.  It is only used in certain limited ways, but it has to be
428 # global.  It is declared just for documentation purposes.
429 my %vars_scanned = ();
431 # Charsets used by maintainer and in distribution.  MAINT_CHARSET is
432 # handled in a funny way: if seen in the top-level Makefile.am, it is
433 # used for every directory which does not specify a different value.
434 # The rationale here is that some directories (eg gettext) might be
435 # distributions of other packages, and thus require their own charset
436 # info.  However, the DIST_CHARSET must be the same for the entire
437 # package; it can only be set at top-level.
438 # FIXME: this yields bugs when rebuilding.  What to do?  Always
439 # read (and sometimes discard) top-level Makefile.am?
440 my $maint_charset = '';
441 my $dist_charset = 'utf8';              # recode doesn't support this yet.
443 # TRUE if --cygnus seen.
444 my $cygnus_mode = 0;
446 # Hash table of AM_CONDITIONAL variables seen in configure.
447 my %configure_cond = ();
449 # This maps extensions onto language names.
450 my %extension_map = ();
452 # List of the DIST_COMMON files we discovered while reading
453 # configure.in
454 my $configure_dist_common = '';
456 # This maps languages names onto objects.
457 my %languages = ();
459 # List of targets we must always output.
460 # FIXME: Complete, and remove falsely required targets.
461 my %required_targets =
462   (
463    'all'          => 1,
464    'dvi'          => 1,
465    'info'         => 1,
466    'install-info' => 1,
467    'install'      => 1,
468    'install-data' => 1,
469    'install-exec' => 1,
470    'uninstall'    => 1,
472    # FIXME: Not required, temporary hacks.
473    # Well, actually they are sort of required: the -recursive
474    # targets will run them anyway...
475    'dvi-am'          => 1,
476    'info-am'         => 1,
477    'install-data-am' => 1,
478    'install-exec-am' => 1,
479    'installcheck-am' => 1,
480    'uninstall-am' => 1,
482    'install-man' => 1,
483   );
487 ################################################################
489 ## ------------------------------------------ ##
490 ## Variables reset by &initialize_per_input.  ##
491 ## ------------------------------------------ ##
493 # Basename and relative dir of the input file.
494 my $am_file_name;
495 my $am_relative_dir;
497 # Same but wrt Makefile.in.
498 my $in_file_name;
499 my $relative_dir;
501 # These two variables are used when generating each Makefile.in.
502 # They hold the Makefile.in until it is ready to be printed.
503 my $output_rules;
504 my $output_vars;
505 my $output_trailer;
506 my $output_all;
507 my $output_header;
509 # Suffixes found during a run.
510 my @suffixes;
512 # Handling the variables.
514 # For a $VAR:
515 # - $var_value{$VAR}{$COND} is its value associated to $COND,
516 # - $var_line{$VAR} is where it has been defined,
517 # - $var_comment{$VAR} are the comments associated to it.
518 # - $var_type{$VAR} is how it has been defined (`', `+', or `:'),
519 # - $var_is_am{$VAR} is true if the variable is owned by Automake.
520 my %var_value;
521 my %var_line;
522 my %var_comment;
523 my %var_type;
524 my %var_is_am;
526 # This holds a 1 if a particular variable was examined.
527 my %content_seen;
529 # This holds the names which are targets.  These also appear in
530 # %contents.
531 my %targets;
533 # Same as %VAR_VALUE, but for targets.
534 my %target_conditional;
536 # This is the conditional stack.
537 my @cond_stack;
539 # This holds the set of included files.
540 my @include_stack;
542 # This holds a list of directories which we must create at `dist'
543 # time.  This is used in some strange scenarios involving weird
544 # AC_OUTPUT commands.
545 my %dist_dirs;
547 # List of dependencies for the obvious targets.
548 my @all;
549 my @check;
550 my @check_tests;
552 # Holds the dependencies of targets which dependencies are factored.
553 # Typically, `.PHONY' will appear in plenty of *.am files, but must
554 # be output once.  Arguably all pure dependencies could be subject
555 # to this factorization, but it is not unpleasant to have paragraphs
556 # in Makefile: keeping related stuff altogether.
557 my %dependencies;
559 # Holds the factored actions.  Tied to %DEPENDENCIES, i.e., filled
560 # only when keys exists in %DEPENDENCIES.
561 my %actions;
563 # A list of files deleted by `maintainer-clean'.
564 my @maintainer_clean_files;
566 # Keys in this hash table are object files or other files in
567 # subdirectories which need to be removed.  This only holds files
568 # which are created by compilations.  The value in the hash indicates
569 # when the file should be removed.
570 my %compile_clean_files;
572 # These are pretty obvious, too.  They are used to define the
573 # SOURCES and OBJECTS variables.
574 my @sources;
575 my @objects;
576 # Sources which go in the distribution.
577 my @dist_sources;
579 # This hash maps object file names onto their corresponding source
580 # file names.  This is used to ensure that each object is created
581 # by a single source file.
582 my %object_map;
584 # This keeps track of the directories for which we've already
585 # created `.dirstamp' code.
586 my %directory_map;
588 # All .P files.
589 my %dep_files;
591 # Strictness levels.
592 my $strictness;
593 my $strictness_name;
595 # Options from AUTOMAKE_OPTIONS.
596 my %options;
598 # Whether or not dependencies are handled.  Can be further changed
599 # in handle_options.
600 my $use_dependencies;
602 # Per Makefile.am.
603 my $local_maint_charset;
605 # All yacc and lex source filenames for this directory.  Use
606 # filenames instead of raw count so that multiple instances are
607 # counted correctly (eg one yacc file can appear in multiple
608 # programs without harm).
609 my %yacc_sources;
610 my %lex_sources;
612 # This is a list of all targets to run during "make dist".
613 my @dist_targets;
615 # Keys in this hash are the basenames of files which must depend
616 # on ansi2knr.
617 my %de_ansi_files;
619 # This maps the source extension of a suffix rule to its
620 # corresponding output extension.
621 my %suffix_rules;
623 # This is the name of the redirect `all' target to use.
624 my $all_target;
626 # This keeps track of which extensions we've seen (that we care
627 # about).
628 my %extension_seen;
630 # This is random scratch space for the language finish functions.
631 # Don't randomly overwrite it; examine other uses of keys first.
632 my %language_scratch;
634 # We keep track of which objects need special (per-executable)
635 # handling on a per-language basis.
636 my %lang_specific_files;
638 # This is set when `handle_dist' has finished.  Once this happens,
639 # we should no longer push on dist_common.
640 my $handle_dist_run;
642 # True if we need `LINK' defined.  This is a hack.
643 my $need_link;
645 # This is the list of such variables to output.
646 # FIXME: Might be useless actually.
647 my @var_list;
649 # Was get_object_extension run?
650 # FIXME: This is a hack. a better switch should be found.
651 my $get_object_extension_was_run;
654 ## --------------------------------- ##
655 ## Forward subroutine declarations.  ##
656 ## --------------------------------- ##
657 sub register_language (%);
658 sub file_contents_internal ($$%);
661 # &initialize_per_input ()
662 # ------------------------
663 # (Re)-Initialize per-Makefile.am variables.
664 sub initialize_per_input ()
666     $am_file_name = '';
667     $am_relative_dir = '';
669     $in_file_name = '';
670     $relative_dir = '';
672     $output_rules = '';
673     $output_vars = '';
674     $output_trailer = '';
675     $output_all = '';
676     $output_header = '';
678     @suffixes = ();
680     %var_value = ();
681     %var_line = ();
682     %var_comment = ();
683     %var_type = ();
684     %var_is_am = ();
686     %content_seen = ();
688     %targets = ();
690     %target_conditional = ();
692     @cond_stack = ();
694     @include_stack = ();
696     $relative_dir = '';
698     $am_relative_dir = '';
700     %dist_dirs = ();
702     @all = ();
703     @check = ();
704     @check_tests = ();
706     %dependencies =
707       (
708        # Texinfoing.
709        'dvi'      => [],
710        'dvi-am'   => [],
711        'info'     => [],
712        'info-am'  => [],
714        # Installing/uninstalling.
715        'install-data-am'      => [],
716        'install-exec-am'      => [],
717        'uninstall-am'         => [],
719        'install-man'          => [],
720        'uninstall-man'        => [],
722        'install-info'         => [],
723        'install-info-am'      => [],
724        'uninstall-info'       => [],
726        'installcheck-am'      => [],
728        # Cleaning.
729        'clean-am'             => [],
730        'mostlyclean-am'       => [],
731        'maintainer-clean-am'  => [],
732        'distclean-am'         => [],
733        'clean'                => [],
734        'mostlyclean'          => [],
735        'maintainer-clean'     => [],
736        'distclean'            => [],
738        # Tarballing.
739        'dist-all'             => [],
741        # Phoning.
742        '.PHONY'               => []
743       );
744     %actions = ();
746     @maintainer_clean_files = ();
748     @sources = ();
749     @objects = ();
750     @dist_sources = ();
752     %object_map = ();
754     %directory_map = ();
756     %dep_files = ();
758     $strictness = $default_strictness;
759     $strictness_name = $default_strictness_name;
761     %options = ();
763     $use_dependencies = $cmdline_use_dependencies;
765     $local_maint_charset = $maint_charset;
767     %yacc_sources = ();
768     %lex_sources = ();
770     @dist_targets = ();
772     %de_ansi_files = ();
774     %suffix_rules = ();
776     $all_target = '';
778     %extension_seen = ();
780     %language_scratch = ();
782     %lang_specific_files = ();
784     $handle_dist_run = 0;
786     $need_link = 0;
788     @var_list = ();
790     $get_object_extension_was_run = 0;
792     %compile_clean_files = ();
796 ################################################################
798 # Initialize our list of languages that are internally supported.
800 # C.
801 register_language ('name' => 'c',
802                    'Name' => 'C',
803                    'config_vars' => ['CC'],
804                    'ansi' => 1,
805                    'autodep' => '',
806                    'flags' => 'CFLAGS',
807                    'compiler' => 'COMPILE',
808                    'compile' => '$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)',
809                    'lder' => 'CCLD',
810                    'ld' => '$(CC)',
811                    'linker' => 'LINK',
812                    'link' => '$(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
813                    'compile_flag' => '-c',
814                    'extensions' => ['c'],
815                    '_finish' => \&lang_c_finish);
817 # C++.
818 register_language ('name' => 'cxx',
819                    'Name' => 'C++',
820                    'config_vars' => ['CXX'],
821                    'linker' => 'CXXLINK',
822                    'link' => '$(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
823                    'autodep' => 'CXX',
824                    'flags' => 'CXXFLAGS',
825                    'compile' => '$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)',
826                    'compiler' => 'CXXCOMPILE',
827                    'compile_flag' => '-c',
828                    'output_flag' => '-o',
829                    'lder' => 'CXXLD',
830                    'ld' => '$(CXX)',
831                    'pure' => 1,
832                    'extensions' => ['c++', 'cc', 'cpp', 'cxx', 'C']);
834 # Objective C.
835 register_language ('name' => 'objc',
836                    'Name' => 'Objective C',
837                    'config_vars' => ['OBJC'],
838                    'linker' => 'OBJCLINK',,
839                    'link' => '$(OBJCLD) $(AM_OBJCFLAGS) $(OBJCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
840                    'autodep' => 'OBJC',
841                    'flags' => 'OBJCFLAGS',
842                    'compile' => '$(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS)',
843                    'compiler' => 'OBJCCOMPILE',
844                    'compile_flag' => '-c',
845                    'output_flag' => '-o',
846                    'lder' => 'OBJCLD',
847                    'ld' => '$(OBJC)',
848                    'pure' => 1,
849                    'extensions' => ['m']);
851 # Headers.
852 register_language ('name' => 'header',
853                    'Name' => 'Header',
854                    'extensions' => ['h', 'H', 'hxx', 'h++', 'hh', 'hpp', 'inc'],
855                    # Nothing to do.
856                    '_finish' => sub { });
858 # For now, yacc and lex can't be handled on a per-exe basis.
860 # Yacc (C & C++).
861 register_language ('name' => 'yacc',
862                    'Name' => 'Yacc',
863                    'ansi' => 1,
864                    'derived_autodep' => 'yes',
865                    'extensions' => ['y'],
866                    '_finish' => \&lang_yacc_finish);
867 register_language ('name' => 'yaccxx',
868                    'Name' => 'Yacc (C++)',
869                    'linker' => 'CXXLINK',
870                    'derived_autodep' => 'yes',
871                    'extensions' => ['y++', 'yy', 'yxx', 'ypp'],
872                    '_finish' => \&lang_yacc_finish);
874 # Lex (C & C++).
875 register_language ('name' => 'lex',
876                    'Name' => 'Lex',
877                    'ansi' => 1,
878                    'derived_autodep' => 'yes',
879                    'extensions' => ['l'],
880                    '_finish' => \&lang_lex_finish);
881 register_language ('name' => 'lexxx',
882                    'Name' => 'Lex (C++)',
883                    'linker' => 'CXXLINK',
884                    'derived_autodep' => 'yes',
885                    'extensions' => ['l++', 'll', 'lxx', 'lpp'],
886                    '_finish' => \&lang_lex_finish);
888 # Assembler.
889 register_language ('name' => 'asm',
890                    'Name' => 'Assembler',
891                    'flags' => 'CFLAGS',
892                    # FIXME: asmflags?
893                    'compile' => '$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)',
894                    # FIXME: a different compiler?
895                    'compiler' => 'COMPILE',
896                    'compile_flag' => '-c',
897                    'extensions' => ['s', 'S'],
898                    # We need the C code for assembly.
899                    '_finish' => \&lang_c_finish);
901 # Fortran 77
902 register_language ('name' => 'f77',
903                    'Name' => 'Fortran 77',
904                    'linker' => 'F77LINK',
905                    'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
906                    'flags' => 'FFLAGS',
907                    'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS)',
908                    'compiler' => 'F77COMPILE',
909                    'compile_flag' => '-c',
910                    'output_flag' => '-o',
911                    'lder' => 'F77LD',
912                    'ld' => '$(F77)',
913                    'pure' => 1,
914                    'extensions' => ['f', 'for', 'f90']);
916 # Preprocessed Fortran 77
918 # The current support for preprocessing Fortran 77 just involves
919 # passing `$(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS)
920 # $(CPPFLAGS)' as additional flags to the Fortran 77 compiler, since
921 # this is how GNU Make does it; see the `GNU Make Manual, Edition 0.51
922 # for `make' Version 3.76 Beta' (specifically, from info file
923 # `(make)Catalogue of Rules').
925 # A better approach would be to write an Autoconf test
926 # (i.e. AC_PROG_FPP) for a Fortran 77 preprocessor, because not all
927 # Fortran 77 compilers know how to do preprocessing.  The Autoconf
928 # macro AC_PROG_FPP should test the Fortran 77 compiler first for
929 # preprocessing capabilities, and then fall back on cpp (if cpp were
930 # available).
931 register_language ('name' => 'ppf77',
932                    'Name' => 'Preprocessed Fortran 77',
933                    'config_vars' => ['F77'],
934                    'linker' => 'F77LINK',
935                    'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
936                    'lder' => 'F77LD',
937                    'ld' => '$(F77)',
938                    'flags' => 'FFLAGS',
939                    'compiler' => 'PPF77COMPILE',
940                    'compile' => '$(F77) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)',
941                    'compile_flag' => '-c',
942                    'output_flag' => '-o',
943                    'pure' => 1,
944                    'extensions' => ['F'],
945                    '_finish' => \&lang_ppf77_finish);
947 # Ratfor.
948 register_language ('name' => 'ratfor',
949                    'Name' => 'Ratfor',
950                    'config_vars' => ['F77'],
951                    'linker' => 'F77LINK',
952                    'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
953                    'lder' => 'F77LD',
954                    'ld' => '$(F77)',
955                    'flags' => 'RFLAGS',
956                    # FIXME also FFLAGS.
957                    'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)',
958                    'compiler' => 'RCOMPILE',
959                    'compile_flag' => '-c',
960                    'output_flag' => '-o',
961                    'pure' => 1,
962                    'extensions' => ['r'],
963                    '_finish' => \&lang_ratfor_finish);
965 # Java via gcj.
966 # FIXME: for now we can't do dependency tracking for Java.
967 # autodep=GCJ
968 register_language ('name' => 'java',
969                    'Name' => 'Java',
970                    'config_vars' => ['GCJ'],
971                    'linker' => 'GCJLINK',
972                    'link' => '$(GCJLD) $(AM_GCJFLAGS) $(GCJFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
973                    'flags' => 'GCJFLAGS',
974                    'compile' => '$(GCJ) $(AM_GCJFLAGS) $(GCJFLAGS)',
975                    'compiler' => 'GCJCOMPILE',
976                    'compile_flag' => '-c',
977                    'output_flag' => '-o',
978                    'lder' => 'GCJLD',
979                    'ld' => '$(GCJ)',
980                    'pure' => 1,
981                    'extensions' => ['java', 'class', 'zip', 'jar']);
983 ################################################################
985 # Parse command line.
986 &parse_arguments;
988 # Do configure.ac scan only once.
989 &scan_autoconf_files;
991 die "$me: no `Makefile.am' found or specified\n"
992     if ! @input_files;
994 # Now do all the work on each file.
995 # This guy must be local otherwise it's private to the loop.
996 use vars '$am_file';
997 local $am_file;
998 foreach $am_file (@input_files)
1000     if (! -f ($am_file . '.am'))
1001     {
1002         &am_error ("`" . $am_file . ".am' does not exist");
1003     }
1004     else
1005     {
1006         &generate_makefile ($output_files{$am_file}, $am_file);
1007     }
1010 exit $exit_status;
1012 # FIXME: This should be `my'ed next to its subs.
1013 use vars '%require_file_found';
1015 ################################################################
1017 # prog_error (@PRINT-ME)
1018 # ----------------------
1019 # Signal a programming error, display PRINT-ME, and exit 1.
1020 sub prog_error (@)
1022     print STDERR "$me: programming error: @_\n";
1023     exit 1;
1027 # @RES
1028 # uniq (@LIST)
1029 # ------------
1030 # Return LIST with no duplicates.
1031 sub uniq (@)
1033    my @res = ();
1034    my %seen = ();
1035    foreach my $item (@_)
1036      {
1037        if (! defined $seen{$item})
1038          {
1039            $seen{$item} = 1;
1040            push (@res, $item);
1041          }
1042      }
1043    return @res;
1046 # subst ($TEXT)
1047 # -------------
1048 # Return a configure-style substitution using the indicated text.
1049 # We do this to avoid having the substitutions directly in automake.in;
1050 # when we do that they are sometimes removed and this causes confusion
1051 # and bugs.
1052 sub subst ($)
1054     my ($text) = @_;
1055     return '@' . $text . '@';
1058 ################################################################
1061 # $BACKPATH
1062 # &backname ($REL-DIR)
1063 # --------------------
1064 # If I `cd $REL-DIR', then to come back, I should `cd $BACKPATH'.
1065 # For instance `src/foo' => `../..'.
1066 # Works with non strictly increasing paths, i.e., `src/../lib' => `..'.
1067 sub backname ($)
1069     my ($file) = @_;
1070     my @res;
1071     foreach (split (/\//, $file))
1072     {
1073         next if $_ eq '.' || $_ eq '';
1074         if ($_ eq '..')
1075         {
1076             pop @res;
1077         }
1078         else
1079         {
1080             push (@res, '..');
1081         }
1082     }
1083     return join ('/', @res) || '.';
1086 ################################################################
1088 # Parse command line.
1089 sub parse_arguments ()
1091     # Start off as gnu.
1092     &set_strictness ('gnu');
1094     use Getopt::Long;
1095     Getopt::Long::config ("bundling");
1096     Getopt::Long::GetOptions
1097       (
1098        'version'        => \&version,
1099        'help'           => \&usage,
1100        'amdir:s'        => \$am_dir,
1101        'gnu'            => sub { &set_strictness ('gnu'); },
1102        'gnits'          => sub { &set_strictness ('gnits'); },
1103        'cygnus'         => \$cygnus_mode,
1104        'foreign'        => sub { &set_strictness ('foreign'); },
1105        'include-deps'   => sub { $cmdline_use_dependencies = 1; },
1106        'i|ignore-deps'  => sub { $cmdline_use_dependencies = 0; },
1107        'no-force'       => sub { $force_generation = 0; },
1108        'f|force-missing'=> \$force_missing,
1109        'o|output-dir:s' => \$output_directory,
1110        'a|add-missing'  => \$add_missing,
1111        'c|copy'         => \$copy_missing,
1112        'v|verbose'      => \$verbose,
1113        'Werror'         => sub { $SIG{"__WARN__"} = sub { die $_[0] } },
1114        'Wno-error'      => sub { $SIG{"__WARN__"} = 'DEFAULT' }
1115       )
1116         or exit 1;
1118     foreach my $arg (@ARGV)
1119     {
1120       # Handle $local:$input syntax.  Note that we only examine the
1121       # first ":" file to see if it is automake input; the rest are
1122       # just taken verbatim.  We still keep all the files around for
1123       # dependency checking, however.
1124       my ($local, $input, @rest) = split (/:/, $arg);
1125       if (! $input)
1126         {
1127           $input = $local;
1128         }
1129       else
1130         {
1131           # Strip .in; later on .am is tacked on.  That is how the
1132           # automake input file is found.  Maybe not the best way, but
1133           # it is easy to explain.
1134           $input =~ s/\.in$//
1135             or die "$me: invalid input file name `$arg'\n.";
1136         }
1137       push (@input_files, $input);
1138       $output_files{$input} = join (':', ($local, @rest));
1139     }
1141     # Take global strictness from whatever we currently have set.
1142     $default_strictness = $strictness;
1143     $default_strictness_name = $strictness_name;
1146 ################################################################
1148 # Generate a Makefile.in given the name of the corresponding Makefile and
1149 # the name of the file output by config.status.
1150 sub generate_makefile
1152     my ($output, $makefile) = @_;
1154     # Reset all the Makefile.am related variables.
1155     &initialize_per_input;
1157     # Name of input file ("Makefile.am") and output file
1158     # ("Makefile.in").  These have no directory components.
1159     $am_file_name = basename ($makefile) . '.am';
1160     $in_file_name = basename ($makefile) . '.in';
1162     # $OUTPUT is encoded.  If it contains a ":" then the first element
1163     # is the real output file, and all remaining elements are input
1164     # files.  We don't scan or otherwise deal with these input file,
1165     # other than to mark them as dependencies.  See
1166     # &scan_autoconf_files for details.
1167     my (@secondary_inputs);
1168     ($output, @secondary_inputs) = split (/:/, $output);
1170     $relative_dir = dirname ($output);
1171     $am_relative_dir = dirname ($makefile);
1173     &read_main_am_file ($makefile . '.am');
1174     if (&handle_options)
1175     {
1176         # Fatal error.  Just return, so we can continue with next file.
1177         return;
1178     }
1180     # There are a few install-related variables that you should not define.
1181     foreach my $var ('PRE_INSTALL', 'POST_INSTALL', 'NORMAL_INSTALL')
1182     {
1183         if (&variable_defined ($var) && !$var_is_am{$var})
1184         {
1185             &am_line_error ($var, "`$var' should not be defined");
1186         }
1187     }
1189     # At the toplevel directory, we might need config.guess, config.sub
1190     # or libtool scripts (ltconfig and ltmain.sh).
1191     if ($relative_dir eq '.')
1192     {
1193         # libtool requires some files.
1194         &require_conf_file_with_conf_line ($libtool_line, $FOREIGN,
1195                                            @libtoolize_files)
1196             if $seen_libtool;
1198         # AC_CANONICAL_HOST and AC_CANONICAL_SYSTEM need config.guess and
1199         # config.sub.
1200         &require_config_file ($FOREIGN, 'config.guess', 'config.sub')
1201             if $seen_canonical;
1202     }
1204     # We still need Makefile.in here, because sometimes the `dist'
1205     # target doesn't re-run automake.
1206     if ($am_relative_dir eq $relative_dir)
1207     {
1208         # Only distribute the files if they are in the same subdir as
1209         # the generated makefile.
1210         &push_dist_common ($in_file_name, $am_file_name);
1211     }
1213     push (@sources, '$(SOURCES)')
1214         if &variable_defined ('SOURCES');
1215     push (@objects, '$(OBJECTS)')
1216         if &variable_defined ('OBJECTS');
1218     # If OBJEXT/EXEEXT were not set in configure.in, do it, it
1219     # simplifies our task, and anyway starting with Autoconf 2.50, it
1220     # will always be defined, and this code will be dead.
1221     $output_vars .= "EXEEXT =\n"
1222       unless $seen_exeext;
1223     $output_vars .= "OBJEXT = o\n"
1224       unless $seen_objext;
1226     # Must do this after reading .am file.  See read_main_am_file to
1227     # understand weird tricks we play there with variables.
1228     &define_variable ('subdir', $relative_dir);
1230     # Check first, because we might modify some state.
1231     &check_cygnus;
1232     &check_gnu_standards;
1233     &check_gnits_standards;
1235     &handle_configure ($output, $makefile, @secondary_inputs);
1236     &handle_gettext;
1237     &handle_libraries;
1238     &handle_ltlibraries;
1239     &handle_programs;
1240     &handle_scripts;
1242     # This must be run after all the sources are scanned.
1243     &handle_languages;
1244     &handle_compile;
1246     # Re-init SOURCES and OBJECTS.  FIXME: other code shouldn't depend
1247     # on this (but currently does).
1248     macro_define ('SOURCES', 1, '', 'TRUE',
1249                      join (' ', @sources), 'internal');
1250     macro_define ('OBJECTS', 1, '', 'TRUE',
1251                      join (' ', @objects), 'internal');
1252     &define_pretty_variable ('DIST_SOURCES', '', @dist_sources);
1254     &handle_multilib;
1255     &handle_texinfo;
1256     &handle_emacs_lisp;
1257     &handle_python;
1258     &handle_java;
1259     &handle_man_pages;
1260     &handle_data;
1261     &handle_headers;
1262     &handle_subdirs;
1263     &handle_tags;
1264     &handle_minor_options;
1265     &handle_tests;
1267     # This must come after most other rules.
1268     &handle_dist ($makefile);
1270     &handle_footer;
1271     &do_check_merge_target;
1272     &handle_all ($output);
1274     # FIXME: Gross!
1275     if (&variable_defined('lib_LTLIBRARIES') &&
1276         &variable_defined('bin_PROGRAMS'))
1277     {
1278         $output_rules .= "install-binPROGRAMS: install-libLTLIBRARIES\n\n";
1279     }
1281     &handle_installdirs;
1282     &handle_clean;
1283     &handle_factored_dependencies;
1285     &check_typos;
1287     if (! -d ($output_directory . '/' . $am_relative_dir))
1288     {
1289         mkdir ($output_directory . '/' . $am_relative_dir, 0755);
1290     }
1292     my ($out_file) = $output_directory . '/' . $makefile . ".in";
1293     if (! $force_generation && -e $out_file)
1294     {
1295         my ($am_time) = (stat ($makefile . '.am'))[9];
1296         my ($in_time) = (stat ($out_file))[9];
1297         # FIXME: should cache these times.
1298         my ($conf_time) = (stat ($configure_ac))[9];
1299         # FIXME: how to do unsigned comparison?
1300         if ($am_time < $in_time || $am_time < $conf_time)
1301         {
1302             # No need to update.
1303             return;
1304         }
1305         if (-f 'aclocal.m4')
1306         {
1307             my ($acl_time) = (stat _)[9];
1308             return if ($am_time < $acl_time);
1309         }
1310     }
1312     my $gm_file = new IO::File "> $out_file";
1313     if (! $gm_file)
1314     {
1315         warn "$me: ${am_file}.in: cannot write: $!\n";
1316         $exit_status = 1;
1317         return;
1318     }
1319     print "$me: creating ", $makefile, ".in\n" if $verbose;
1321     # In case we're running under MSWindows, don't write with CRLF
1322     # (as it causes problems for the dependency-file extraction in
1323     # AM_OUTPUT_DEPENDENCY_COMMANDS).
1324     binmode $gm_file;
1326     print $gm_file $output_vars;
1327     # We make sure that `all:' is the first target.
1328     print $gm_file $output_all;
1329     print $gm_file $output_header;
1330     print $gm_file $output_rules;
1331     print $gm_file $output_trailer;
1333     if (! $gm_file->close)
1334       {
1335         warn "$me: $am_file.in: cannot close: $!\n";
1336         $exit_status = 1;
1337         return;
1338       }
1341 ################################################################
1343 # Handle AUTOMAKE_OPTIONS variable.  Return 1 on error, 0 otherwise.
1344 sub handle_options
1346     if (&variable_defined ('AUTOMAKE_OPTIONS'))
1347     {
1348         foreach (&variable_value_as_list ('AUTOMAKE_OPTIONS', ''))
1349         {
1350             $options{$_} = 1;
1351             if ($_ eq 'gnits' || $_ eq 'gnu' || $_ eq 'foreign')
1352             {
1353                 &set_strictness ($_);
1354             }
1355             elsif ($_ eq 'cygnus')
1356             {
1357                 $cygnus_mode = 1;
1358             }
1359             elsif (/ansi2knr/)
1360             {
1361                 # An option like "../lib/ansi2knr" is allowed.  With
1362                 # no path prefix, we assume the required programs are
1363                 # in this directory.  We save the actual option for
1364                 # later.
1365                 $options{'ansi2knr'} = $_;
1366             }
1367             elsif ($_ eq 'no-installman' || $_ eq 'no-installinfo'
1368                    || $_ eq 'dist-shar' || $_ eq 'dist-zip'
1369                    || $_ eq 'dist-tarZ' || $_ eq 'dist-bzip2'
1370                    || $_ eq 'dejagnu' || $_ eq 'no-texinfo.tex'
1371                    || $_ eq 'readme-alpha' || $_ eq 'check-news'
1372                    || $_ eq 'subdir-objects' || $_ eq 'nostdinc')
1373             {
1374                 # Explicitly recognize these.
1375             }
1376             elsif ($_ eq 'no-dependencies')
1377             {
1378                 $use_dependencies = 0;
1379             }
1380             elsif (/(\d+)\.(\d+)([a-z]?)(-[A-Za-z0-9]+)?/)
1381             {
1382                 # Got a version number.
1384                 my ($rmajor, $rminor, $ralpha, $rfork) = ($1, $2, $3, $4);
1386                 &prog_error ("version is incorrect: $VERSION")
1387                   if $VERSION !~ /(\d+)\.(\d+)([a-z]?)(-[A-Za-z0-9]+)?/;
1389                 my ($tmajor, $tminor, $talpha, $tfork) = ($1, $2, $3, $4);
1391                 $rfork ||= '';
1392                 $tfork ||= '';
1394                 # 2.0 is better than 1.0.
1395                 # 1.2 is better than 1.1.
1396                 # 1.2a is better than 1.2.
1397                 # If we require 3.4n-foo then we require something
1398                 # >= 3.4n, with the `foo' fork identifier.
1399                 if ($rmajor > $tmajor
1400                     || ($rmajor == $tmajor && $rminor > $tminor)
1401                     || ($rminor == $tminor && $rminor == $tminor
1402                         && $ralpha gt $talpha)
1403                     || ($rfork ne '' && $rfork ne $tfork))
1404                   {
1405                     &am_line_error ('AUTOMAKE_OPTIONS',
1406                                     "require version $_, but have $VERSION");
1407                     return 1;
1408                   }
1409             }
1410             else
1411             {
1412                 &am_line_error ('AUTOMAKE_OPTIONS',
1413                                 "option `" . $_ . "\' not recognized");
1414             }
1415         }
1416     }
1418     if ($strictness == $GNITS)
1419     {
1420         $options{'readme-alpha'} = 1;
1421         $options{'check-news'} = 1;
1422     }
1424     return 0;
1428 # get_object_extension ($OUT)
1429 # ---------------------------
1430 # Return object extension.  Just once, put some code into the output.
1431 # OUT is the name of the output file
1432 sub get_object_extension
1434     my ($out) = @_;
1436     # Maybe require libtool library object files.
1437     my $extension = '.$(OBJEXT)';
1438     $extension = '.lo' if ($out =~ /\.la$/);
1440     # Check for automatic de-ANSI-fication.
1441     $extension = '$U' . $extension
1442       if defined $options{'ansi2knr'};
1444     $get_object_extension_was_run = 1;
1446     return $extension;
1450 # Call finish function for each language that was used.
1451 sub handle_languages
1453     if ($use_dependencies)
1454     {
1455         # Include auto-dep code.  Don't include it if DEP_FILES would
1456         # be empty.
1457         if (&saw_sources_p (0) && keys %dep_files)
1458         {
1459             my $config_aux_dir_specified = ($config_aux_dir ne '.'
1460                                             && $config_aux_dir ne '');
1462             # Set $require_file_found{'depcomp'} if the depcomp file exists,
1463             # before calling require_config_file on `depcomp'.  This makes
1464             # require_file_internal skip its buggy existence test that would
1465             # make automake fail (with `required file `lib/depcomp' not found')
1466             # when AC_CONFIG_AUX_DIR is not set.  See tests/subdir4.test.
1467             my $depcomp_dir = ($config_aux_dir_specified ? $config_aux_dir
1468                                : '.');
1469             $require_file_found{'depcomp'} = 1 if -f "$depcomp_dir/depcomp";
1471             # Set location of depcomp.
1472             my $prefix = ($config_aux_dir_specified ? $config_aux_dir
1473                           : '$(top_srcdir)');
1475             &define_variable ('depcomp', "\$(SHELL) $prefix/depcomp");
1477             &require_config_file ($FOREIGN, 'depcomp');
1479             my @deplist = sort keys %dep_files;
1481             # We define this as a conditional variable because BSD
1482             # make can't handle backslashes for continuing comments on
1483             # the following line.
1484             &define_pretty_variable ('DEP_FILES', 'AMDEP_TRUE', @deplist);
1486             # Generate each `include' individually.  Irix 6 make will
1487             # not properly include several files resulting from a
1488             # variable expansion; generating many separate includes
1489             # seems safest.
1490             $output_rules .= "\n";
1491             foreach my $iter (@deplist)
1492             {
1493                 $output_rules .= (subst ('AMDEP_TRUE')
1494                                   . subst ('_am_include')
1495                                   . ' '
1496                                   . subst ('_am_quote')
1497                                   . $iter
1498                                   . subst ('_am_quote')
1499                                   . "\n");
1500             }
1502             $output_rules .= &file_contents ('depend');
1503         }
1504     }
1505     else
1506     {
1507         &define_variable ('depcomp', '');
1508     }
1510     my %done;
1512     # Is the c linker needed?
1513     my $needs_c = 0;
1514     foreach my $ext (sort keys %extension_seen)
1515       {
1516         my $lang = $languages{$extension_map{$ext}};
1518         # Get information on $LANG.
1519         my $pfx = $lang->autodep;
1520         my $fpfx = ($pfx eq '') ? 'CC' : $pfx;
1522         my $AMDEP = (($use_dependencies && $lang->autodep ne 'no')
1523                      ? 'AMDEP' : 'FALSE');
1525         my %transform = ('EXT'     => $ext,
1526                          'PFX'     => $pfx,
1527                          'FPFX'    => $fpfx,
1528                          'LIBTOOL' => $seen_libtool,
1529                          'AMDEP'   => $AMDEP,
1530                          '-c'      => $lang->compile_flag || '');
1532         # Generate the appropriate rules for this extension.
1533         if ($use_dependencies && $lang->autodep ne 'no'
1534             || defined $lang->compile)
1535           {
1536             # Some C compilers don't support -c -o.  Use it only if really
1537             # needed.
1538             my $output_flag = $lang->output_flag || '';
1539             $output_flag = '-o'
1540               if (! $output_flag
1541                   && $lang->flags eq 'CFLAGS'
1542                   && defined $options{'subdir-objects'});
1544             $output_rules .=
1545               file_contents ('depend2',
1546                              %transform,
1547                              'GENERIC'   => 1,
1549                              'BASE'      => '$*',
1550                              'SOURCE'    => '$<',
1551                              'OBJ'       => '$@',
1552                              'OBJOBJ'    => '$@',
1553                              'LTOBJ'     => '$@',
1555                              'COMPILE'   => '$(' . $lang->compiler . ')',
1556                              'LTCOMPILE' => '$(LT' . $lang->compiler . ')',
1557                              '-o'        => $output_flag);
1558           }
1560         # Now include code for each specially handled object with this
1561         # language.
1562         my %seen_files = ();
1563         foreach my $file (@{$lang_specific_files{$lang->name}})
1564           {
1565             my ($derived, $source, $obj) = split (' ', $file);
1567             # We might see a given object twice, for instance if it is
1568             # used under different conditions.
1569             next if defined $seen_files{$obj};
1570             $seen_files{$obj} = 1;
1572             my $flags = $lang->flags || '';
1573             my $val = "${derived}_${flags}";
1575             (my $obj_compile = $lang->compile) =~ s/\(AM_$flags/\($val/;
1576             my $obj_ltcompile = '$(LIBTOOL) --mode=compile ' . $obj_compile;
1578             # We _need_ `-o' for per object rules.
1579             my $output_flag = $lang->output_flag || '-o';
1581             # Generate a transform which will turn suffix targets in
1582             # depend2.am into real targets for the particular objects we
1583             # are building.
1584             $output_rules .=
1585               file_contents ('depend2',
1586                              (%transform,
1587                               'GENERIC'   => 0,
1589                               'BASE'      => $obj,
1590                               'SOURCE'    => $source,
1591                               'OBJ'       => "$obj.o",
1592                               'OBJOBJ'    => "$obj.obj",
1593                               'LTOBJ'     => "$obj.lo",
1595                               'COMPILE'   => $obj_compile,
1596                               'LTCOMPILE' => $obj_ltcompile,
1597                               '-o'        => $output_flag));
1598             }
1600         # The rest of the loop is done once per language.
1601         next if defined $done{$lang};
1602         $done{$lang} = 1;
1605         # If the source to a program consists entirely of code from a
1606         # `pure' language, for instance C++ for Fortran 77, then we
1607         # don't need the C compiler code.  However if we run into
1608         # something unusual then we do generate the C code.  There are
1609         # probably corner cases here that do not work properly.
1610         # People linking Java code to Fortran code deserve pain.
1611         $needs_c ||= ! $lang->pure;
1613         define_compiler_variable ($lang)
1614           if ($lang->compile);
1616         define_linker_variable ($lang)
1617           if ($lang->link);
1619         foreach my $var (@{$lang->config_vars})
1620           {
1621             if (!exists $configure_vars{$var})
1622               {
1623                 am_error ($lang->Name
1624                           . " source seen but `$var' not defined in"
1625                           . " `$configure_ac'");
1626               }
1627           }
1629         # The compiler's flag must be a configure variable.
1630         define_configure_variable ($lang->flags)
1631           if (defined $lang->flags);
1633         # Call the finisher.
1634         $lang->finish;
1635       }
1637     # If the project is entirely C++ or entirely Fortran 77 (i.e., 1
1638     # suffix rule was learned), don't bother with the C stuff.  But if
1639     # anything else creeps in, then use it.
1640     $needs_c = 1
1641       if $need_link || scalar keys %suffix_rules > 1;
1643     if ($needs_c)
1644       {
1645         if (! defined $done{$languages{'c'}})
1646           {
1647             &define_configure_variable ($languages{'c'}->flags);
1648             &define_compiler_variable ($languages{'c'});
1649           }
1650         define_linker_variable ($languages{'c'});
1651       }
1654 # Output a rule to build from a YACC source.  The output from YACC is
1655 # compiled with C or C++, depending on the extension of the YACC file.
1656 sub output_yacc_build_rule
1658     my ($yacc_suffix, $use_ylwrap) = @_;
1660     (my $c_suffix = $yacc_suffix) =~ tr/y/c/;
1662     # Generate rule for c/c++.
1663     $output_rules .= &file_contents ('yacc',
1664                                      ('YLWRAP'      => $use_ylwrap,
1665                                       'YACC_SUFFIX' => $yacc_suffix,
1666                                       'C_SUFFIX'    => $c_suffix));
1669 sub output_lex_build_rule
1671     my ($lex_suffix, $use_ylwrap) = @_;
1673     (my $c_suffix = $lex_suffix) =~ tr/l/c/;
1675     $output_rules .= &file_contents ('lex',
1676                                      ('YLWRAP'     => $use_ylwrap,
1677                                       'LEX_SUFFIX' => $lex_suffix,
1678                                       'C_SUFFIX'   => $c_suffix));
1681     if ($use_dependencies)
1682     {
1683         # Include auto-dep code.  Don't include it if DEP_FILES would
1684         # be empty.
1685         if (&saw_sources_p (0) && keys %dep_files)
1686         {
1687             my $config_aux_dir_specified = ($config_aux_dir ne '.'
1688                                             && $config_aux_dir ne '');
1690             # Set $require_file_found{'depcomp'} if the depcomp file exists,
1691             # before calling require_config_file on `depcomp'.  This makes
1692             # require_file_internal skip its buggy existence test that would
1693             # make automake fail (with `required file `lib/depcomp' not found')
1694             # when AC_CONFIG_AUX_DIR is not set.  See tests/subdir4.test.
1695             my $depcomp_dir = ($config_aux_dir_specified ? $config_aux_dir
1696                                : '.');
1697             $require_file_found{'depcomp'} = 1 if -f "$depcomp_dir/depcomp";
1699             # Set location of depcomp.
1700             my $prefix = ($config_aux_dir_specified ? $config_aux_dir
1701                           : '$(top_srcdir)');
1703             &define_variable ('depcomp', "\$(SHELL) $prefix/depcomp");
1705             &require_config_file ($FOREIGN, 'depcomp');
1707             my @deplist = sort keys %dep_files;
1709             # We define this as a conditional variable because BSD
1710             # make can't handle backslashes for continuing comments on
1711             # the following line.
1712             &define_pretty_variable ('DEP_FILES', 'AMDEP_TRUE', @deplist);
1714             # Generate each `include' individually.  Irix 6 make will
1715             # not properly include several files resulting from a
1716             # variable expansion; generating many separate includes
1717             # seems safest.
1718             $output_rules .= "\n";
1719             foreach my $iter (@deplist)
1720             {
1721                 $output_rules .= (subst ('AMDEP_TRUE')
1722                                   . subst ('_am_include')
1723                                   . ' '
1724                                   . subst ('_am_quote')
1725                                   . $iter
1726                                   . subst ('_am_quote')
1727                                   . "\n");
1728             }
1730             $output_rules .= &file_contents ('depend');
1731         }
1732     }
1733     else
1734     {
1735         &define_variable ('depcomp', '');
1736     }
1738 # Check to make sure a source defined in LIBOBJS is not explicitly
1739 # mentioned.  This is a separate function (as opposed to being inlined
1740 # in handle_source_transform) because it isn't always appropriate to
1741 # do this check.
1742 sub check_libobjs_sources
1744     my ($one_file, $unxformed) = @_;
1746     foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
1747                         'dist_EXTRA_', 'nodist_EXTRA_')
1748     {
1749         my @files;
1750         if (&variable_defined ($prefix . $one_file . '_SOURCES'))
1751         {
1752             @files = &variable_value_as_list (($prefix
1753                                                . $one_file . '_SOURCES'),
1754                                               'all');
1755         }
1756         elsif ($prefix eq '')
1757         {
1758             @files = ($unxformed . '.c');
1759         }
1760         else
1761         {
1762             next;
1763         }
1765         foreach my $file (@files)
1766         {
1767             if (defined $libsources{$file})
1768             {
1769                 &am_line_error ($prefix . $one_file . '_SOURCES',
1770                                 "automatically discovered file `$file' should not be explicitly mentioned");
1771             }
1772         }
1773     }
1776     if ($use_dependencies)
1777     {
1778         # Include auto-dep code.  Don't include it if DEP_FILES would
1779         # be empty.
1780         if (&saw_sources_p (0) && keys %dep_files)
1781         {
1782             my $config_aux_dir_specified = ($config_aux_dir ne '.'
1783                                             && $config_aux_dir ne '');
1785             # Set $require_file_found{'depcomp'} if the depcomp file exists,
1786             # before calling require_config_file on `depcomp'.  This makes
1787             # require_file_internal skip its buggy existence test that would
1788             # make automake fail (with `required file `lib/depcomp' not found')
1789             # when AC_CONFIG_AUX_DIR is not set.  See tests/subdir4.test.
1790             my $depcomp_dir = ($config_aux_dir_specified ? $config_aux_dir
1791                                : '.');
1792             $require_file_found{'depcomp'} = 1 if -f "$depcomp_dir/depcomp";
1794             # Set location of depcomp.
1795             my $prefix = ($config_aux_dir_specified ? $config_aux_dir
1796                           : '$(top_srcdir)');
1798             &define_variable ('depcomp', "\$(SHELL) $prefix/depcomp");
1800             &require_config_file ($FOREIGN, 'depcomp');
1802             my @deplist = sort keys %dep_files;
1804             # We define this as a conditional variable because BSD
1805             # make can't handle backslashes for continuing comments on
1806             # the following line.
1807             &define_pretty_variable ('DEP_FILES', 'AMDEP_TRUE', @deplist);
1809             # Generate each `include' individually.  Irix 6 make will
1810             # not properly include several files resulting from a
1811             # variable expansion; generating many separate includes
1812             # seems safest.
1813             $output_rules .= "\n";
1814             foreach my $iter (@deplist)
1815             {
1816                 $output_rules .= (subst ('AMDEP_TRUE')
1817                                   . subst ('_am_include')
1818                                   . ' '
1819                                   . subst ('_am_quote')
1820                                   . $iter
1821                                   . subst ('_am_quote')
1822                                   . "\n");
1823             }
1825             $output_rules .= &file_contents ('depend');
1826         }
1827     }
1828     else
1829     {
1830         &define_variable ('depcomp', '');
1831     }
1833 # ($LINKER, @OBJECTS)
1834 # handle_single_transform_list ($VAR, $DERIVED, $OBJ, @FILES)
1835 # -----------------------------------------------------------
1836 # Does much of the actual work for handle_source_transform.
1837 # Arguments are:
1838 #   $DERIVED is the name of resulting executable or library
1839 #   $OBJ is the object extension (e.g., `$U.lo')
1840 #   @FILES is the list of source files to transform
1841 # Result is a list
1842 #   $LINKER is name of linker to use (empty string for default linker)
1843 #   @OBJECTS are names of objects
1844 sub handle_single_transform_list ($$$@)
1846     my ($var, $derived, $obj, @files) = @_;
1847     my @result = ();
1848     my $nonansi_obj = $obj;
1849     $nonansi_obj =~ s/\$U//g;
1850     my %linkers_used = ();
1852     # Turn sources into objects.
1853     foreach (@files)
1854     {
1855         # Configure substitutions in _SOURCES variables are errors.
1856         if (/^\@.*\@$/)
1857         {
1858             &am_line_error ($var, "$var includes configure substitution `$_'");
1859             next;
1860         }
1862         # If the source file is in a subdirectory then the `.o' is
1863         # put into the current directory.
1865         # Split file name into base and extension.
1866         next if ! /^(?:(.*)\/)?([^\/]*)\.(.*)$/;
1867         my $full = $_;
1868         my $directory = $1 || '';
1869         my $base = $2;
1870         my $extension = $3;
1872         # We must generate a rule for the object if it requires its own flags.
1873         my $renamed = 0;
1874         my ($linker, $object);
1876         $extension = &derive_suffix ($extension);
1877         my $lang = $languages{$extension_map{$extension}};
1878         if ($lang)
1879         {
1880             &saw_extension ($extension);
1881             # Found the language, so see what it says.
1882             my $subr = 'lang_' . $lang->name . '_rewrite';
1883             # Note: computed subr call.
1884             my $r = & $subr ($directory, $base, $extension);
1885             # Skip this entry if we were asked not to process it.
1886             next if $r == $LANG_IGNORE;
1888             # Now extract linker and other info.
1889             $linker = $lang->linker;
1891             my $this_obj_ext;
1892             if ($lang->ansi)
1893             {
1894                 $object = $base . $obj;
1895                 $this_obj_ext = $obj;
1896             }
1897             else
1898             {
1899                 $object = $base . $nonansi_obj;
1900                 $this_obj_ext = $nonansi_obj;
1901             }
1903             if (defined $lang->flags
1904                 && &variable_defined ($derived . '_' . $lang->flags))
1905             {
1906                 # We have a per-executable flag in effect for this
1907                 # object.  In this case we rewrite the object's
1908                 # name to ensure it is unique.  We also require
1909                 # the `compile' program to deal with compilers
1910                 # where `-c -o' does not work.
1912                 # We choose the name `DERIVED_OBJECT' to ensure
1913                 # (1) uniqueness, and (2) continuity between
1914                 # invocations.  However, this will result in a
1915                 # name that is too long for losing systems, in
1916                 # some situations.  So we provide _SHORTNAME to
1917                 # override.
1919                 my $dname = $derived;
1920                 if (&variable_defined ($derived . '_SHORTNAME'))
1921                 {
1922                     # FIXME: should use the same conditional as
1923                     # the _SOURCES variable.  But this is really
1924                     # silly overkill -- nobody should have
1925                     # conditional shortnames.
1926                     $dname = &variable_value ($derived . '_SHORTNAME');
1927                 }
1928                 $object = $dname . '-' . $object;
1930                 &require_file ($FOREIGN, 'compile')
1931                     if $lang->name eq 'c';
1933                 &prog_error ("$lang->name flags defined without compiler")
1934                     if ! defined $lang->compile;
1936                 $renamed = 1;
1937             }
1939             # If rewrite said it was ok, put the object into a
1940             # subdir.
1941             if ($r == $LANG_SUBDIR && $directory ne '')
1942             {
1943                 $object = $directory . '/' . $object;
1944             }
1946             # If doing dependency tracking, then we can't print
1947             # the rule.  If we have a subdir object, we need to
1948             # generate an explicit rule.  Actually, in any case
1949             # where the object is not in `.' we need a special
1950             # rule.  The per-object rules in this case are
1951             # generated later, by handle_languages.
1952             if ($renamed || $directory ne '')
1953             {
1954                 my $obj_sans_ext = substr ($object, 0,
1955                                            - length ($this_obj_ext));
1956                 push (@{$lang_specific_files{$lang->name}},
1957                       "$derived $full $obj_sans_ext");
1958             }
1959         }
1960         elsif ($extension eq 'o')
1961         {
1962             # This is probably the result of a direct suffix rule.
1963             # In this case we just accept the rewrite.  FIXME:
1964             # this fails if we want libtool objects.
1965             $object = $base . '.' . $extension;
1966             $linker = '';
1967         }
1968         else
1969         {
1970             # No error message here.  Used to have one, but it was
1971             # very unpopular.
1972             next;
1973         }
1975         $linkers_used{$linker} = 1;
1977         push (@result, $object);
1979         if (defined $object_map{$object})
1980         {
1981             if ($object_map{$object} ne $full)
1982             {
1983                 &am_error ("object `$object' created by `$full' and `$object_map{$object}'");
1984             }
1985         }
1986         else
1987         {
1988             my @dep_list = ();
1989             $object_map{$object} = $full;
1991             # If file is in subdirectory, we need explicit
1992             # dependency.
1993             if ($directory ne '' || $renamed)
1994             {
1995                 push (@dep_list, $full);
1996             }
1998             # If resulting object is in subdir, we need to make
1999             # sure the subdir exists at build time.
2000             if ($object =~ /\//)
2001             {
2002                 # FIXME: check that $DIRECTORY is somewhere in the
2003                 # project
2005                 # We don't allow `..' in object file names for
2006                 # *any* source, not just Java.  For Java it just
2007                 # doesn't make sense, but in general it is
2008                 # a problem because we can't pick a good name for
2009                 # the .deps entry.
2010                 if ($object =~ /(\/|^)\.\.\//)
2011                 {
2012                     &am_error ("`$full' contains `..' component but should not");
2013                 }
2015                 # Make sure object is removed by `make mostlyclean'.
2016                 $compile_clean_files{$object} = $MOSTLY_CLEAN;
2018                 push (@dep_list, $directory . '/.dirstamp');
2020                 # If we're generating dependencies, we also want
2021                 # to make sure that the appropriate subdir of the
2022                 # .deps directory is created.
2023                 if ($use_dependencies)
2024                 {
2025                     push (@dep_list, '.deps/' . $directory . '/.dirstamp');
2026                 }
2028                 if (! defined $directory_map{$directory})
2029                 {
2030                     $directory_map{$directory} = 1;
2032                     # Directory must be removed by `make distclean'.
2033                     $compile_clean_files{$directory . "/.dirstamp"} =
2034                         $DIST_CLEAN;
2035                     $output_rules .= ($directory . "/.dirstamp:\n"
2036                                       . "\t\@\$(mkinstalldirs) $directory\n"
2037                                       . "\t\@: > $directory/.dirstamp\n");
2038                     if ($use_dependencies)
2039                     {
2040                         $output_rules .= ('.deps/' . $directory
2041                                           . "/.dirstamp:\n"
2042                                           . "\t\@\$(mkinstalldirs) .deps/$directory\n"
2043                                           . "\t\@: > .deps/$directory/.dirstamp\n");
2044                     }
2045                 }
2046             }
2048             &pretty_print_rule ($object . ':', "\t", @dep_list)
2049                 if scalar @dep_list > 0;
2050         }
2052         # Transform .o or $o file into .P file (for automatic
2053         # dependency code).
2054         if ($lang
2055             && ($lang->autodep ne 'no'
2056                 || $lang->derived_autodep eq 'yes'))
2057         {
2058             my $depfile = $object;
2059             $depfile =~ s/\.([^.]*)$/.P$1/;
2060             $depfile =~ s/\$\(OBJEXT\)$/o/;
2061             $dep_files{'$(DEPDIR)/' . $depfile} = 1;
2062         }
2063     }
2065     return (&resolve_linker (%linkers_used), @result);
2070 # Handle SOURCE->OBJECT transform for one program or library.
2071 # Arguments are:
2072 #   canonical (transformed) name of object to build
2073 #   actual name of object to build
2074 #   object extension (ie either `.o' or `$o'.
2075 # Return result is name of linker variable that must be used.
2076 # Empty return means just use `LINK'.
2077 sub handle_source_transform
2079     # one_file is canonical name.  unxformed is given name.  obj is
2080     # object extension.
2081     my ($one_file, $unxformed, $obj) = @_;
2083     my ($linker) = '';
2085     if (&variable_defined ($one_file . "_OBJECTS"))
2086     {
2087         &am_line_error ($one_file . '_OBJECTS',
2088                         $one_file . '_OBJECTS', 'should not be defined');
2089         # No point in continuing.
2090         return;
2091     }
2093     my %used_pfx = ();
2094     foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
2095                         'dist_EXTRA_', 'nodist_EXTRA_')
2096     {
2097         my $var = $prefix . $one_file . "_SOURCES";
2098         next
2099           if !variable_defined ($var);
2101         # We are going to define _OBJECTS variables using the prefix.
2102         # Then we glom them all together.  So we can't use the null
2103         # prefix here as we need it later.
2104         my $xpfx = ($prefix eq '') ? 'am_' : $prefix;
2106         # Keep track of which prefixes we saw.
2107         $used_pfx{$xpfx} = 1
2108           unless $prefix =~ /EXTRA_/;
2110         push (@sources, '$(' . $prefix . $one_file . "_SOURCES)");
2111         push (@objects, '$(' . $xpfx . $one_file . "_OBJECTS)")
2112           unless $prefix =~ /EXTRA_/;
2113         push (@dist_sources, '$(' . $prefix . $one_file . "_SOURCES)")
2114           unless $prefix =~ /^nodist_/;
2115         foreach my $cond (variable_conditions ($var))
2116           {
2117             my @files = &variable_value_as_list ($var, $cond);
2118             my ($temp, @result) =
2119               &handle_single_transform_list ($var, $one_file, $obj,
2120                                              @files);
2121             # If there are no files to compile, don't require a linker (yet).
2122             $linker ||= $temp
2123               if @files;
2125             # Define _OBJECTS conditionally.
2126             &define_pretty_variable ($xpfx . $one_file . '_OBJECTS',
2127                                      $cond, @result)
2128               unless $prefix =~ /EXTRA_/;
2129           }
2130     }
2132     my @keys = sort keys %used_pfx;
2133     if (scalar @keys == 0)
2134     {
2135         &define_variable ($one_file . "_SOURCES", $unxformed . ".c");
2136         push (@sources, $unxformed . '.c');
2137         push (@dist_sources, $unxformed . '.c');
2138         push (@objects, $unxformed . $obj);
2140         my ($temp, @result) =
2141           &handle_single_transform_list ($one_file . '_SOURCES',
2142                                          $one_file, $obj,
2143                                          "$unxformed.c");
2144         $linker = $temp if $linker eq '';
2145         &define_pretty_variable ($one_file . "_OBJECTS", '', @result)
2146     }
2147     else
2148     {
2149         grep ($_ = '$(' . $_ . $one_file . '_OBJECTS)', @keys);
2150         &define_pretty_variable ($one_file . '_OBJECTS', '', @keys);
2151     }
2153     # If we want to use `LINK' we must make sure it is defined.
2154     if ($linker eq '')
2155     {
2156         $need_link = 1;
2157     }
2159     return $linker;
2163 # handle_lib_objects ($XNAME, $VAR)
2164 # ---------------------------------
2165 # Special-case @ALLOCA@ and @LIBOBJS@ in _LDADD or _LIBADD variables.
2166 # Also, generate _DEPENDENCIES variable if appropriate.
2167 # Arguments are:
2168 #   transformed name of object being built, or empty string if no object
2169 #   name of _LDADD/_LIBADD-type variable to examine
2170 # Returns 1 if LIBOBJS seen, 0 otherwise.
2171 sub handle_lib_objects
2173     my ($xname, $var) = @_;
2175     &prog_error ("handle_lib_objects: $var undefined")
2176         if ! &variable_defined ($var);
2178     my $ret = 0;
2179     foreach my $cond (&variable_conditions ($var))
2180       {
2181         if (&handle_lib_objects_cond ($xname, $var, $cond))
2182           {
2183             $ret = 1;
2184           }
2185       }
2186     return $ret;
2189 # Subroutine of handle_lib_objects: handle a particular condition.
2190 sub handle_lib_objects_cond
2192     my ($xname, $var, $cond) = @_;
2194     # We recognize certain things that are commonly put in LIBADD or
2195     # LDADD.
2196     my @dep_list = ();
2198     my $seen_libobjs = 0;
2199     my $flagvar = 0;
2201     foreach my $lsearch (&variable_value_as_list ($var, $cond))
2202     {
2203         # Skip -lfoo and -Ldir; these are explicitly allowed.
2204         next if $lsearch =~ /^-[lL]/;
2205         if (! $flagvar && $lsearch =~ /^-/)
2206         {
2207             if ($var =~ /^(.*)LDADD$/)
2208             {
2209                 # Skip -dlopen and -dlpreopen; these are explicitly allowed.
2210                 next if $lsearch =~ /^-dl(pre)?open$/;
2211                 &am_line_error ($var, "linker flags such as `$lsearch' belong in `${1}LDFLAGS");
2212             }
2213             else
2214             {
2215                 # Only get this error once.
2216                 $flagvar = 1;
2217                 &am_line_error ($var, "linker flags such as `$lsearch' belong in `${1}LDFLAGS");
2218             }
2219         }
2221         # Assume we have a file of some sort, and push it onto the
2222         # dependency list.  Autoconf substitutions are not pushed;
2223         # rarely is a new dependency substituted into (eg) foo_LDADD
2224         # -- but "bad things (eg -lX11) are routinely substituted.
2225         # Note that LIBOBJS and ALLOCA are exceptions to this rule,
2226         # and handled specially below.
2227         push (@dep_list, $lsearch)
2228             unless $lsearch =~ /^\@.*\@$/;
2230         # Automatically handle @LIBOBJS@ and @ALLOCA@.  Basically this
2231         # means adding entries to dep_files.
2232         if ($lsearch =~ /^\@(LT)?LIBOBJS\@$/)
2233         {
2234             my $myobjext = ($1 ? 'l' : '') . 'o';
2236             push (@dep_list, $lsearch);
2237             $seen_libobjs = 1;
2238             if (! keys %libsources
2239                 && ! &variable_defined ($1 . 'LIBOBJS'))
2240             {
2241                 &am_line_error ($var, "\@$1" . "LIBOBJS\@ seen but never set in `$configure_ac'");
2242             }
2244             foreach my $iter (keys %libsources)
2245             {
2246                 if ($iter =~ /\.([cly])$/)
2247                 {
2248                     &saw_extension ($1);
2249                     &saw_extension ('c');
2250                 }
2252                 if ($iter =~ /\.h$/)
2253                 {
2254                     &require_file_with_line ($var, $FOREIGN, $iter);
2255                 }
2256                 elsif ($iter ne 'alloca.c')
2257                 {
2258                     my $rewrite = $iter;
2259                     $rewrite =~ s/\.c$/.P$myobjext/;
2260                     $dep_files{'$(DEPDIR)/' . $rewrite} = 1;
2261                     ($rewrite = $iter) =~ s/(\W)/\\$1/g;
2262                     $rewrite = "^" . $rewrite . "\$";
2263                     # Only require the file if it is not a built source.
2264                     if (! &variable_defined ('BUILT_SOURCES')
2265                         || ! grep (/$rewrite/,
2266                                    &variable_value_as_list ('BUILT_SOURCES',
2267                                                             'all')))
2268                     {
2269                         &require_file_with_line ($var, $FOREIGN, $iter);
2270                     }
2271                 }
2272             }
2273         }
2274         elsif ($lsearch =~ /^\@(LT)?ALLOCA\@$/)
2275         {
2276             my $myobjext = ($1 ? 'l' : '') . 'o';
2278             push (@dep_list, $lsearch);
2279             &am_line_error ($var,
2280                             "\@$1" . "ALLOCA\@ seen but `AC_FUNC_ALLOCA' not in `$configure_ac'")
2281                 if ! defined $libsources{'alloca.c'};
2282             $dep_files{'$(DEPDIR)/alloca.P' . $myobjext} = 1;
2283             &require_file_with_line ($var, $FOREIGN, 'alloca.c');
2284             &saw_extension ('c');
2285         }
2286     }
2288     if ($xname ne '' && ! &variable_defined ($xname . '_DEPENDENCIES', $cond))
2289     {
2290         &define_pretty_variable ($xname . '_DEPENDENCIES', $cond, @dep_list);
2291     }
2293     return $seen_libobjs;
2296 # Canonicalize the input parameter
2297 sub canonicalize
2299     my ($string) = @_;
2300     $string =~ tr/A-Za-z0-9_\@/_/c;
2301     return $string;
2304 # Canonicalize a name, and check to make sure the non-canonical name
2305 # is never used.  Returns canonical name.  Arguments are name and a
2306 # list of suffixes to check for.
2307 sub check_canonical_spelling
2309     my ($name, @suffixes) = @_;
2311     my $xname = &canonicalize ($name);
2312     if ($xname ne $name)
2313     {
2314         foreach my $xt (@suffixes)
2315         {
2316             &am_line_error ("$name$xt",
2317                             "invalid variable `$name$xt'; "
2318                             . "should be `$xname$xt'")
2319                 if &variable_defined ("$name$xt");
2320         }
2321     }
2323     return $xname;
2327 # handle_compile ()
2328 # -----------------
2329 # Set up the compile suite.
2330 sub handle_compile ()
2332     return
2333       unless $get_object_extension_was_run;
2335     # Boilerplate.
2336     my $default_includes = '';
2337     if (! defined $options{'nostdinc'})
2338       {
2339         $default_includes = ' -I. -I$(srcdir)';
2341         if (&variable_defined ('CONFIG_HEADER'))
2342           {
2343             foreach my $hdr (split (' ', &variable_value ('CONFIG_HEADER')))
2344               {
2345                 $default_includes .= ' -I' . dirname ($hdr);
2346               }
2347           }
2348       }
2350     my (@mostly_rms, @dist_rms);
2351     foreach my $item (sort keys %compile_clean_files)
2352     {
2353         if ($compile_clean_files{$item} == $MOSTLY_CLEAN)
2354         {
2355             push (@mostly_rms, "\t-rm -f $item");
2356         }
2357         elsif ($compile_clean_files{$item} == $DIST_CLEAN)
2358         {
2359             push (@dist_rms, "\t-rm -f $item");
2360         }
2361         else
2362         {
2363             &prog_error ("invalid entry in \%compile_clean_files");
2364         }
2365     }
2367     my ($coms, $vars, $rules) =
2368       &file_contents_internal (1, "$am_dir/compile.am",
2369                                ('DEFAULT_INCLUDES' => $default_includes,
2370                                 'MOSTLYRMS' => join ("\n", @mostly_rms),
2371                                 'DISTRMS' => join ("\n", @dist_rms)));
2372     $output_vars .= $vars;
2373     $output_rules .= "$coms$rules";
2375     if ($seen_libtool)
2376       {
2377         # Output the libtool compilation rules.
2378         $output_rules .= &file_contents ('libtool');
2379       }
2381     # Check for automatic de-ANSI-fication.
2382     if (defined $options{'ansi2knr'})
2383       {
2384         if (! $am_c_prototypes)
2385           {
2386             &am_line_error ('AUTOMAKE_OPTIONS',
2387                             "option `ansi2knr' in use but `AM_C_PROTOTYPES' not in `$configure_ac'");
2388             &keyed_aclocal_warning ('AM_C_PROTOTYPES');
2389             # Only give this error once.
2390             $am_c_prototypes = 1;
2391           }
2393         # topdir is where ansi2knr should be.
2394         if ($options{'ansi2knr'} eq 'ansi2knr')
2395           {
2396             # Only require ansi2knr files if they should appear in
2397             # this directory.
2398             &require_file_with_line ('AUTOMAKE_OPTIONS', $FOREIGN,
2399                                      'ansi2knr.c', 'ansi2knr.1');
2401             # ansi2knr needs to be built before subdirs, so unshift it.
2402             unshift (@all, '$(ANSI2KNR)');
2403           }
2405         my $ansi2knr_dir = '';
2406         $ansi2knr_dir = dirname ($options{'ansi2knr'})
2407           if $options{'ansi2knr'} ne 'ansi2knr';
2409         $output_rules .= &file_contents ('ansi2knr',
2410                                          ('ANSI2KNR-DIR' => $ansi2knr_dir));
2412     }
2417 # handle_programs ()
2418 # ------------------
2419 # Handle C programs.
2420 sub handle_programs
2422     my @proglist = &am_install_var ('progs', 'PROGRAMS',
2423                                     'bin', 'sbin', 'libexec', 'pkglib',
2424                                     'noinst', 'check');
2425     return if ! @proglist;
2427     my $seen_libobjs = 0;
2428     foreach my $one_file (@proglist)
2429     {
2430         my $obj = &get_object_extension ($one_file);
2432         # Canonicalize names and check for misspellings.
2433         my $xname = &check_canonical_spelling ($one_file, '_LDADD', '_LDFLAGS',
2434                                                '_SOURCES', '_OBJECTS',
2435                                                '_DEPENDENCIES');
2437         my $linker = &handle_source_transform ($xname, $one_file, $obj);
2439         my $xt = '';
2440         if (&variable_defined ($xname . "_LDADD"))
2441         {
2442             if (&handle_lib_objects ($xname, $xname . '_LDADD'))
2443             {
2444                 $seen_libobjs = 1;
2445             }
2446             $xt = '_LDADD';
2447         }
2448         else
2449         {
2450             # User didn't define prog_LDADD override.  So do it.
2451             &define_variable ($xname . '_LDADD', '$(LDADD)');
2453             # This does a bit too much work.  But we need it to
2454             # generate _DEPENDENCIES when appropriate.
2455             if (&variable_defined ('LDADD'))
2456             {
2457                 if (&handle_lib_objects ($xname, 'LDADD'))
2458                 {
2459                     $seen_libobjs = 1;
2460                 }
2461             }
2462             elsif (! &variable_defined ($xname . '_DEPENDENCIES'))
2463             {
2464                 &define_variable ($xname . '_DEPENDENCIES', '');
2465             }
2466             $xt = '_SOURCES'
2467         }
2469         if (&variable_defined ($xname . '_LIBADD'))
2470         {
2471             &am_line_error ($xname . '_LIBADD',
2472                             "use `" . $xname . "_LDADD', not `"
2473                             . $xname . "_LIBADD'");
2474         }
2476         if (! &variable_defined ($xname . '_LDFLAGS'))
2477         {
2478             # Define the prog_LDFLAGS variable.
2479             &define_variable ($xname . '_LDFLAGS', '');
2480         }
2482         # Determine program to use for link.
2483         my $xlink;
2484         if (&variable_defined ($xname . '_LINK'))
2485         {
2486             $xlink = $xname . '_LINK';
2487         }
2488         else
2489         {
2490             $xlink = $linker ? $linker : 'LINK';
2491         }
2493         $output_rules .= &file_contents ('program',
2494                                          ('PROGRAM'  => $one_file,
2495                                           'XPROGRAM' => $xname,
2496                                           'XLINK'    => $xlink));
2497     }
2499     if (&variable_defined ('LDADD') && &handle_lib_objects ('', 'LDADD'))
2500     {
2501         $seen_libobjs = 1;
2502     }
2504     if ($seen_libobjs)
2505     {
2506         foreach my $one_file (@proglist)
2507         {
2508             my $xname = &canonicalize ($one_file);
2510             if (&variable_defined ($xname . '_LDADD'))
2511             {
2512                 &check_libobjs_sources ($xname, $xname . '_LDADD');
2513             }
2514             elsif (&variable_defined ('LDADD'))
2515             {
2516                 &check_libobjs_sources ($xname, 'LDADD');
2517             }
2518         }
2519     }
2523 # handle_libraries ()
2524 # -------------------
2525 # Handle libraries.
2526 sub handle_libraries
2528     my @liblist = &am_install_var ('libs', 'LIBRARIES',
2529                                    'lib', 'pkglib', 'noinst', 'check');
2530     return if ! @liblist;
2532     my %valid = &am_primary_prefixes ('LIBRARIES', 0, 'lib', 'pkglib',
2533                                       'noinst', 'check');
2534     if (! defined $configure_vars{'RANLIB'})
2535     {
2536         foreach my $key (keys %valid)
2537         {
2538             if (&variable_defined ($key . '_LIBRARIES'))
2539             {
2540                 &am_line_error ($key . '_LIBRARIES', "library used but `RANLIB' not defined in `$configure_ac'");
2541                 # Only get this error once.  If this is ever printed,
2542                 # we have a bug.
2543                 $configure_vars{'RANLIB'} = 'BUG';
2544                 last;
2545             }
2546         }
2547     }
2549     my $seen_libobjs = 0;
2550     foreach my $onelib (@liblist)
2551     {
2552         # Check that the library fits the standard naming convention.
2553         if ($onelib !~ /^lib.*\.a$/)
2554         {
2555             # FIXME should put line number here.  That means mapping
2556             # from library name back to variable name.
2557             &am_error ("`$onelib' is not a standard library name");
2558         }
2560         my $obj = &get_object_extension ($onelib);
2562         # Canonicalize names and check for misspellings.
2563         my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_SOURCES',
2564                                               '_OBJECTS', '_DEPENDENCIES',
2565                                               '_AR');
2567         if (! &variable_defined ($xlib . '_AR'))
2568         {
2569             &define_variable ($xlib . '_AR', '$(AR) cru');
2570         }
2572         if (&variable_defined ($xlib . '_LIBADD'))
2573         {
2574             if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2575             {
2576                 $seen_libobjs = 1;
2577             }
2578         }
2579         else
2580         {
2581             # Generate support for conditional object inclusion in
2582             # libraries.
2583             &define_variable ($xlib . "_LIBADD", '');
2584         }
2586         if (&variable_defined ($xlib . '_LDADD'))
2587         {
2588             &am_line_error ($xlib . '_LDADD',
2589                             "use `" . $xlib . "_LIBADD', not `"
2590                             . $xlib . "_LDADD'");
2591         }
2593         # Make sure we at look at this.
2594         &examine_variable ($xlib . '_DEPENDENCIES');
2596         &handle_source_transform ($xlib, $onelib, $obj);
2598         $output_rules .= &file_contents ('library',
2599                                          ('LIBRARY'  => $onelib,
2600                                           'XLIBRARY' => $xlib));
2601     }
2603     if ($seen_libobjs)
2604     {
2605         foreach my $onelib (@liblist)
2606         {
2607             my $xlib = &canonicalize ($onelib);
2608             if (&variable_defined ($xlib . '_LIBADD'))
2609             {
2610                 &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
2611             }
2612         }
2613     }
2617 # handle_ltlibraries ()
2618 # ---------------------
2619 # Handle shared libraries.
2620 sub handle_ltlibraries
2622     my @liblist = &am_install_var ('ltlib', 'LTLIBRARIES',
2623                                    'noinst', 'lib', 'pkglib', 'check');
2624     return if ! @liblist;
2626     my %instdirs;
2627     my %valid = &am_primary_prefixes ('LTLIBRARIES', 0, 'lib', 'pkglib',
2628                                       'noinst', 'check');
2630     foreach my $key (keys %valid)
2631     {
2632         if (&variable_defined ($key . '_LTLIBRARIES'))
2633         {
2634             if (!$seen_libtool)
2635             {
2636                 &am_line_error ($key . '_LTLIBRARIES', "library used but `LIBTOOL' not defined in `$configure_ac'");
2637                 # Only get this error once.  If this is ever printed,
2638                 # we have a bug.
2639                 $configure_vars{'LIBTOOL'} = 'BUG';
2640                 $seen_libtool = 1;
2641             }
2643             # Get the installation directory of each library.
2644             for (&variable_value_as_list ($key . '_LTLIBRARIES', 'all'))
2645             {
2646                 if ($instdirs{$_})
2647                 {
2648                     &am_error ("`$_' is already going to be installed in `$instdirs{$_}'");
2649                 }
2650                 else
2651                 {
2652                     $instdirs{$_} = $key;
2653                 }
2654             }
2655         }
2656     }
2658     my $seen_libobjs = 0;
2659     foreach my $onelib (@liblist)
2660     {
2661         my $obj = &get_object_extension ($onelib);
2663         # Canonicalize names and check for misspellings.
2664         my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_LDFLAGS',
2665                                               '_SOURCES', '_OBJECTS',
2666                                               '_DEPENDENCIES');
2668         if (! &variable_defined ($xlib . '_LDFLAGS'))
2669         {
2670             # Define the lib_LDFLAGS variable.
2671             &define_variable ($xlib . '_LDFLAGS', '');
2672         }
2674         # Check that the library fits the standard naming convention.
2675         my $libname_rx = "^lib.*\.la";
2676         if ((&variable_defined ($xlib . '_LDFLAGS')
2677              && grep (/-module/, &variable_value_as_list ($xlib . '_LDFLAGS',
2678                                                           'all')))
2679             || (&variable_defined ('LDFLAGS')
2680                 && grep (/-module/, &variable_value_as_list ('LDFLAGS',
2681                                                              'all'))))
2682         {
2683                 # Relax name checking for libtool modules.
2684                 $libname_rx = "\.la";
2685         }
2686         if ($onelib !~ /$libname_rx$/)
2687         {
2688             # FIXME this should only be a warning for foreign packages
2689             # FIXME should put line number here.  That means mapping
2690             # from library name back to variable name.
2691             &am_error ("`$onelib' is not a standard libtool library name");
2692         }
2694         if (&variable_defined ($xlib . '_LIBADD'))
2695         {
2696             if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2697             {
2698                 $seen_libobjs = 1;
2699             }
2700         }
2701         else
2702         {
2703             # Generate support for conditional object inclusion in
2704             # libraries.
2705             &define_variable ($xlib . "_LIBADD", '');
2706         }
2708         if (&variable_defined ($xlib . '_LDADD'))
2709         {
2710             &am_line_error ($xlib . '_LDADD',
2711                             "use `" . $xlib . "_LIBADD', not `"
2712                             . $xlib . "_LDADD'");
2713         }
2715         # Make sure we at look at this.
2716         &examine_variable ($xlib . '_DEPENDENCIES');
2718         my $linker = &handle_source_transform ($xlib, $onelib, $obj);
2720         # Determine program to use for link.
2721         my $xlink;
2722         if (&variable_defined ($xlib . '_LINK'))
2723         {
2724             $xlink = $xlib . '_LINK';
2725         }
2726         else
2727         {
2728             $xlink = $linker ? $linker : 'LINK';
2729         }
2731         my $rpath;
2732         if ($instdirs{$onelib} eq 'EXTRA'
2733             || $instdirs{$onelib} eq 'noinst'
2734             || $instdirs{$onelib} eq 'check')
2735         {
2736             # It's an EXTRA_ library, so we can't specify -rpath,
2737             # because we don't know where the library will end up.
2738             # The user probably knows, but generally speaking automake
2739             # doesn't -- and in fact configure could decide
2740             # dynamically between two different locations.
2741             $rpath = '';
2742         }
2743         else
2744         {
2745             $rpath = ('-rpath $(' . $instdirs{$onelib} . 'dir)');
2746         }
2748         $output_rules .= &file_contents ('ltlibrary',
2749                                          ('LTLIBRARY'  => $onelib,
2750                                           'XLTLIBRARY' => $xlib,
2751                                           'RPATH'      => $rpath,
2752                                           'XLINK'      => $xlink));
2753     }
2755     if ($seen_libobjs)
2756     {
2757         foreach my $onelib (@liblist)
2758         {
2759             my $xlib = &canonicalize ($onelib);
2760             if (&variable_defined ($xlib . '_LIBADD'))
2761             {
2762                 &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
2763             }
2764         }
2765     }
2768 # See if any _SOURCES variable were misspelled.  Also, make sure that
2769 # EXTRA_ variables don't contain configure substitutions.
2770 sub check_typos
2772     foreach my $varname (keys %var_value)
2773     {
2774         foreach my $primary ('_SOURCES', '_LIBADD', '_LDADD', '_LDFLAGS',
2775                              '_DEPENDENCIES')
2776         {
2777             if ($varname =~ /$primary$/ && ! $content_seen{$varname})
2778             {
2779                 &am_line_error ($varname,
2780                                 "invalid unused variable name: `$varname'");
2781             }
2782         }
2783     }
2786 # Handle scripts.
2787 sub handle_scripts
2789     # NOTE we no longer automatically clean SCRIPTS, because it is
2790     # useful to sometimes distribute scripts verbatim.  This happens
2791     # eg in Automake itself.
2792     &am_install_var ('-candist', 'scripts', 'SCRIPTS',
2793                      'bin', 'sbin', 'libexec', 'pkgdata',
2794                      'noinst', 'check');
2796     my $scripts_installed = 0;
2797     # Set $scripts_installed if appropriate.  Make sure we only find
2798     # scripts which are actually installed -- this is why we can't
2799     # simply use the return value of am_install_var.
2800     my %valid = &am_primary_prefixes ('SCRIPTS', 1, 'bin', 'sbin',
2801                                       'libexec', 'pkgdata',
2802                                       'noinst', 'check');
2803     foreach my $key (keys %valid)
2804     {
2805         if ($key ne 'noinst'
2806             && $key ne 'check'
2807             && &variable_defined ($key . '_SCRIPTS'))
2808         {
2809             $scripts_installed = 1;
2810             # push (@check_tests, 'check-' . $key . 'SCRIPTS');
2811         }
2812     }
2816 # ($OUTFILE, $VFILE, @CLEAN_FILES)
2817 # &scan_texinfo_file ($FILENAME)
2818 # ------------------------------
2819 # $OUTFILE is the name of the info file produced by $FILENAME.
2820 # $VFILE is the name of the version.texi file used (empty if none).
2821 # @CLEAN_FILES is the list of by products (indexes etc.)
2822 sub scan_texinfo_file
2824     my ($filename) = @_;
2826     # These are always created, no matter whether indexes are used or not.
2827     my @clean_suffixes = ('aux', 'dvi', 'log', 'ps', 'toc',
2828                           # grep new.*index texinfo.tex
2829                           'cp', 'fn', 'ky', 'vr', 'tp', 'pg');
2831     # There are predefined indexes which don't follow the regular rules.
2832     my %predefined_index =
2833       (
2834        # cindex => *.cps
2835        'c' => 'cps', 'f' => 'fns', 'k' => 'kys',
2836        'v' => 'vrs', 't' => 'tps', 'p' => 'pgs'
2837       );
2839     # There are commands which include a hidden index command.
2840     my %hidden_index =
2841       (
2842        # deffn => *.fns.
2843        'fn' => 'fns',     'un' => 'fns',
2844        'typefn' => 'fns', 'typefun' => 'fns',
2845        'mac' => 'fns', 'spec' => 'fns',
2846        'op' => 'fns',  'typeop' => 'fns',
2847        'method' => 'fns', 'typemethod' => 'fns',
2849        'vr' => 'vrs', 'var' => 'vrs',
2850        'typevr' => 'vrs', 'typevar' => 'vrs',
2851        'opt' => 'vrs',
2852        'cv' => 'vrs',
2853        'ivar' => 'vrs', 'typeivar' => 'vrs',
2855        'tp' => 'tps'
2856       );
2858     # Indexes stored into another one.  In this case, the *.??s file
2859     # is not created.
2860     my @syncodeindexes = ();
2862     my $texi = new IO::File ("< $filename");
2863     if (! $texi)
2864       {
2865         &am_error ("couldn't open `$filename': $!");
2866         return '';
2867     }
2868     print "$me: reading $filename\n" if $verbose;
2870     my ($outfile, $vfile);
2871     while ($_ = $texi->getline)
2872     {
2873       if (/^\@setfilename +(\S+)/)
2874       {
2875         $outfile = $1;
2876         if ($outfile =~ /\.(.+)$/ && $1 ne 'info')
2877           {
2878             &am_file_error ($filename, "$.: ",
2879                             "output `$outfile' has unrecognized extension");
2880             return;
2881           }
2882       }
2883       # A "version.texi" file is actually any file whose name
2884       # matches "vers*.texi".
2885       elsif (/^\@include\s+(vers[^.]*\.texi)\s*$/)
2886       {
2887         $vfile = $1;
2888       }
2890       # Try to find what are the indexes which are used.
2892       # Creating a new category of index.
2893       elsif (/^\@def(code)?index (\w+)/)
2894       {
2895         push @clean_suffixes, $2;
2896       }
2898       # Storing in a predefined index.
2899       elsif (/^\@([cfkvtp])index /)
2900       {
2901         push @clean_suffixes, $predefined_index{$1};
2902       }
2903       elsif (/^\@def(\w+) /)
2904       {
2905         push @clean_suffixes, $hidden_index{$1}
2906           if defined $hidden_index{$1};
2907       }
2909       # Merging an index into an another.
2910       elsif (/^\@syn(code)?index (\w+) \w+/)
2911       {
2912         push @syncodeindexes, "$2s";
2913       }
2915     }
2916     $texi->close;
2918     if ($outfile eq '')
2919       {
2920         &am_error ("`$filename' missing \@setfilename");
2921         return;
2922       }
2924     my $infobase = basename ($filename);
2925     $infobase =~ s/\.te?xi(nfo)?$//;
2926     my %clean_files;
2927     grep { $clean_files{"$infobase.$_"} = 1    } @clean_suffixes;
2928     grep { delete $clean_files{"$infobase.$_"} } @syncodeindexes;
2929     return ($outfile, $vfile, (sort keys %clean_files));
2933 # handle_texinfo ()
2934 # -----------------
2935 # Handle all Texinfo source.
2936 sub handle_texinfo
2938     &am_line_error ('TEXINFOS',
2939                     "`TEXINFOS' is an anachronism; use `info_TEXINFOS'")
2940         if &variable_defined ('TEXINFOS');
2941     return if (! &variable_defined ('info_TEXINFOS')
2942                && ! &variable_defined ('html_TEXINFOS'));
2944     if (&variable_defined ('html_TEXINFOS'))
2945     {
2946         &am_line_error ('html_TEXINFOS',
2947                         "HTML generation not yet supported");
2948         return;
2949     }
2951     my @texis = &variable_value_as_list ('info_TEXINFOS', 'all');
2953     my (@info_deps_list, @dvis_list, @texi_deps);
2954     my %versions;
2955     my $done = 0;
2956     my @texi_cleans;
2957     my $canonical;
2959     my %texi_suffixes;
2960     foreach my $info_cursor (@texis)
2961     {
2962         my $infobase = $info_cursor;
2963         $infobase =~ s/\.(txi|texinfo|texi)$//;
2965         if ($infobase eq $info_cursor)
2966         {
2967             # FIXME: report line number.
2968             &am_error ("texinfo file `$info_cursor' has unrecognized extension");
2969             next;
2970         }
2971         $texi_suffixes{$1} = 1;
2973         # If 'version.texi' is referenced by input file, then include
2974         # automatic versioning capability.
2975         my ($out_file, $vtexi, @clean_files) =
2976           &scan_texinfo_file ("$relative_dir/$info_cursor")
2977             or next;
2978         push (@texi_cleans, @clean_files);
2980         if ($vtexi)
2981         {
2982             &am_error ("`$vtexi', included in `$info_cursor', also included in `$versions{$vtexi}'")
2983                 if (defined $versions{$vtexi});
2984             $versions{$vtexi} = $info_cursor;
2986             # We number the stamp-vti files.  This is doable since the
2987             # actual names don't matter much.  We only number starting
2988             # with the second one, so that the common case looks nice.
2989             my $vti = ($done ? $done : 'vti');
2990             ++$done;
2992             &require_conf_file_with_line ('info_TEXINFOS', $FOREIGN,
2993                                           'mdate-sh');
2995             my $conf_dir;
2996             if ($config_aux_dir eq '.' || $config_aux_dir eq '')
2997             {
2998                 $conf_dir = '$(srcdir)/';
2999             }
3000             else
3001             {
3002                 $conf_dir = $config_aux_dir;
3003                 $conf_dir .= '/' unless $conf_dir =~ /\/$/;
3004             }
3005             $output_rules .= &file_contents ('texi-vers',
3006                                              ('TEXI'  => $info_cursor,
3007                                               'VTI'   => $vti,
3008                                               'VTEXI' => $vtexi,
3009                                               'MDDIR' => $conf_dir));
3010         }
3012         # If user specified file_TEXINFOS, then use that as explicit
3013         # dependency list.
3014         @texi_deps = ();
3015         push (@texi_deps, $info_cursor);
3016         # Prefix with $(srcdir) because some version of make won't
3017         # work if the target has it and the dependency doesn't.
3018         push (@texi_deps, '$(srcdir)/' . $vtexi) if $vtexi;
3020         my $canonical = &canonicalize ($infobase);
3021         if (&variable_defined ($canonical . "_TEXINFOS"))
3022         {
3023             push (@texi_deps, '$(' . $canonical . '_TEXINFOS)');
3024             &push_dist_common ('$(' . $canonical . '_TEXINFOS)');
3025         }
3027         $output_rules .= ("\n" . $out_file . ": "
3028                           . join (' ', @texi_deps)
3029                           . "\n" . $infobase . ".dvi: "
3030                           . join (' ', @texi_deps)
3031                           . "\n");
3033         push (@info_deps_list, $out_file);
3034         push (@dvis_list, $infobase . '.dvi');
3035     }
3037     # Handle location of texinfo.tex.
3038     my $need_texi_file = 0;
3039     my $texinfodir;
3040     if ($cygnus_mode)
3041     {
3042         $texinfodir = '$(top_srcdir)/../texinfo';
3043         &define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex");
3045     }
3046     elsif ($config_aux_dir ne '.' && $config_aux_dir ne '')
3047     {
3048         $texinfodir = $config_aux_dir;
3049         &define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex");
3050         $need_texi_file = 2; # so that we require_conf_file later
3051     }
3052     elsif (&variable_defined ('TEXINFO_TEX'))
3053     {
3054         # The user defined TEXINFO_TEX so assume he knows what he is
3055         # doing.
3056         $texinfodir = ('$(srcdir)/'
3057                        . dirname (&variable_value ('TEXINFO_TEX')));
3058     }
3059     else
3060     {
3061         $texinfodir = '$(srcdir)';
3062         $need_texi_file = 1;
3063     }
3065     foreach my $txsfx (sort keys %texi_suffixes)
3066     {
3067         $output_rules .= &file_contents ('texibuild',
3068                                          ('TEXINFODIR' => $texinfodir,
3069                                           'SUFFIX'     => $txsfx));
3070     }
3072     my $texiclean = &pretty_print_internal ("", "\t  ", @texi_cleans);
3073     $output_rules .=  &file_contents ('texinfos',
3074                                       ('TEXICLEAN' => $texiclean));
3076     push (@dist_targets, 'dist-info');
3078     if (! defined $options{'no-installinfo'})
3079     {
3080         # Make sure documentation is made and installed first.  Use
3081         # $(INFO_DEPS), not 'info', because otherwise recursive makes
3082         # get run twice during "make all".
3083         unshift (@all, '$(INFO_DEPS)');
3084     }
3086     &define_variable ("INFO_DEPS", join (' ', @info_deps_list));
3087     &define_variable ("DVIS", join (' ', @dvis_list));
3088     # This next isn't strictly needed now -- the places that look here
3089     # could easily be changed to look in info_TEXINFOS.  But this is
3090     # probably better, in case noinst_TEXINFOS is ever supported.
3091     &define_variable ("TEXINFOS", &variable_value ('info_TEXINFOS'));
3093     # Do some error checking.  Note that this file is not required
3094     # when in Cygnus mode; instead we defined TEXINFO_TEX explicitly
3095     # up above.
3096     if ($need_texi_file && ! defined $options{'no-texinfo.tex'})
3097     {
3098         if ($need_texi_file > 1)
3099         {
3100             &require_conf_file_with_line ('info_TEXINFOS', $FOREIGN,
3101                                           'texinfo.tex');
3102         }
3103         else
3104         {
3105             &require_file_with_line ('info_TEXINFOS', $FOREIGN, 'texinfo.tex');
3106         }
3107     }
3110 # Handle any man pages.
3111 sub handle_man_pages
3113     &am_line_error ('MANS', "`MANS' is an anachronism; use `man_MANS'")
3114         if &variable_defined ('MANS');
3116     # Find all the sections in use.  We do this by first looking for
3117     # "standard" sections, and then looking for any additional
3118     # sections used in man_MANS.
3119     my (%sections, %vlist);
3120     # We handle nodist_ for uniformity.  man pages aren't distributed
3121     # by default so it isn't actually very important.
3122     foreach my $pfx ('', 'dist_', 'nodist_')
3123     {
3124         # Add more sections as needed.
3125         foreach my $section ('0'..'9', 'n', 'l')
3126         {
3127             if (&variable_defined ($pfx . 'man' . $section . '_MANS'))
3128             {
3129                 $sections{$section} = 1;
3130                 $vlist{'$(' . $pfx . 'man' . $section . '_MANS)'} = 1;
3132                 &push_dist_common ('$(' . $pfx . 'man' . $section . '_MANS)')
3133                     if $pfx eq 'dist_';
3134             }
3135         }
3137         if (&variable_defined ($pfx . 'man_MANS'))
3138         {
3139             $vlist{'$(' . $pfx . 'man_MANS)'} = 1;
3140             foreach (&variable_value_as_list ($pfx . 'man_MANS', 'all'))
3141             {
3142                 # A page like `foo.1c' goes into man1dir.
3143                 if (/\.([0-9a-z])([a-z]*)$/)
3144                 {
3145                     $sections{$1} = 1;
3146                 }
3147             }
3149             &push_dist_common ('$(' . $pfx . 'man_MANS)')
3150                 if $pfx eq 'dist_';
3151         }
3152     }
3154     return unless %sections;
3156     # Now for each section, generate an install and unintall rule.
3157     # Sort sections so output is deterministic.
3158     foreach my $section (sort keys %sections)
3159     {
3160         $output_rules .= &file_contents ('mans', ('SECTION' => $section));
3161     }
3163     $output_vars .= &file_contents ('mans-vars',
3164                                     ('MANS' => join (' ', sort keys %vlist)));
3166     if (! defined $options{'no-installman'})
3167     {
3168         push (@all, '$(MANS)');
3169     }
3172 # Handle DATA variables.
3173 sub handle_data
3175     &am_install_var ('-noextra', '-candist', 'data', 'DATA',
3176                      'data', 'sysconf', 'sharedstate', 'localstate',
3177                      'pkgdata', 'noinst', 'check');
3180 # Handle TAGS.
3181 sub handle_tags
3183     my @tag_deps = ();
3184     if (&variable_defined ('SUBDIRS'))
3185     {
3186         $output_rules .= ("tags-recursive:\n"
3187                           . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3188                           # Never fail here if a subdir fails; it
3189                           # isn't important.
3190                           . "\t  test \"\$\$subdir\" = . || (cd \$\$subdir"
3191                           . " && \$(MAKE) \$(AM_MAKEFLAGS) tags); \\\n"
3192                           . "\tdone\n");
3193         push (@tag_deps, 'tags-recursive');
3194         &depend ('.PHONY', 'tags-recursive');
3195     }
3197     if (&saw_sources_p (1)
3198         || &variable_defined ('ETAGS_ARGS')
3199         || @tag_deps)
3200     {
3201         my $config = '';
3202         foreach my $one_hdr (@config_headers)
3203         {
3204             if ($relative_dir eq dirname ($one_hdr))
3205             {
3206                 # The config header is in this directory.  So require it.
3207                 $config .= ' ' if $config;
3208                 $config .= basename ($one_hdr);
3209             }
3210         }
3211         $output_rules .= &file_contents ('tags',
3212                                          ('CONFIG' => $config,
3213                                           'DIRS'   => join (' ', @tag_deps)));
3214         &examine_variable ('TAGS_DEPENDENCIES');
3215     }
3216     elsif (&variable_defined ('TAGS_DEPENDENCIES'))
3217     {
3218         &am_line_error ('TAGS_DEPENDENCIES',
3219                         "doesn't make sense to define `TAGS_DEPENDENCIES' without sources or `ETAGS_ARGS'");
3220     }
3221     else
3222     {
3223         # Every Makefile must define some sort of TAGS rule.
3224         # Otherwise, it would be possible for a top-level "make TAGS"
3225         # to fail because some subdirectory failed.
3226         $output_rules .= "tags: TAGS\nTAGS:\n\n";
3227     }
3230 # Handle multilib support.
3231 sub handle_multilib
3233     return unless $seen_multilib;
3235     $output_rules .= &file_contents ('multilib');
3239 # $BOOLEAN
3240 # &for_dist_common ($A, $B)
3241 # -------------------------
3242 # Subroutine for &handle_dist: sort files to dist.
3244 # We put README first because it then becomes easier to make a
3245 # Usenet-compliant shar file (in these, README must be first).
3247 # FIXME: do more ordering of files here.
3248 sub for_dist_common
3250     return 0
3251         if $a eq $b;
3252     return -1
3253         if $a eq 'README';
3254     return 1
3255         if $b eq 'README';
3256     return $a cmp $b;
3260 # handle_dist ($MAKEFILE)
3261 # -----------------------
3262 # Handle 'dist' target.
3263 sub handle_dist
3265     my ($makefile) = @_;
3267     # `make dist' isn't used in a Cygnus-style tree.
3268     # Omit the rules so that people don't try to use them.
3269     return if $cygnus_mode;
3271     # Set up maint_charset.
3272     $local_maint_charset = &variable_value ('MAINT_CHARSET')
3273         if &variable_defined ('MAINT_CHARSET');
3274     $maint_charset = $local_maint_charset
3275         if $relative_dir eq '.';
3277     if (&variable_defined ('DIST_CHARSET'))
3278     {
3279         &am_line_error ('DIST_CHARSET',
3280                         "DIST_CHARSET defined but no MAINT_CHARSET defined")
3281             if ! $local_maint_charset;
3282         if ($relative_dir eq '.')
3283         {
3284             $dist_charset = &variable_value ('DIST_CHARSET')
3285         }
3286         else
3287         {
3288             &am_line_error ('DIST_CHARSET',
3289                             "DIST_CHARSET can only be defined at top level");
3290         }
3291     }
3293     # Look for common files that should be included in distribution.
3294     foreach my $cfile (@common_files)
3295     {
3296         if (-f ($relative_dir . "/" . $cfile))
3297         {
3298             &push_dist_common ($cfile);
3299         }
3300     }
3302     # We might copy elements from $configure_dist_common to
3303     # %dist_common if we think we need to.  If the file appears in our
3304     # directory, we would have discovered it already, so we don't
3305     # check that.  But if the file is in a subdir without a Makefile,
3306     # we want to distribute it here if we are doing `.'.  Ugly!
3307     if ($relative_dir eq '.')
3308     {
3309        foreach my $file (split (' ' , $configure_dist_common))
3310        {
3311            if (! &is_make_dir (dirname ($file)))
3312            {
3313                &push_dist_common ($file);
3314            }
3315        }
3316     }
3320     # Files to distributed.  Don't use &variable_value_as_list
3321     # as it recursively expands `$(dist_pkgdata_DATA)' etc.
3322     check_variable_defined_unconditionally ('DIST_COMMON');
3323     my @dist_common = split (' ', variable_value ('DIST_COMMON', 'TRUE'));
3324     @dist_common = uniq (sort for_dist_common (@dist_common));
3325     pretty_print ('DIST_COMMON = ', "\t", @dist_common);
3327     # Now that we've processed DIST_COMMON, disallow further attempts
3328     # to set it.
3329     $handle_dist_run = 1;
3331     # Scan EXTRA_DIST to see if we need to distribute anything from a
3332     # subdir.  If so, add it to the list.  I didn't want to do this
3333     # originally, but there were so many requests that I finally
3334     # relented.
3335     if (&variable_defined ('EXTRA_DIST'))
3336     {
3337         # FIXME: This should be fixed to work with conditionals.  That
3338         # will require only making the entries in %dist_dirs under the
3339         # appropriate condition.  This is meaningful if the nature of
3340         # the distribution should depend upon the configure options
3341         # used.
3342         foreach (&variable_value_as_list ('EXTRA_DIST', ''))
3343         {
3344             next if /^\@.*\@$/;
3345             next unless s,/+[^/]+$,,;
3346             $dist_dirs{$_} = 1
3347                 unless $_ eq '.';
3348         }
3349     }
3351     # We have to check DIST_COMMON for extra directories in case the
3352     # user put a source used in AC_OUTPUT into a subdir.
3353     foreach (&variable_value_as_list ('DIST_COMMON', 'all'))
3354     {
3355         next if /^\@.*\@$/;
3356         next unless s,/+[^/]+$,,;
3357         $dist_dirs{$_} = 1
3358             unless $_ eq '.';
3359     }
3361     # Rule to check whether a distribution is viable.
3362     my %transform = ('DISTCHECK-HOOK' => &target_defined ('distcheck-hook'),
3363                      'GETTEXT'        => $seen_gettext);
3365     # Prepend $(distdir) to each directory given.
3366     my %rewritten;
3367     grep ($rewritten{'$(distdir)/' . $_} = 1, keys %dist_dirs);
3368     $transform{'DISTDIRS'} = join (' ', sort keys %rewritten);
3370     # If we have SUBDIRS, create all dist subdirectories and do
3371     # recursive build.
3372     if (&variable_defined ('SUBDIRS'))
3373     {
3374         # If SUBDIRS is conditionally defined, then set DIST_SUBDIRS
3375         # to all possible directories, and use it.  If DIST_SUBDIRS is
3376         # defined, just use it.
3377         my $dist_subdir_name;
3378         # Note that we check DIST_SUBDIRS first on purpose.  At least
3379         # one project uses so many conditional subdirectories that
3380         # calling variable_conditionally_defined on SUBDIRS will cause
3381         # automake to grow to 150Mb.  Sigh.
3382         if (&variable_defined ('DIST_SUBDIRS')
3383             || variable_conditionally_defined ('SUBDIRS'))
3384         {
3385             $dist_subdir_name = 'DIST_SUBDIRS';
3386             if (! &variable_defined ('DIST_SUBDIRS'))
3387             {
3388                 &define_pretty_variable
3389                   ('DIST_SUBDIRS', '',
3390                    uniq (&variable_value_as_list ('SUBDIRS', 'all')));
3391             }
3392         }
3393         else
3394         {
3395             $dist_subdir_name = 'SUBDIRS';
3396             # We always define this because that is what `distclean'
3397             # wants.
3398             &define_pretty_variable ('DIST_SUBDIRS', '', '$(SUBDIRS)');
3399         }
3401         $transform{'DIST_SUBDIR_NAME'} = $dist_subdir_name;
3402     }
3404     # If the target `dist-hook' exists, make sure it is run.  This
3405     # allows users to do random weird things to the distribution
3406     # before it is packaged up.
3407     push (@dist_targets, 'dist-hook')
3408       if &target_defined ('dist-hook');
3409     $transform{'DIST-TARGETS'} = join(' ', @dist_targets);
3411     # Defining $(DISTDIR).
3412     $transform{'DISTDIR'} = !&variable_defined('distdir');
3413     $transform{'TOP_DISTDIR'} = backname ($relative_dir);
3415     $output_rules .= &file_contents ('distdir', %transform);
3419 # Handle auto-dependency code.
3420 sub handle_dependencies
3422     if ($use_dependencies)
3423     {
3424         # Include auto-dep code.  Don't include it if DEP_FILES would
3425         # be empty.
3426         if (&saw_sources_p (0) && keys %dep_files)
3427         {
3428             my $config_aux_dir_specified = ($config_aux_dir ne '.'
3429                                             && $config_aux_dir ne '');
3431             # Set $require_file_found{'depcomp'} if the depcomp file exists,
3432             # before calling require_config_file on `depcomp'.  This makes
3433             # require_file_internal skip its buggy existence test that would
3434             # make automake fail (with `required file `lib/depcomp' not found')
3435             # when AC_CONFIG_AUX_DIR is not set.  See tests/subdir4.test.
3436             my $depcomp_dir = ($config_aux_dir_specified ? $config_aux_dir
3437                                : '.');
3438             $require_file_found{'depcomp'} = 1 if -f "$depcomp_dir/depcomp";
3440             # Set location of depcomp.
3441             my $prefix = ($config_aux_dir_specified ? $config_aux_dir
3442                           : '$(top_srcdir)');
3444             &define_variable ('depcomp', "\$(SHELL) $prefix/depcomp");
3446             &require_config_file ($FOREIGN, 'depcomp');
3448             my @deplist = sort keys %dep_files;
3450             # We define this as a conditional variable because BSD
3451             # make can't handle backslashes for continuing comments on
3452             # the following line.
3453             &define_pretty_variable ('DEP_FILES', 'AMDEP_TRUE', @deplist);
3455             # Generate each `include' individually.  Irix 6 make will
3456             # not properly include several files resulting from a
3457             # variable expansion; generating many separate includes
3458             # seems safest.
3459             $output_rules .= "\n";
3460             foreach my $iter (@deplist)
3461             {
3462                 # The strange concatentation is used to avoid
3463                 # substitutions from our own configure.
3464                 $output_rules .= ('@AMDEP' . '_TRUE@@_am_include@ @_am_quote@'
3465                                   . $iter . '@_am_quote@' . "\n");
3466             }
3468             $output_rules .= &file_contents ('depend');
3469         }
3470     }
3471     else
3472     {
3473         &define_variable ('depcomp', '');
3474     }
3476     foreach my $lang (values %languages)
3477     {
3478         if ($lang->autodep ne 'no')
3479           {
3480             add_depend2 ($lang);
3481           }
3482     }
3485 # Handle subdirectories.
3486 sub handle_subdirs
3488     return
3489       unless &variable_defined ('SUBDIRS');
3491     # Make sure each directory mentioned in SUBDIRS actually exists.
3492     foreach my $dir (&variable_value_as_list ('SUBDIRS', 'all'))
3493     {
3494         # Skip directories substituted by configure.
3495         next if $dir =~ /^\@.*\@$/;
3497         if (! -d $am_relative_dir . '/' . $dir)
3498         {
3499             &am_line_error ('SUBDIRS',
3500                             "required directory $am_relative_dir/$dir does not exist");
3501             next;
3502         }
3504         &am_line_error ('SUBDIRS', "directory should not contain `/'")
3505             if $dir =~ /\//;
3506     }
3508     $output_rules .= &file_contents ('subdirs');
3509     variable_pretty_output ('RECURSIVE_TARGETS', 'TRUE');
3513 # ($REGEN, @DEPENDENCIES)
3514 # &scan_aclocal_m4
3515 # ----------------
3516 # If aclocal.m4 creation is automated, return the list of its dependencies.
3517 sub scan_aclocal_m4
3519     my $regen_aclocal = 0;
3521     return (0, ())
3522       unless $relative_dir eq '.';
3524     &examine_variable ('CONFIG_STATUS_DEPENDENCIES');
3525     &examine_variable ('CONFIGURE_DEPENDENCIES');
3527     if (-f 'aclocal.m4')
3528     {
3529         &define_variable ("ACLOCAL_M4", '$(top_srcdir)/aclocal.m4');
3530         &push_dist_common ('aclocal.m4');
3532         my $aclocal = new IO::File ("< aclocal.m4");
3533         if ($aclocal)
3534         {
3535             my $line = $aclocal->getline;
3536             $aclocal->close;
3538             if ($line =~ 'generated automatically by aclocal')
3539             {
3540                 $regen_aclocal = 1;
3541             }
3542         }
3543     }
3545     my @ac_deps = ();
3547     if (-f 'acinclude.m4')
3548     {
3549         $regen_aclocal = 1;
3550         push @ac_deps, 'acinclude.m4';
3551     }
3553     if (&variable_defined ('ACLOCAL_M4_SOURCES'))
3554     {
3555         push (@ac_deps, '$(ACLOCAL_M4_SOURCES)');
3556     }
3557     elsif (&variable_defined ('ACLOCAL_AMFLAGS'))
3558     {
3559         # Scan all -I directories for m4 files.  These are our
3560         # dependencies.
3561         my $examine_next = 0;
3562         foreach my $amdir (&variable_value_as_list ('ACLOCAL_AMFLAGS', ''))
3563         {
3564             if ($examine_next)
3565             {
3566                 $examine_next = 0;
3567                 if ($amdir !~ /^\// && -d $amdir)
3568                 {
3569                     foreach my $ac_dep (&my_glob ($amdir . '/*.m4'))
3570                     {
3571                         $ac_dep =~ s/^\.\/+//;
3572                         push (@ac_deps, $ac_dep)
3573                           unless $ac_dep eq "aclocal.m4"
3574                             || $ac_dep eq "acinclude.m4";
3575                     }
3576                 }
3577             }
3578             elsif ($amdir eq '-I')
3579             {
3580                 $examine_next = 1;
3581             }
3582         }
3583     }
3585     # Note that it might be possible that aclocal.m4 doesn't exist but
3586     # should be auto-generated.  This case probably isn't very
3587     # important.
3589     return ($regen_aclocal, @ac_deps);
3592 # Rewrite a list of input files into a form suitable to put on a
3593 # dependency list.  The idea is that if an input file has a directory
3594 # part the same as the current directory, then the directory part is
3595 # simply removed.  But if the directory part is different, then
3596 # $(top_srcdir) is prepended.  Among other things, this is used to
3597 # generate the dependency list for the output files generated by
3598 # AC_OUTPUT.  Consider what the dependencies should look like in this
3599 # case:
3600 #   AC_OUTPUT(src/out:src/in1:lib/in2)
3601 # The first argument, ADD_SRCDIR, is 1 if $(top_srcdir) should be added.
3602 # If 0 then files that require this addition will simply be ignored.
3603 sub rewrite_inputs_into_dependencies
3605     my ($add_srcdir, @inputs) = @_;
3606     my @newinputs;
3608     foreach my $single (@inputs)
3609     {
3610         if (dirname ($single) eq $relative_dir)
3611         {
3612             push (@newinputs, basename ($single));
3613         }
3614         elsif ($add_srcdir)
3615         {
3616             push (@newinputs, '$(top_srcdir)/' . $single);
3617         }
3618     }
3620     return @newinputs;
3623 # Handle remaking and configure stuff.
3624 # We need the name of the input file, to do proper remaking rules.
3625 sub handle_configure
3627     my ($local, $input, @secondary_inputs) = @_;
3629     my $input_base = basename ($input);
3630     my $local_base = basename ($local);
3632     my $amfile = $input_base . '.am';
3633     # We know we can always add '.in' because it really should be an
3634     # error if the .in was missing originally.
3635     my $infile = '$(srcdir)/' . $input_base . '.in';
3636     my $colon_infile = '';
3637     if ($local ne $input || @secondary_inputs)
3638     {
3639         $colon_infile = ':' . $input . '.in';
3640     }
3641     $colon_infile .= ':' . join (':', @secondary_inputs)
3642         if @secondary_inputs;
3644     my @rewritten = &rewrite_inputs_into_dependencies (1, @secondary_inputs);
3646     my ($regen_aclocal_m4, @aclocal_m4_deps) = scan_aclocal_m4 ();
3648     $output_rules .=
3649       &file_contents ('configure',
3650                       ('MAKEFILE'
3651                        => $local_base,
3652                        'MAKEFILE-DEPS'
3653                        => join (' ', @rewritten),
3654                        'CONFIG-MAKEFILE'
3655                        => ((($relative_dir eq '.') ? '$@' : '$(subdir)/$@')
3656                            . $colon_infile),
3657                        'MAKEFILE-IN'
3658                        => $infile,
3659                        'MAKEFILE-IN-DEPS'
3660                        => join (' ', @include_stack),
3661                        'MAKEFILE-AM'
3662                        => $amfile,
3663                        'STRICTNESS'
3664                        => $cygnus_mode ? 'cygnus' : $strictness_name,
3665                        'USE-DEPS'
3666                        => $cmdline_use_dependencies ? '' : ' --ignore-deps',
3667                        'MAKEFILE-AM-SOURCES'
3668                        =>  "$input$colon_infile",
3669                        'REGEN-ACLOCAL-M4'
3670                        => $regen_aclocal_m4,
3671                        'ACLOCAL_M4_DEPS'
3672                        => join (' ', @aclocal_m4_deps)));
3674     if ($relative_dir eq '.')
3675     {
3676         &push_dist_common ('acconfig.h')
3677             if -f 'acconfig.h';
3678     }
3680     # If we have a configure header, require it.
3681     my @local_fullnames = @config_fullnames;
3682     my @local_names = @config_names;
3683     my $hdr_index = 0;
3684     my $distclean_config = '';
3685     foreach my $one_hdr (@config_headers)
3686     {
3687         my $one_fullname = shift (@local_fullnames);
3688         my $one_name = shift (@local_names);
3689         $hdr_index += 1;
3690         my $header_dir = dirname ($one_name);
3692         # If the header is in the current directory we want to build
3693         # the header here.  Otherwise, if we're at the topmost
3694         # directory and the header's directory doesn't have a
3695         # Makefile, then we also want to build the header.
3696         if ($relative_dir eq $header_dir
3697             || ($relative_dir eq '.' && ! &is_make_dir ($header_dir)))
3698         {
3699             my ($cn_sans_dir, $stamp_dir);
3700             if ($relative_dir eq $header_dir)
3701             {
3702                 $cn_sans_dir = basename ($one_name);
3703                 $stamp_dir = '';
3704             }
3705             else
3706             {
3707                 $cn_sans_dir = $one_name;
3708                 if ($header_dir eq '.')
3709                 {
3710                     $stamp_dir = '';
3711                 }
3712                 else
3713                 {
3714                     $stamp_dir = $header_dir . '/';
3715                 }
3716             }
3718             # Compute relative path from directory holding output
3719             # header to directory holding input header.  FIXME:
3720             # doesn't handle case where we have multiple inputs.
3721             my $ch_sans_dir;
3722             if (dirname ($one_hdr) eq $relative_dir)
3723             {
3724                 $ch_sans_dir = basename ($one_hdr);
3725             }
3726             else
3727             {
3728                 $ch_sans_dir = backname ($relative_dir) . '/' . $one_hdr;
3729             }
3731             &require_file_with_conf_line ($config_header_line,
3732                                           $FOREIGN, $ch_sans_dir);
3734             # Header defined and in this directory.
3735             my @files;
3736             if (-f $one_name . '.top')
3737             {
3738                 push (@files, "${cn_sans_dir}.top");
3739             }
3740             if (-f $one_name . '.bot')
3741             {
3742                 push (@files, "${cn_sans_dir}.bot");
3743             }
3745             &push_dist_common (@files);
3747             # For now, acconfig.h can only appear in the top srcdir.
3748             if (-f 'acconfig.h')
3749             {
3750                 push (@files, '$(top_srcdir)/acconfig.h');
3751             }
3753             my $stamp_name = 'stamp-h';
3754             $stamp_name .= "${hdr_index}" if scalar (@config_headers) > 1;
3756             my $out_dir = dirname ($ch_sans_dir);
3758             $output_rules .=
3759               &file_contents ('remake-hdr',
3760                               ('FILES'              => join (' ', @files),
3761                                'CONFIG_HEADER'      => $cn_sans_dir,
3762                                'CONFIG_HEADER_IN'   => $ch_sans_dir,
3763                                'CONFIG_HEADER_FULL' => $one_fullname,
3764                                'STAMP'            => "$stamp_dir$stamp_name",
3765                                'SRC_STAMP'        => "$out_dir/$stamp_name"));
3767             &create ("${relative_dir}/${out_dir}/${stamp_name}.in");
3768             &require_file_with_conf_line ($config_header_line, $FOREIGN,
3769                                           "${out_dir}/${stamp_name}.in");
3771             $distclean_config .= ' ' if $distclean_config;
3772             $distclean_config .= $cn_sans_dir;
3773         }
3774     }
3776     if ($distclean_config)
3777     {
3778         $output_rules .= &file_contents ('clean-hdr',
3779                                          ('FILES' => $distclean_config));
3780     }
3782     # Set location of mkinstalldirs.
3783     if ($config_aux_dir ne '.' && $config_aux_dir ne '')
3784     {
3785         &define_variable ('mkinstalldirs', ('$(SHELL) ' . $config_aux_dir
3786                                             . '/mkinstalldirs'));
3787     }
3788     else
3789     {
3790         &define_variable ('mkinstalldirs',
3791                           '$(SHELL) $(top_srcdir)/mkinstalldirs');
3792     }
3794     &am_line_error ('CONFIG_HEADER',
3795                     "`CONFIG_HEADER' is an anachronism; now determined from `$configure_ac'")
3796         if &variable_defined ('CONFIG_HEADER');
3798     my $config_header = '';
3799     foreach my $one_name (@config_names)
3800     {
3801         # Generate CONFIG_HEADER define.
3802         my $one_hdr;
3803         if ($relative_dir eq dirname ($one_name))
3804         {
3805             $one_hdr = basename ($one_name);
3806         }
3807         else
3808         {
3809             $one_hdr = "\$(top_builddir)/${one_name}";
3810         }
3812         $config_header .= ' ' if $config_header;
3813         $config_header .= $one_hdr;
3814     }
3815     if ($config_header)
3816     {
3817         &define_variable ("CONFIG_HEADER", $config_header);
3818     }
3820     # Now look for other files in this directory which must be remade
3821     # by config.status, and generate rules for them.
3822     my @actual_other_files = ();
3823     foreach my $lfile (@other_input_files)
3824     {
3825         my ($file, $local);
3826         my (@inputs, @rewritten_inputs);
3827         my ($need_rewritten);
3828         if ($lfile =~ /^([^:]*):(.*)$/)
3829         {
3830             # This is the ":" syntax of AC_OUTPUT.
3831             $file = $1;
3832             $local = basename ($file);
3833             @inputs = split (':', $2);
3834             @rewritten_inputs = &rewrite_inputs_into_dependencies (1, @inputs);
3835             $need_rewritten = 1;
3836         }
3837         else
3838         {
3839             # Normal usage.
3840             $file = $lfile;
3841             $local = basename ($file);
3842             @inputs = ($file . '.in');
3843             @rewritten_inputs =
3844                 &rewrite_inputs_into_dependencies (1, @inputs);
3845             $need_rewritten = 0;
3846         }
3848         # Make sure the dist directory for each input file is created.
3849         # We only have to do this at the topmost level though.  This
3850         # is a bit ugly but it easier than spreading out the logic,
3851         # especially in cases like AC_OUTPUT(foo/out:bar/in), where
3852         # there is no Makefile in bar/.
3853         if ($relative_dir eq '.')
3854         {
3855             foreach (@inputs)
3856             {
3857                 $dist_dirs{dirname ($_)} = 1;
3858             }
3859         }
3861         # We skip any automake input files, as they are handled
3862         # elsewhere.  We also skip files that aren't in this
3863         # directory.  However, if the file's directory does not have a
3864         # Makefile, and we are currently doing `.', then we create a
3865         # rule to rebuild the file in the subdir.
3866         next if -f $file . '.am';
3867         my $fd = dirname ($file);
3868         if ($fd ne $relative_dir)
3869         {
3870             if ($relative_dir eq '.' && ! &is_make_dir ($fd))
3871             {
3872                 $local = $file;
3873             }
3874             else
3875             {
3876                 next;
3877             }
3878         }
3880         # Some users have been tempted to put `stamp-h' in the
3881         # AC_OUTPUT line.  This won't do the right thing, so we
3882         # explicitly fail here.
3883         if ($local eq 'stamp-h')
3884         {
3885             # FIXME: allow real filename.
3886             &am_conf_error ($configure_ac, $ac_output_line,
3887                             'stamp-h should not appear in AC_OUTPUT');
3888             next;
3889         }
3891         $output_rules .= ($local . ': '
3892                           . '$(top_builddir)/config.status '
3893                           . join (' ', @rewritten_inputs) . "\n"
3894                           . "\t"
3895                           . 'cd $(top_builddir) && CONFIG_FILES='
3896                           . ($relative_dir eq '.' ? '' : '$(subdir)/')
3897                           . '$@' . ($need_rewritten
3898                                     ? (':' . join (':', @inputs))
3899                                     : '')
3900                           . ' CONFIG_HEADERS= CONFIG_LINKS= $(SHELL) ./config.status'
3901                           . "\n");
3902         push (@actual_other_files, $local);
3904         # Require all input files.
3905         &require_file_with_conf_line ($ac_output_line, $FOREIGN,
3906                                       &rewrite_inputs_into_dependencies (0, @inputs));
3907     }
3909     # These files get removed by "make clean".
3910     &define_pretty_variable ('CONFIG_CLEAN_FILES', '', @actual_other_files);
3913 # Handle C headers.
3914 sub handle_headers
3916     my @r = &am_install_var ('-defaultdist', 'header', 'HEADERS', 'include',
3917                              'oldinclude', 'pkginclude',
3918                              'noinst', 'check');
3919     foreach (@r)
3920     {
3921         next unless /\.(.*)$/;
3922         &saw_extension ($1);
3923     }
3926 sub handle_gettext
3928     return if ! $seen_gettext || $relative_dir ne '.';
3930     if (! &variable_defined ('SUBDIRS'))
3931     {
3932         &am_conf_error
3933             ("AM_GNU_GETTEXT used but SUBDIRS not defined");
3934         return;
3935     }
3937     my @subdirs = &variable_value_as_list ('SUBDIRS', 'all');
3938     &am_line_error ('SUBDIRS',
3939                     "AM_GNU_GETTEXT used but `po' not in SUBDIRS")
3940         if ! grep ('po', @subdirs);
3941     &am_line_error ('SUBDIRS',
3942                     "AM_GNU_GETTEXT used but `intl' not in SUBDIRS")
3943         if ! grep ('intl', @subdirs);
3945     &require_file_with_conf_line ($ac_gettext_line, $GNU, 'ABOUT-NLS');
3947     # Ensure that each language in ALL_LINGUAS has a .po file, and
3948     # each po file is mentioned in ALL_LINGUAS.
3949     if ($seen_linguas)
3950     {
3951         my %linguas = ();
3952         grep ($linguas{$_} = 1, split (' ', $all_linguas));
3954         foreach (<po/*.po>)
3955         {
3956             s/^po\///;
3957             s/\.po$//;
3959             &am_line_error ($all_linguas_line,
3960                             ("po/$_.po exists but `$_' not in `ALL_LINGUAS'"))
3961                 if ! $linguas{$_};
3962         }
3964         foreach (keys %linguas)
3965         {
3966             &am_line_error ($all_linguas_line,
3967                             "$_ in `ALL_LINGUAS' but po/$_.po does not exist")
3968                 if ! -f "po/$_.po";
3969         }
3970     }
3971     else
3972     {
3973         &am_error ("AM_GNU_GETTEXT in `$configure_ac' but `ALL_LINGUAS' not defined");
3974     }
3977 # Handle footer elements.
3978 sub handle_footer
3980     if (variable_value ('SOURCES'))
3981     {
3982         # NOTE don't use define_pretty_variable here, because
3983         # $contents{...} is already defined.
3984         $output_vars .= 'SOURCES = ' . variable_value ('SOURCES') . "\n";
3985     }
3986     if (variable_value ('OBJECTS'))
3987     {
3988         # NOTE don't use define_pretty_variable here, because
3989         # $contents{...} is already defined.
3990         $output_vars .= 'OBJECTS = ' . variable_value ('OBJECTS') . "\n";
3991     }
3992     if (variable_value ('SOURCES') || variable_value ('OBJECTS'))
3993     {
3994         $output_vars .= "\n";
3995     }
3997     if (&target_defined ('.SUFFIXES'))
3998     {
3999         &am_line_error ('.SUFFIXES',
4000                         "use variable `SUFFIXES', not target `.SUFFIXES'");
4001     }
4003     # Note: AIX 4.1 /bin/make will fail if any suffix rule appears
4004     # before .SUFFIXES.  So we make sure that .SUFFIXES appears before
4005     # anything else, by sticking it right after the default: target.
4006     $output_header .= ".SUFFIXES:\n";
4007     if (@suffixes || &variable_defined ('SUFFIXES'))
4008     {
4009         # Make sure suffixes has unique elements.  Sort them to ensure
4010         # the output remains consistent.  However, $(SUFFIXES) is
4011         # always at the start of the list, unsorted.  This is done
4012         # because make will choose rules depending on the ordering of
4013         # suffixes, and this lets the user have some control.  Push
4014         # actual suffixes, and not $(SUFFIXES).  Some versions of make
4015         # do not like variable substitutions on the .SUFFIXES line.
4016         my @user_suffixes = (&variable_defined ('SUFFIXES')
4017                              ? &variable_value_as_list ('SUFFIXES', '')
4018                              : ());
4020         my %suffixes;
4021         grep ($suffixes{$_} = 1, @suffixes);
4022         delete @suffixes{@user_suffixes};
4024         $output_header .= (".SUFFIXES: "
4025                            . join (' ', @user_suffixes, sort keys %suffixes)
4026                            . "\n");
4027     }
4028     $output_trailer .= &file_contents ('footer');
4031 # Deal with installdirs target.
4032 sub handle_installdirs ()
4034     $output_rules .=
4035       &file_contents ('install',
4036                       ('_am_installdirs'
4037                        => variable_value ('_am_installdirs') || ''));
4041 # Deal with all and all-am.
4042 sub handle_all ($)
4044     my ($makefile) = @_;
4046     # Output `all-am'.
4048     # Put this at the beginning for the sake of non-GNU makes.  This
4049     # is still wrong if these makes can run parallel jobs.  But it is
4050     # right enough.
4051     unshift (@all, basename ($makefile));
4053     foreach my $one_name (@config_names)
4054     {
4055         push (@all, basename ($one_name))
4056             if dirname ($one_name) eq $relative_dir;
4057     }
4059     # Install `all' hooks.
4060     if (&target_defined ("all-local"))
4061     {
4062       push (@all, "all-local");
4063       &depend ('.PHONY', "all-local");
4064     }
4066     &pretty_print_rule ("all-am:", "\t\t", @all);
4067     &depend ('.PHONY', 'all-am', 'all');
4070     # Output `all'.
4072     my @local_headers = ();
4073     push @local_headers, '$(BUILT_SOURCES)'
4074       if &variable_defined ('BUILT_SOURCES');
4075     foreach my $one_name (@config_names)
4076       {
4077         push @local_headers, basename ($one_name)
4078           if dirname ($one_name) eq $relative_dir;
4079       }
4081     if (@local_headers)
4082       {
4083         # We need to make sure config.h is built before we recurse.
4084         # We also want to make sure that built sources are built
4085         # before any ordinary `all' targets are run.  We can't do this
4086         # by changing the order of dependencies to the "all" because
4087         # that breaks when using parallel makes.  Instead we handle
4088         # things explicitly.
4089         $output_all .= ("all: " . join (' ', @local_headers)
4090                         . "\n\t"
4091                         . '$(MAKE) $(AM_MAKEFLAGS) '
4092                         . (&variable_defined ('SUBDIRS')
4093                            ? 'all-recursive' : 'all-am')
4094                         . "\n\n");
4095       }
4096     else
4097       {
4098         $output_all .= "all: " . (&variable_defined ('SUBDIRS')
4099                                   ? 'all-recursive' : 'all-am') . "\n\n";
4100       }
4104 # Handle check merge target specially.
4105 sub do_check_merge_target
4107     if (&target_defined ('check-local'))
4108     {
4109         # User defined local form of target.  So include it.
4110         push (@check_tests, 'check-local');
4111         &depend ('.PHONY', 'check-local');
4112     }
4114     # In --cygnus mode, check doesn't depend on all.
4115     if ($cygnus_mode)
4116     {
4117         # Just run the local check rules.
4118         &pretty_print_rule ('check-am:', "\t\t", @check);
4119     }
4120     else
4121     {
4122         # The check target must depend on the local equivalent of
4123         # `all', to ensure all the primary targets are built.  Then it
4124         # must build the local check rules.
4125         $output_rules .= "check-am: all-am\n";
4126         &pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t  ",
4127                             @check)
4128             if @check;
4129     }
4130     &pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t  ",
4131                         @check_tests)
4132         if @check_tests;
4134     &depend ('.PHONY', 'check', 'check-am');
4135     $output_rules .= ("check: "
4136                       . (&variable_defined ('SUBDIRS')
4137                          ? 'check-recursive' : 'check-am')
4138                       . "\n");
4141 # Handle all 'clean' targets.
4142 sub handle_clean
4144     my %transform;
4146     # Don't include `MAINTAINER'; it is handled specially below.
4147     foreach my $name ('MOSTLY', '', 'DIST')
4148     {
4149       $transform{"${name}CLEAN"} = &variable_defined ("${name}CLEANFILES");
4150     }
4152     # Built sources are automatically removed by maintainer-clean.
4153     push (@maintainer_clean_files, '$(BUILT_SOURCES)')
4154         if &variable_defined ('BUILT_SOURCES');
4155     push (@maintainer_clean_files, '$(MAINTAINERCLEANFILES)')
4156         if &variable_defined ('MAINTAINERCLEANFILES');
4158     $output_rules .= &file_contents ('clean',
4159                                      (%transform,
4160                                       'MCFILES'
4161                                       # Join with no space to avoid
4162                                       # spurious `test -z' success at
4163                                       # runtime.
4164                                       => join ('', @maintainer_clean_files),
4165                                       'MFILES'
4166                                       # A space is required in the join here.
4167                                       => join (' ', @maintainer_clean_files)));
4171 # &depend ($CATEGORY, @DEPENDENDEES)
4172 # ----------------------------------
4173 # The target $CATEGORY depends on @DEPENDENDEES.
4174 sub depend
4176     my ($category, @dependendees) = @_;
4177     {
4178       push (@{$dependencies{$category}}, @dependendees);
4179     }
4183 # &target_cmp ($A, $B)
4184 # --------------------
4185 # Subroutine for &handle_factored_dependencies to let `.PHONY' be last.
4186 sub target_cmp
4188     return 0
4189         if $a eq $b;
4190     return -1
4191         if $b eq '.PHONY';
4192     return 1
4193         if $a eq '.PHONY';
4194     return $a cmp $b;
4198 # &handle_factored_dependencies ()
4199 # --------------------------------
4200 # Handle everything related to gathered targets.
4201 sub handle_factored_dependencies
4203     # Reject bad hooks.
4204     foreach my $utarg ('uninstall-data-local', 'uninstall-data-hook',
4205                        'uninstall-exec-local', 'uninstall-exec-hook')
4206     {
4207         if (&target_defined ($utarg))
4208         {
4209             my $x = $utarg;
4210             $x =~ s/(data|exec)-//;
4211             &am_line_error ($utarg, "use `$x', not `$utarg'");
4212         }
4213     }
4215     if (&target_defined ('install-local'))
4216     {
4217         &am_line_error ('install-local',
4218                         "use `install-data-local' or `install-exec-local', "
4219                         . "not `install-local'");
4220     }
4222     if (!defined $options{'no-installinfo'}
4223         && &target_defined ('install-info-local'))
4224     {
4225         &am_line_error ('install-info-local',
4226                         "`install-info-local' target defined but "
4227                         . "`no-installinfo' option not in use");
4228     }
4230     # Install the -local hooks.
4231     foreach (keys %dependencies)
4232     {
4233       # Hooks are installed on the -am targets.
4234       s/-am$// or next;
4235       if (&target_defined ("$_-local"))
4236         {
4237           depend ("$_-am", "$_-local");
4238           &depend ('.PHONY', "$_-local");
4239         }
4240     }
4242     # Install the -hook hooks.
4243     # FIXME: Why not be as liberal as we are with -local hooks?
4244     foreach ('install-exec', 'install-data')
4245     {
4246       if (&target_defined ("$_-hook"))
4247         {
4248           $actions{"$_-am"} .=
4249             ("\t\@\$(NORMAL_INSTALL)\n"
4250              . "\t" . '$(MAKE) $(AM_MAKEFLAGS) ' . "$_-hook\n");
4251         }
4252     }
4254     # All the required targets are phony.
4255     grep { &depend ('.PHONY', $_) } keys %required_targets;
4257     # Actually output gathered targets.
4258     foreach (sort target_cmp keys %dependencies)
4259     {
4260         # If there is nothing about this guy, skip it.
4261         next
4262           unless (@{$dependencies{$_}}
4263                   || $actions{$_}
4264                   || $required_targets{$_});
4265         &pretty_print_rule ("$_:", "\t",
4266                             uniq (sort @{$dependencies{$_}}));
4267         $output_rules .= $actions{$_}
4268           if defined $actions{$_};
4269         $output_rules .= "\n";
4270     }
4274 # &handle_tests_dejagnu ()
4275 # ------------------------
4276 sub handle_tests_dejagnu
4278     push (@check_tests, 'check-DEJAGNU');
4280     # Only create site.exp rule if user hasn't already written one.
4281     $output_rules .=
4282       &file_contents ('dejagnu',
4283                       ('SITE-EXP' => ! &target_defined ('site.exp'),
4284                        'BUILD'    => $seen_canonical == $AC_CANONICAL_SYSTEM,
4285                        'HOST'     => $seen_canonical,
4286                        'TARGET'   => $seen_canonical == $AC_CANONICAL_SYSTEM));
4290 # Handle TESTS variable and other checks.
4291 sub handle_tests
4293     if (defined $options{'dejagnu'})
4294     {
4295         &handle_tests_dejagnu;
4296     }
4297     else
4298     {
4299         foreach my $c ('DEJATOOL', 'RUNTEST', 'RUNTESTFLAGS')
4300         {
4301             &am_line_error ($c,
4302                             "`$c' defined but `dejagnu' not in `AUTOMAKE_OPTIONS'")
4303               if &variable_defined ($c);
4304         }
4305     }
4307     if (&variable_defined ('TESTS'))
4308     {
4309         push (@check_tests, 'check-TESTS');
4310         $output_rules .= &file_contents ('check');
4311     }
4314 # Handle Emacs Lisp.
4315 sub handle_emacs_lisp
4317     my @elfiles = &am_install_var ('-candist', 'lisp', 'LISP',
4318                                    'lisp', 'noinst');
4320     return if ! @elfiles;
4322     # Generate .elc files.
4323     grep ($_ .= 'c', @elfiles);
4324     &define_pretty_variable ('ELCFILES', '', @elfiles);
4326     push (@all, '$(ELCFILES)');
4328     &am_error ("`lisp_LISP' defined but `AM_PATH_LISPDIR' not in `$configure_ac'")
4329       if ! $seen_lispdir && &variable_defined ('lisp_LISP');
4331     &require_file_with_conf_line ('AM_PATH_LISPDIR', $FOREIGN, 'elisp-comp');
4334 # Handle Python
4335 sub handle_python
4337     my @pyfiles = &am_install_var ('-defaultdist', 'python', 'PYTHON',
4338                                    'python', 'noinst');
4339     return if ! @pyfiles;
4341     # Found some python.
4342     &am_error ("`python_PYTHON' defined but `AM_CHECK_PYTHON' not in `$configure_ac'")
4343         if ! $seen_pythondir && &variable_defined ('python_PYTHON');
4345     &require_file_with_conf_line ('AM_CHECK_PYTHON', $FOREIGN, 'py_comp');
4348 # Handle Java.
4349 sub handle_java
4351     my @sourcelist = &am_install_var ('-candist',
4352                                       'java', 'JAVA',
4353                                       'java', 'noinst', 'check');
4354     return if ! @sourcelist;
4356     my %valid = &am_primary_prefixes ('JAVA', 1,
4357                                       'java', 'noinst', 'check');
4359     my $dir;
4360     foreach my $curs (keys %valid)
4361     {
4362         if (! &variable_defined ($curs . '_JAVA') || $curs eq 'EXTRA')
4363         {
4364             next;
4365         }
4367         if (defined $dir)
4368         {
4369             &am_line_error ($curs . '_JAVA',
4370                             "multiple _JAVA primaries in use");
4371         }
4372         $dir = $curs;
4373     }
4375     push (@all, 'class' . $dir . '.stamp');
4379 # Handle some of the minor options.
4380 sub handle_minor_options
4382     if (defined $options{'readme-alpha'})
4383     {
4384         if ($relative_dir eq '.')
4385         {
4386             if ($package_version !~ /^$GNITS_VERSION_PATTERN$/)
4387             {
4388                 # FIXME: allow real filename.
4389                 &am_conf_line_error ($configure_ac,
4390                                      $package_version_line,
4391                                      "version `$package_version' doesn't follow Gnits standards");
4392             }
4393             elsif (defined $1 && -f 'README-alpha')
4394             {
4395                 # This means we have an alpha release.  See
4396                 # GNITS_VERSION_PATTERN for details.
4397                 &require_file ($FOREIGN, 'README-alpha');
4398             }
4399         }
4400     }
4403 ################################################################
4405 my %make_list;
4406 my @make_input_list;
4407 # &scan_autoconf_config_files ($CONFIG-FILES)
4408 # -------------------------------------------
4409 # Study $CONFIG-FILES which is the first argument to AC_CONFIG_FILES
4410 # (or AC_OUTPUT).
4411 sub scan_autoconf_config_files
4413     my ($config_files) = @_;
4414     # Look at potential Makefile.am's.
4415     foreach (split ' ', $config_files)
4416     {
4417         # Must skip empty string for Perl 4.
4418         next if $_ eq "\\" || $_ eq '';
4420         # Handle $local:$input syntax.  Note that we ignore
4421         # every input file past the first, though we keep
4422         # those around for later.
4423         my ($local, $input, @rest) = split (/:/);
4424         if (! $input)
4425         {
4426             $input = $local;
4427         }
4428         else
4429         {
4430             # FIXME: should be error if .in is missing.
4431             $input =~ s/\.in$//;
4432         }
4434         if (-f $input . '.am')
4435         {
4436             # We have a file that automake should generate.
4437             push (@make_input_list, $input);
4438             $make_list{$input} = join (':', ($local, @rest));
4439         }
4440         else
4441         {
4442             # We have a file that automake should cause to be
4443             # rebuilt, but shouldn't generate itself.
4444             push (@other_input_files, $_);
4445         }
4446     }
4450 # &scan_autoconf_traces ($FILENAME)
4451 # ---------------------------------
4452 # FIXME: For the time being, we don't care about the FILENAME.
4453 sub scan_autoconf_traces
4455     my ($filename) = @_;
4457     my $traces = "$ENV{amtraces} ";
4459     $traces .= ' -t AC_CONFIG_FILES';
4460     $traces .= ' -t AC_LIBSOURCE';
4461     $traces .= ' -t AC_SUBST';
4463     my $tracefh = new IO::File ("$traces |");
4464     if (! $tracefh)
4465     {
4466         die "$me: couldn't open `$traces': $!\n";
4467     }
4468     print "$me: reading $traces\n" if $verbose;
4470     while ($_ = $tracefh->getline)
4471     {
4472         chomp;
4473         my ($file, $line, $macro, @args) = split /:/;
4474         my $here = "$file:$line";
4476         # Alphabetical ordering please.
4477         if ($macro eq 'AC_CONFIG_FILES')
4478         {
4479             # Look at potential Makefile.am's.
4480             &scan_autoconf_config_files ($args[0]);
4481         }
4482         elsif ($macro eq 'AC_LIBSOURCE')
4483         {
4484             my $source = "$args[0].c";
4485             # We should actually also `close' the sources: getopt.c
4486             # wants getopt.h etc.  But actually it should be done in the
4487             # macro itself, i.e., we have to first fix Autoconf to extend
4488             # _AC_LIBOBJ_DECL and use it the in various macros.
4489             if (!defined $libsources{$source})
4490                 {
4491                     print STDERR "traces: discovered $source\n";
4492                     $libsources{$source} = $here;
4493                 }
4494         }
4495         elsif ($macro eq 'AC_SUBST')
4496         {
4497             if (!defined $configure_vars{$args[0]})
4498                 {
4499                     print STDERR "traces: discovered AC_SUBST($args[0])\n";
4500                     $configure_vars{$args[0]} = $here;
4501                 }
4502         }
4503     }
4505     $tracefh->close
4506         || die "$me: close: $traces: $!\n";
4510 # &scan_one_autoconf_file ($FILENAME)
4511 # -----------------------------------
4512 # Scan one file for interesting things.  Subroutine of
4513 # &scan_autoconf_files.
4514 sub scan_one_autoconf_file
4516     my ($filename) = @_;
4518     my $configfh = new IO::File ("< $filename");
4519     if (! $configfh)
4520     {
4521         die "$me: couldn't open `$filename': $!\n";
4522     }
4523     print "$me: reading $filename\n" if $verbose;
4525     my ($in_ac_output, $in_ac_replace) = (0, 0);
4526     while ($_ = $configfh->getline)
4527     {
4528         # Remove comments from current line.
4529         s/\bdnl\b.*$//;
4530         s/\#.*$//;
4532         # Skip macro definitions.  Otherwise we might be confused into
4533         # thinking that a macro that was only defined was actually
4534         # used.
4535         next if /AC_DEFUN/;
4537         # Follow includes.  This is a weirdness commonly in use at
4538         # Cygnus and hopefully nowhere else.
4539         if (/sinclude\((.*)\)/ && -f $1)
4540         {
4541             # $_ being local, if we don't preserve it, when coming
4542             # back we will have $_ undefined, which is bad for the
4543             # the rest of this routine.
4544             my $underscore = $_;
4545             &scan_one_autoconf_file ($1);
4546             $_ = $underscore;
4547         }
4549         # Populate libobjs array.
4550         if (/AC_FUNC_ALLOCA/)
4551         {
4552             $libsources{'alloca.c'} = 1;
4553         }
4554         elsif (/AC_FUNC_GETLOADAVG/)
4555         {
4556             $libsources{'getloadavg.c'} = 1;
4557         }
4558         elsif (/AC_FUNC_MEMCMP/)
4559         {
4560             $libsources{'memcmp.c'} = 1;
4561         }
4562         elsif (/AC_STRUCT_ST_BLOCKS/)
4563         {
4564             $libsources{'fileblocks.c'} = 1;
4565         }
4566         elsif (/A[CM]_REPLACE_GNU_GETOPT/)
4567         {
4568             $libsources{'getopt.c'} = 1;
4569             $libsources{'getopt1.c'} = 1;
4570         }
4571         elsif (/AM_FUNC_STRTOD/)
4572         {
4573             $libsources{'strtod.c'} = 1;
4574         }
4575         elsif (/AM_WITH_REGEX/)
4576         {
4577             $libsources{'rx.c'} = 1;
4578             $libsources{'rx.h'} = 1;
4579             $libsources{'regex.c'} = 1;
4580             $libsources{'regex.h'} = 1;
4581         }
4582         elsif (/AC_FUNC_MKTIME/)
4583         {
4584             $libsources{'mktime.c'} = 1;
4585         }
4586         elsif (/AM_FUNC_ERROR_AT_LINE/)
4587         {
4588             $libsources{'error.c'} = 1;
4589             $libsources{'error.h'} = 1;
4590         }
4591         elsif (/AM_FUNC_OBSTACK/)
4592         {
4593             $libsources{'obstack.c'} = 1;
4594             $libsources{'obstack.h'} = 1;
4595         }
4596         elsif (/LIBOBJS="(.*)\s+\$LIBOBJS"/
4597                || /LIBOBJS="\$LIBOBJS\s+(.*)"/)
4598         {
4599             foreach my $libobj_iter (split (' ', $1))
4600             {
4601                 if ($libobj_iter =~ /^(.*)\.o(bj)?$/
4602                     || $libobj_iter =~ /^(.*)\.\$ac_objext$/
4603                     || $libobj_iter =~ /^(.*)\.\$\{ac_objext\}$/)
4604                 {
4605                     $libsources{$1 . '.c'} = 1;
4606                 }
4607             }
4608         }
4609         elsif (/AC_LIBOBJ\(([^)]+)\)/)
4610         {
4611             $libsources{"$1.c"} = 1;
4612         }
4614         if (! $in_ac_replace && s/AC_REPLACE_FUNCS\s*\(\[?//)
4615         {
4616             $in_ac_replace = 1;
4617         }
4618         if ($in_ac_replace)
4619         {
4620             $in_ac_replace = 0 if s/[\]\)].*$//;
4621             # Remove trailing backslash.
4622             s/\\$//;
4623             foreach (split)
4624             {
4625                 # Need to skip empty elements for Perl 4.
4626                 next if $_ eq '';
4627                 $libsources{$_ . '.c'} = 1;
4628             }
4629         }
4631         if (/$obsolete_rx/o)
4632         {
4633             my $hint = '';
4634             if ($obsolete_macros{$1} ne '')
4635             {
4636                 $hint = '; ' . $obsolete_macros{$1};
4637             }
4638             &am_conf_line_error ($filename, $., "`$1' is obsolete$hint");
4639         }
4641         # Process the AC_OUTPUT and AC_CONFIG_FILES macros.
4642         if (! $in_ac_output && s/AC_(OUTPUT|CONFIG_FILES)\s*\(\[?//)
4643         {
4644             $in_ac_output = 1;
4645             $ac_output_line = $.;
4646         }
4647         if ($in_ac_output)
4648         {
4649             my $closing = 0;
4650             if (s/[\]\),].*$//)
4651             {
4652                 $in_ac_output = 0;
4653                 $closing = 1;
4654             }
4656             # Look at potential Makefile.am's.
4657             &scan_autoconf_config_files ($_);
4659             if ($closing && @make_input_list == 0 && @other_input_files == 0)
4660             {
4661                 &am_conf_line_error ($filename, $ac_output_line,
4662                                      "No files mentioned in `AC_OUTPUT'");
4663                 exit 1;
4664             }
4665         }
4667         if (/$AC_CONFIG_AUX_DIR_PATTERN/o)
4668         {
4669             @config_aux_path = &unquote_m4_arg ($1);
4670         }
4672         # Check for ansi2knr.
4673         $am_c_prototypes = 1 if /AM_C_PROTOTYPES/;
4675         # Check for exe extension stuff.
4676         if (/AC_EXEEXT/)
4677         {
4678             $seen_exeext = 1;
4679             $configure_vars{'EXEEXT'} = $filename . ':' . $.;
4680         }
4682         if (/AC_OBJEXT/)
4683         {
4684             $seen_objext = 1;
4685             $configure_vars{'OBJEXT'} = $filename . ':' . $.;
4686         }
4688         # Check for `-c -o' code.
4689         $seen_cc_c_o = 1 if /AM_PROG_CC_C_O/;
4691         # Check for NLS support.
4692         if (/AM_GNU_GETTEXT/)
4693         {
4694             $seen_gettext = 1;
4695             $ac_gettext_line = $.;
4696         }
4698         # Look for ALL_LINGUAS.
4699         if (/ALL_LINGUAS="(.*)"$/ || /ALL_LINGUAS=(.*)$/)
4700         {
4701             $seen_linguas = 1;
4702             $all_linguas = $1;
4703             $all_linguas_line = $.;
4704         }
4706         # Handle configuration headers.  A config header of `[$1]'
4707         # means we are actually scanning AM_CONFIG_HEADER from
4708         # aclocal.m4.
4709         if (/A([CM])_CONFIG_HEADERS?\s*\((.*)\)/
4710             && $2 ne '[$1]')
4711         {
4712             &am_conf_line_error
4713                 ($filename, $., "`automake requires `AM_CONFIG_HEADER', not `AC_CONFIG_HEADER'")
4714                     if $1 eq 'C';
4716             $config_header_line = $.;
4717             foreach my $one_hdr (split (' ', &unquote_m4_arg ($2)))
4718             {
4719                 push (@config_fullnames, $one_hdr);
4720                 if ($one_hdr =~ /^([^:]+):(.+)$/)
4721                 {
4722                     push (@config_names, $1);
4723                     push (@config_headers, $2);
4724                 }
4725                 else
4726                 {
4727                     push (@config_names, $one_hdr);
4728                     push (@config_headers, $one_hdr . '.in');
4729                 }
4730             }
4731         }
4733         # Handle AC_CANONICAL_*.  Always allow upgrading to
4734         # AC_CANONICAL_SYSTEM, but never downgrading.
4735         $seen_canonical = $AC_CANONICAL_HOST
4736             if ! $seen_canonical
4737                 && (/AC_CANONICAL_HOST/ || /AC_CHECK_TOOL/);
4738         $seen_canonical = $AC_CANONICAL_SYSTEM if /AC_CANONICAL_SYSTEM/;
4740         # If using X, include some extra variable definitions.  NOTE
4741         # we don't want to force these into CFLAGS or anything,
4742         # because not all programs will necessarily use X.
4743         if (/AC_PATH_XTRA/)
4744           {
4745             foreach my $var ('X_CFLAGS', 'X_LIBS', 'X_EXTRA_LIBS',
4746                              'X_PRE_LIBS')
4747               {
4748                 $configure_vars{$var} = $filename . ':' . $.
4749               }
4750           }
4752         # This macro handles several different things.
4753         if (/$AM_INIT_AUTOMAKE_PATTERN/o)
4754         {
4755             ($package_version = $1) =~ s/$AM_PACKAGE_VERSION_PATTERN/$1/o;
4756             $package_version_line = $.;
4757             $seen_init_automake = 1;
4758         }
4760         if (/AM_PROG_LEX/)
4761         {
4762             $configure_vars{'LEX'} = $filename . ':' . $.;
4763             $seen_decl_yytext = 1;
4764         }
4765         if (/AC_DECL_YYTEXT/ && $filename =~ /configure\.(ac|in)$/)
4766         {
4767             &am_conf_line_warning ($filename, $., "`AC_DECL_YYTEXT' is covered by `AM_PROG_LEX'");
4768         }
4769         if (/AC_PROG_LEX/ && $filename =~ /configure\.(ac|in)$/)
4770         {
4771             &am_conf_line_warning ($filename, $., "automake requires `AM_PROG_LEX', not `AC_PROG_LEX'");
4772         }
4774         if (/AC_PROG_(F77|YACC|RANLIB|CC|CXXCPP|CXX|LEX|AWK|CPP|LN_S)/)
4775         {
4776             $configure_vars{$1} = $filename . ':' . $.;
4777         }
4778         if (/$AC_CHECK_PATTERN/o)
4779         {
4780             $configure_vars{$3} = $filename . ':' . $.;
4781         }
4782         if (/$AM_MISSING_PATTERN/o
4783             && $1 ne 'ACLOCAL'
4784             && $1 ne 'AUTOCONF'
4785             && $1 ne 'AUTOMAKE'
4786             && $1 ne 'AUTOHEADER'
4787             # AM_INIT_AUTOMAKE is AM_MISSING_PROG'ing MAKEINFO.  But
4788             # we handle it elsewhere.
4789             && $1 ne 'MAKEINFO')
4790         {
4791             $configure_vars{$1} = $filename . ':' . $.;
4792         }
4794         # Explicitly avoid ANSI2KNR -- we AC_SUBST that in protos.m4,
4795         # but later define it elsewhere.  This is pretty hacky.  We
4796         # also explicitly avoid INSTALL_SCRIPT and some other
4797         # variables because they are defined in header-vars.am.
4798         # FIXME.
4799         if (/$AC_SUBST_PATTERN/o
4800             && $1 ne 'ANSI2KNR'
4801             && $1 ne 'INSTALL_SCRIPT'
4802             && $1 ne 'INSTALL_DATA')
4803         {
4804             $configure_vars{$1} = $filename . ':' . $.;
4805         }
4807         $seen_decl_yytext = 1 if /AC_DECL_YYTEXT/;
4808         if (/AM_MAINTAINER_MODE/)
4809         {
4810             $seen_maint_mode = 1;
4811             $configure_cond{'MAINTAINER_MODE'} = 1;
4812         }
4814         $seen_lispdir = 1 if /AM_PATH_LISPDIR/;
4816         if (/AM_PATH_PYTHON/)
4817           {
4818             $seen_pythondir = 1;
4819             $configure_vars{'pythondir'} = $filename . ':' . $.;
4820             $configure_vars{'PYTHON'} = $filename . ':' . $.;
4821           }
4823         if (/A(C|M)_PROG_LIBTOOL/)
4824         {
4825             # We're not ready for this yet.  People still use a
4826             # libtool with no AC_PROG_LIBTOOL.  Once that is the
4827             # dominant version we can reenable this code -- but next
4828             # time by mentioning the macro in %obsolete_macros, both
4829             # here and in aclocal.in.
4831             # if (/AM_PROG_LIBTOOL/)
4832             # {
4833             #   &am_conf_line_warning ($filename, $., "`AM_PROG_LIBTOOL' is obsolete, use `AC_PROG_LIBTOOL' instead");
4834             # }
4835             $seen_libtool = 1;
4836             $libtool_line = $.;
4837             $configure_vars{'LIBTOOL'} = $filename . ':' . $.;
4838             $configure_vars{'RANLIB'} = $filename . ':' . $.;
4839             $configure_vars{'CC'} = $filename . ':' . $.;
4840             # AC_PROG_LIBTOOL runs AC_CANONICAL_HOST.  Make sure we
4841             # never downgrade (if we've seen AC_CANONICAL_SYSTEM).
4842             $seen_canonical = $AC_CANONICAL_HOST if ! $seen_canonical;
4843         }
4845         $seen_multilib = 1 if (/AM_ENABLE_MULTILIB/);
4847         if (/$AM_CONDITIONAL_PATTERN/o)
4848         {
4849             $configure_cond{$1} = 1;
4850         }
4852         # Check for Fortran 77 intrinsic and run-time libraries.
4853         if (/AC_F77_LIBRARY_LDFLAGS/)
4854         {
4855             $configure_vars{'FLIBS'} = $filename . ':' . $.;
4856         }
4857     }
4859     $configfh->close;
4863 # &scan_autoconf_files ()
4864 # -----------------------
4865 # Check whether we use `configure.ac' or `configure.in'.
4866 # Scan it (and possibly `aclocal.m4') for interesting things.
4867 # We must scan aclocal.m4 because there might be AC_SUBSTs and such there.
4868 sub scan_autoconf_files
4870     # Reinitialize libsources here.  This isn't really necessary,
4871     # since we currently assume there is only one configure.ac.  But
4872     # that won't always be the case.
4873     %libsources = ();
4875     warn "$me: both `configure.ac' and `configure.in' present:"
4876          . " ignoring `configure.in'\n"
4877         if -f 'configure.ac' && -f 'configure.in';
4878     $configure_ac = 'configure.in'
4879         if -f 'configure.in';
4880     $configure_ac = 'configure.ac'
4881         if -f 'configure.ac';
4882     die "$me: `configure.ac' or `configure.in' is required\n"
4883         if !$configure_ac;
4885     &scan_one_autoconf_file ($configure_ac);
4886     &scan_one_autoconf_file ('aclocal.m4')
4887         if -f 'aclocal.m4';
4889     if (defined $ENV{'amtraces'})
4890     {
4891         warn '$me: Autoconf traces is an experimental feature';
4892         warn '$me: use at your own risks';
4894         &scan_autoconf_traces ($configure_ac);
4895     }
4897     # Set input and output files if not specified by user.
4898     if (! @input_files)
4899     {
4900         @input_files = @make_input_list;
4901         %output_files = %make_list;
4902     }
4904     @configure_input_files = @make_input_list;
4906     &am_conf_error ("`AM_INIT_AUTOMAKE' must be used")
4907         if ! $seen_init_automake;
4909     # Look for some files we need.  Always check for these.  This
4910     # check must be done for every run, even those where we are only
4911     # looking at a subdir Makefile.  We must set relative_dir so that
4912     # the file-finding machinery works.
4913     # FIXME: Is this broken because it needs dynamic scopes.
4914     # My tests seems to show it's not the case.
4915     $relative_dir = '.';
4916     &require_config_file ($FOREIGN, 'install-sh', 'mkinstalldirs', 'missing');
4917     &am_error ("`install.sh' is an anachronism; use `install-sh' instead")
4918         if -f $config_aux_path[0] . '/install.sh';
4920     &require_config_file ($FOREIGN, 'py-compile')
4921         if $seen_pythondir;
4923     # Preserve dist_common for later.
4924     $configure_dist_common = variable_value ('DIST_COMMON', 'TRUE');
4927 ################################################################
4929 # Set up for Cygnus mode.
4930 sub check_cygnus
4932     return unless $cygnus_mode;
4934     &set_strictness ('foreign');
4935     $options{'no-installinfo'} = 1;
4936     $options{'no-dependencies'} = 1;
4937     $use_dependencies = 0;
4939     if (! $seen_maint_mode)
4940     {
4941         &am_conf_error ("`AM_MAINTAINER_MODE' required when --cygnus specified");
4942     }
4945 # Do any extra checking for GNU standards.
4946 sub check_gnu_standards
4948     if ($relative_dir eq '.')
4949     {
4950         # In top level (or only) directory.
4951         &require_file ($GNU, 'INSTALL', 'NEWS', 'README', 'COPYING',
4952                        'AUTHORS', 'ChangeLog');
4953     }
4955     if ($strictness >= $GNU
4956         && defined $options{'no-installman'})
4957     {
4958         &am_line_error ('AUTOMAKE_OPTIONS',
4959                         "option `no-installman' disallowed by GNU standards");
4960     }
4962     if ($strictness >= $GNU
4963         && defined $options{'no-installinfo'})
4964     {
4965         &am_line_error ('AUTOMAKE_OPTIONS',
4966                         "option `no-installinfo' disallowed by GNU standards");
4967     }
4970 # Do any extra checking for GNITS standards.
4971 sub check_gnits_standards
4973     if ($relative_dir eq '.')
4974     {
4975         # In top level (or only) directory.
4976         &require_file ($GNITS, 'THANKS');
4977     }
4980 ################################################################
4982 # Functions to handle files of each language.
4984 # Each `lang_X_rewrite($DIRECTORY, $BASE, $EXT)' function follows a
4985 # simple formula: Return value is $LANG_SUBDIR if the resulting object
4986 # file should be in a subdir if the source file is, $LANG_PROCESS if
4987 # file is to be dealt with, $LANG_IGNORE otherwise.
4989 # Much of the actual processing is handled in
4990 # handle_single_transform_list.  These functions exist so that
4991 # auxiliary information can be recorded for a later cleanup pass.
4992 # Note that the calls to these functions are computed, so don't bother
4993 # searching for their precise names in the source.
4995 # This is just a convenience function that can be used to determine
4996 # when a subdir object should be used.
4997 sub lang_sub_obj
4999     return defined $options{'subdir-objects'} ? $LANG_SUBDIR : $LANG_PROCESS;
5002 # Rewrite a single C source file.
5003 sub lang_c_rewrite
5005     my ($directory, $base, $ext) = @_;
5007     if (defined $options{'ansi2knr'} && $base =~ /_$/)
5008     {
5009         # FIXME: include line number in error.
5010         &am_error ("C source file `$base.c' would be deleted by ansi2knr rules");
5011     }
5013     my $r = $LANG_PROCESS;
5014     if (defined $options{'subdir-objects'})
5015     {
5016         $r = $LANG_SUBDIR;
5017         $base = $directory . '/' . $base;
5019         if (! $seen_cc_c_o)
5020         {
5021             # Only give error once.
5022             $seen_cc_c_o = 1;
5023             # FIXME: line number.
5024             &am_error ("C objects in subdir but `AM_PROG_CC_C_O' not in `$configure_ac'");
5025         }
5027         &require_file ($FOREIGN, 'compile')
5028             if $relative_dir eq '.';
5029     }
5031     $de_ansi_files{$base} = 1;
5032     return $r;
5035 # Rewrite a single C++ source file.
5036 sub lang_cxx_rewrite
5038     return &lang_sub_obj;
5041 # Rewrite a single header file.
5042 sub lang_header_rewrite
5044     # Header files are simply ignored.
5045     return $LANG_IGNORE;
5048 # Rewrite a single yacc file.
5049 sub lang_yacc_rewrite
5051     my ($directory, $base, $ext) = @_;
5053     my $r = &lang_c_rewrite ($directory, $base, $ext);
5054     my $pfx = '';
5055     if ($r == $LANG_SUBDIR)
5056     {
5057         $pfx = $directory . '/';
5058     }
5059     $yacc_sources{$pfx . $base . '.' . $ext} = 1;
5060     $ext =~ tr/y/c/;
5061     &saw_extension ('c');
5062     # FIXME: nodist.
5063     &push_dist_common ($pfx . $base . '.' . $ext);
5064     return $r;
5067 # Rewrite a single yacc++ file.
5068 sub lang_yaccxx_rewrite
5070     my ($directory, $base, $ext) = @_;
5072     my $r = $LANG_PROCESS;
5073     my $pfx = '';
5074     if (defined $options{'subdir-objects'})
5075     {
5076         $pfx = $directory . '/';
5077         $r = $LANG_SUBDIR;
5078     }
5079     $yacc_sources{$pfx . $base . '.' . $ext} = 1;
5080     $ext =~ tr/y/c/;
5081     &saw_extension ($ext);
5082     # FIXME: nodist.
5083     &push_dist_common ($pfx . $base . '.' . $ext);
5084     return $r;
5087 # Rewrite a single lex file.
5088 sub lang_lex_rewrite
5090     my ($directory, $base, $ext) = @_;
5092     my $r = &lang_c_rewrite ($directory, $base, $ext);
5093     my $pfx = '';
5094     if ($r == $LANG_SUBDIR)
5095     {
5096         $pfx = $directory . '/';
5097     }
5098     $lex_sources{$pfx . $base . '.' . $ext} = 1;
5099     $ext =~ tr/l/c/;
5100     &saw_extension ('c');
5101     # FIXME: nodist.
5102     &push_dist_common ($pfx . $base . '.' . $ext);
5103     return $r;
5106 # Rewrite a single lex++ file.
5107 sub lang_lexxx_rewrite
5109     my ($directory, $base, $ext) = @_;
5111     my $r = $LANG_PROCESS;
5112     my $pfx = '';
5113     if (defined $options{'subdir-objects'})
5114     {
5115         $pfx = $directory . '/';
5116         $r = $LANG_SUBDIR;
5117     }
5118     $lex_sources{$pfx . $base . '.' . $ext} = 1;
5119     $ext =~ tr/l/c/;
5120     &saw_extension ($ext);
5121     # FIXME: nodist.
5122     &push_dist_common ($pfx . $base . '.' . $ext);
5123     return $r;
5126 # Rewrite a single assembly file.
5127 sub lang_asm_rewrite
5129     return &lang_sub_obj;
5132 # Rewrite a single Fortran 77 file.
5133 sub lang_f77_rewrite
5135     return $LANG_PROCESS;
5138 # Rewrite a single preprocessed Fortran 77 file.
5139 sub lang_ppf77_rewrite
5141     return $LANG_PROCESS;
5144 # Rewrite a single ratfor file.
5145 sub lang_ratfor_rewrite
5147     return $LANG_PROCESS;
5150 # Rewrite a single Objective C file.
5151 sub lang_objc_rewrite
5153     return &lang_sub_obj;
5156 # Rewrite a single Java file.
5157 sub lang_java_rewrite
5159     return $LANG_SUBDIR;
5162 # The lang_X_finish functions are called after all source file
5163 # processing is done.  Each should handle defining rules for the
5164 # language, etc.  A finish function is only called if a source file of
5165 # the appropriate type has been seen.
5167 sub lang_c_finish
5169     # Push all libobjs files onto de_ansi_files.  We actually only
5170     # push files which exist in the current directory, and which are
5171     # genuine source files.
5172     foreach my $file (keys %libsources)
5173     {
5174         if ($file =~ /^(.*)\.[cly]$/ && -f "$relative_dir/$file")
5175         {
5176             $de_ansi_files{$1} = 1;
5177         }
5178     }
5180     if (defined $options{'ansi2knr'} && keys %de_ansi_files)
5181     {
5182         # Make all _.c files depend on their corresponding .c files.
5183         my @objects;
5184         foreach my $base (sort keys %de_ansi_files)
5185         {
5186             # Each _.c file must depend on ansi2knr; otherwise it
5187             # might be used in a parallel build before it is built.
5188             # We need to support files in the srcdir and in the build
5189             # dir (because these files might be auto-generated.  But
5190             # we can't use $< -- some makes only define $< during a
5191             # suffix rule.
5192             $output_rules .= ($base . "_.c: $base.c \$(ANSI2KNR)\n\t"
5193                               . '$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) '
5194                               . '`if test -f $(srcdir)/' . $base . '.c'
5195                               . '; then echo $(srcdir)/' . $base . '.c'
5196                               . '; else echo ' . $base . '.c; fi` '
5197                               . "| sed 's/^# \\([0-9]\\)/#line \\1/' "
5198                               . '| $(ANSI2KNR) > ' . $base . "_.c\n");
5199             push (@objects, $base . '_.$(OBJEXT)');
5200             push (@objects, $base . '_.lo')
5201               if $seen_libtool;
5202         }
5204         # Make all _.o (and _.lo) files depend on ansi2knr.
5205         # Use a sneaky little hack to make it print nicely.
5206         &pretty_print_rule ('', '', @objects, ':', '$(ANSI2KNR)');
5207     }
5209     if (! defined $configure_vars{'CC'})
5210     {
5211         # FIXME: line number.
5212         &am_error ("C source seen but `CC' not defined in `$configure_ac'");
5213     }
5216 # This is a helper for both lex and yacc.
5217 sub yacc_lex_finish_helper
5219     return if defined $language_scratch{'lex-yacc-done'};
5220     $language_scratch{'lex-yacc-done'} = 1;
5222     # If there is more than one distinct yacc (resp lex) source file
5223     # in a given directory, then the `ylwrap' program is required to
5224     # allow parallel builds to work correctly.  FIXME: for now, no
5225     # line number.
5226     &require_config_file ($FOREIGN, 'ylwrap');
5227     if ($config_aux_dir ne '.' && $config_aux_dir ne '')
5228     {
5229         &define_variable ('YLWRAP', $config_aux_dir . "/ylwrap");
5230     }
5231     else
5232     {
5233         &define_variable ('YLWRAP', '$(srcdir)/ylwrap');
5234     }
5237 sub lang_yacc_finish
5239     return if defined $language_scratch{'yacc-done'};
5240     $language_scratch{'yacc-done'} = 1;
5242     my %seen_suffix = ();
5243     my @yacc_files = sort keys %yacc_sources;
5244     my $yacc_count = scalar (@yacc_files);
5245     foreach my $file (@yacc_files)
5246     {
5247         $file =~ /(\..*)$/;
5248         &output_yacc_build_rule ($1, $yacc_count > 1)
5249             if ! defined $seen_suffix{$1};
5250         $seen_suffix{$1} = 1;
5252         $file =~ /^(.*)\.(y|yy|y\+\+|yxx|ypp)$/;
5253         my $base = $1;
5254         my $hname = 'h';                # Always use `.h' for header file.
5255         my $cname = $2;
5256         $cname =~ tr/y/c/;
5258         if ((&variable_defined ('AM_YFLAGS')
5259              && &variable_value ('AM_YFLAGS') =~ /(^|\s)-d(\s|$)/)
5260             || (&variable_defined ('YFLAGS')
5261                 && &variable_value ('YFLAGS') =~ /(^|\s)-d(\s|$)/)) {
5262             # Now generate rule to make the header file.  This should only
5263             # be generated if `yacc -d' specified.
5264             $output_rules .= "${base}.${hname}: ${base}.${cname}\n";
5266             # If the files are built in the build directory, then we want
5267             # to remove them with `make clean'.  If they are in srcdir
5268             # they shouldn't be touched.  However, we can't determine this
5269             # statically, and the GNU rules say that yacc/lex output files
5270             # should be removed by maintainer-clean.  So that's what we
5271             # do.
5272             push (@maintainer_clean_files, "${base}.${hname}");
5274             &push_dist_common ("${base}.${hname}");
5275         }
5276         push (@maintainer_clean_files, "${base}.${cname}");
5277     }
5278     $output_rules .= "\n";
5280     if (! defined $configure_vars{'YACC'})
5281     {
5282         &am_error ("yacc source seen but `YACC' not defined in `$configure_ac'");
5283     }
5284     if (&variable_defined ('YACCFLAGS'))
5285     {
5286         &am_line_error ('YACCFLAGS',
5287                         "`YACCFLAGS' obsolete; use `YFLAGS' instead");
5288     }
5290     if ($yacc_count > 1)
5291     {
5292         &yacc_lex_finish_helper;
5293     }
5297 sub lang_lex_finish
5299     return if defined $language_scratch{'lex-done'};
5300     $language_scratch{'lex-done'} = 1;
5302     my %seen_suffix = ();
5303     my $lex_count = scalar (keys %lex_sources);
5304     foreach my $file (sort keys %lex_sources)
5305     {
5306         $file =~ /(\..*)$/;
5307         &output_lex_build_rule ($1, $lex_count > 1)
5308             if (! defined $seen_suffix{$1});
5309         $seen_suffix{$1} = 1;
5311         # If the files are built in the build directory, then we want
5312         # to remove them with `make clean'.  If they are in srcdir
5313         # they shouldn't be touched.  However, we can't determine this
5314         # statically, and the GNU rules say that yacc/lex output files
5315         # should be removed by maintainer-clean.  So that's what we
5316         # do.
5317         $file =~ /^(.*)\.(l|ll|l\+\+|lxx|lpp)$/;
5318         my $cname;
5319         ($cname = $2) =~ tr/l/c/;
5320         push (@maintainer_clean_files, "${1}.${cname}");
5321     }
5323     if (! defined $configure_vars{'LEX'})
5324     {
5325         &am_error ("lex source seen but `LEX' not defined in `$configure_ac'");
5326     }
5327     if (! $seen_decl_yytext)
5328     {
5329         &am_error ("lex source seen but `AC_DECL_YYTEXT' not in `$configure_ac'");
5330     }
5332     if ($lex_count > 1)
5333     {
5334         &yacc_lex_finish_helper;
5335     }
5339 sub lang_ppf77_finish
5341     # We also handle the case of preprocessing `.F' files into `.f'
5342     # files.
5343     $output_rules .= (".F.f:\n"
5344                       . "\t\$(F77COMPILE) -F \$<\n");
5347 sub lang_ratfor_finish
5349     # We also handle the case of preprocessing `.r' files into `.f'
5350     # files.
5351     $output_rules .= (".r.f:\n"
5352                       . "\t\$(RCOMPILE) -F \$<\n");
5356 # Given a hash table of linker names, pick the name that has the most
5357 # precedence.  This is lame, but something has to have global
5358 # knowledge in order to eliminate the conflict.  Add more linkers as
5359 # required.
5360 sub resolve_linker
5362     my (%linkers) = @_;
5364     return 'GCJLINK'
5365         if defined $linkers{'GCJLINK'};
5366     return 'CXXLINK'
5367         if defined $linkers{'CXXLINK'};
5368     return 'F77LINK'
5369         if defined $linkers{'F77LINK'};
5370     return 'OBJCLINK'
5371         if defined $linkers{'OBJCLINK'};
5372     return 'LINK';
5375 # Called to indicate that an extension was used.
5376 sub saw_extension
5378     my ($ext) = @_;
5379     $extension_seen{$ext} = 1;
5382 # Called to ask whether source files have been seen . If HEADERS is 1,
5383 # headers can be included.
5384 sub saw_sources_p
5386     my ($headers) = @_;
5388     if ($headers)
5389     {
5390         $headers = 0;
5391     }
5392     else
5393     {
5394         $headers = grep ($extension_seen{$_},
5395                          @{$languages{'header'}->extensions});
5396     }
5398     return scalar keys %extension_seen > $headers;
5402 # register_language (%ATTRIBUTE)
5403 # ------------------------------
5404 # Register a single language.
5405 # Each %ATTRIBUTE is of the form ATTRIBUTE => VALUE.
5406 sub register_language (%)
5408     my (%option) = @_;
5410     # Set the defaults.
5411     $option{'ansi'} = 0
5412       unless defined $option{'ansi'};
5413     $option{'autodep'} = 'no'
5414       unless defined $option{'autodep'};
5415     $option{'derived_autodep'} = 'no'
5416       unless defined $option{'derived_autodep'};
5417     $option{'linker'} = ''
5418       unless defined $option{'linker'};
5420     my $lang = new Language (%option);
5422     # Fill indexes.
5423     grep ($extension_map{$_} = $lang->name, @{$lang->extensions});
5424     $languages{$lang->name} = $lang;
5427 # This function is used to find a path from a user-specified suffix to
5428 # `o' or to some other suffix we recognize internally, eg `cc'.
5429 sub derive_suffix
5431     my ($source_ext) = @_;
5433     # FIXME: hard-coding `o' is a mistake.  Doing something
5434     # intelligent is harder.
5435     while ($extension_map{$source_ext} eq ''
5436            && $source_ext ne 'o'
5437            && defined $suffix_rules{$source_ext})
5438     {
5439         $source_ext = $suffix_rules{$source_ext};
5440     }
5442     return $source_ext;
5446 ################################################################
5448 # Pretty-print something.  HEAD is what should be printed at the
5449 # beginning of the first line, FILL is what should be printed at the
5450 # beginning of every subsequent line.
5451 sub pretty_print_internal
5453     my ($head, $fill, @values) = @_;
5455     my $column = length ($head);
5456     my $result = $head;
5458     # Fill length is number of characters.  However, each Tab
5459     # character counts for eight.  So we count the number of Tabs and
5460     # multiply by 7.
5461     my $fill_length = length ($fill);
5462     $fill_length += 7 * ($fill =~ tr/\t/\t/d);
5464     foreach (@values)
5465     {
5466         # "71" because we also print a space.
5467         if ($column + length ($_) > 71)
5468         {
5469             $result .= " \\\n" . $fill;
5470             $column = $fill_length;
5471         }
5472         $result .= ' ' if $result =~ /\S\z/;
5473         $result .= $_;
5474         $column += length ($_) + 1;
5475     }
5477     $result .= "\n";
5478     return $result;
5481 # Pretty-print something and append to output_vars.
5482 sub pretty_print
5484     $output_vars .= &pretty_print_internal (@_);
5487 # Pretty-print something and append to output_rules.
5488 sub pretty_print_rule
5490     $output_rules .= &pretty_print_internal (@_);
5494 ################################################################
5497 # $STRING
5498 # &conditional_string(@COND-STACK)
5499 # --------------------------------
5500 # Build a string de
5501 sub conditional_string
5503   my (@stack) = @_;
5505   if (grep (/^FALSE$/, @stack))
5506     {
5507       return 'FALSE';
5508     }
5509   else
5510     {
5511       return join (' ', uniq sort grep (!/^TRUE$/, @stack));
5512     }
5516 # $BOOLEAN
5517 # &conditional_true_when ($COND, $WHEN)
5518 # -------------------------------------
5519 # See if a conditional is true.  Both arguments are conditional
5520 # strings.  This returns true if the first conditional is true when
5521 # the second conditional is true.
5522 # For instance with $COND = `BAR FOO', and $WHEN = `BAR BAZ FOO',
5523 # obviously return 1, and 0 when, for instance, $WHEN = `FOO'.
5524 sub conditional_true_when ($$)
5526     my ($cond, $when) = @_;
5528     # Make a hash holding all the values from $WHEN.
5529     my %cond_vals = map { $_ => 1 } split (' ', $when);
5531     # Check each component of $cond, which looks `COND1 COND2'.
5532     foreach my $comp (split (' ', $cond))
5533     {
5534         # TRUE is always true.
5535         next if $comp eq 'TRUE';
5536         return 0 if ! defined $cond_vals{$comp};
5537     }
5539     return 1;
5543 # $BOOLEAN
5544 # &conditionals_true_when (@CONDS, @WHENS)
5545 # ----------------------------------------
5546 # Same as above, but true if all the @CONDS are true when *ALL*
5547 # the @WHENS are sufficient.
5549 # If there are no @CONDS, then return true, of course. *BUT*, even if there
5550 # are @CONDS but @WHENS is empty, return true.  This is counter intuitive,
5551 # and against all the rules of logic, but is needed by the current code.
5552 # FIXME: Do something saner when the logic of conditionals is understood.
5553 sub conditionals_true_when (@@)
5555     my (@conds, @whens) = @_;
5557     foreach my $cond (@conds)
5558     {
5559       foreach my $when (@whens)
5560       {
5561         return 0
5562           unless conditional_true_when ($cond, $when);
5563       }
5564     }
5566     return 1;
5570 # $NEGATION
5571 # condition_negate ($COND)
5572 # ------------------------
5573 sub condition_negate ($)
5575     my ($cond) = @_;
5577     $cond =~ s/TRUE$/TRUEO/;
5578     $cond =~ s/FALSE$/TRUE/;
5579     $cond =~ s/TRUEO$/FALSE/;
5581     return $cond;
5585 # Compare condition names.
5586 # Issue them in alphabetical order, foo_TRUE before foo_FALSE.
5587 sub by_condition
5589     # Be careful we might be comparing `' or `#'.
5590     $a =~ /^(.*)_(TRUE|FALSE)$/;
5591     my ($aname, $abool) = ($1 || '', $2 || '');
5592     $b =~ /^(.*)_(TRUE|FALSE)$/;
5593     my ($bname, $bbool) = ($1 || '', $2 || '');
5594     return ($aname cmp $bname
5595             # Don't bother with IFs, given that TRUE is after FALSE
5596             # just cmp in the reverse order.
5597             || $bbool cmp $abool
5598             # Just in case...
5599             || $a cmp $b);
5603 # &make_condition (@CONDITIONS)
5604 # -----------------------------
5605 # Transform a list of conditions (themselves can be an internal list
5606 # of conditions, e.g., @CONDITIONS = ('cond1 cond2', 'cond3')) into a
5607 # Make conditional (a pattern for AC_SUBST).
5608 # Correctly returns the empty string when there are no conditions.
5609 sub make_condition
5611     my $res = conditional_string (@_);
5613     # There are no conditions.
5614     if ($res eq '')
5615       {
5616         # Nothing to do.
5617       }
5618     # It's impossible.
5619     elsif ($res eq 'FALSE')
5620       {
5621         $res = '#';
5622       }
5623     # Build it.
5624     else
5625       {
5626         $res = '@' . $res . '@';
5627         $res =~ s/ /@@/g;
5628       }
5630     return $res;
5635 ## ------------------------------ ##
5636 ## Handling the condition stack.  ##
5637 ## ------------------------------ ##
5640 # $COND_STRING
5641 # cond_stack_if ($NEGATE, $COND, $WHERE)
5642 # --------------------------------------
5643 sub cond_stack_if ($$$)
5645   my ($negate, $cond, $where) = @_;
5647   &am_file_error ($where, "$cond does not appear in AM_CONDITIONAL")
5648     if ! $configure_cond{$cond} && $cond !~ /^TRUE|FALSE$/;
5650   $cond = "${cond}_TRUE"
5651     unless $cond =~ /^TRUE|FALSE$/;
5652   $cond = condition_negate ($cond)
5653     if $negate;
5655   push (@cond_stack, $cond);
5657   return conditional_string (@cond_stack);
5661 # $COND_STRING
5662 # cond_stack_else ($NEGATE, $COND, $WHERE)
5663 # ----------------------------------------
5664 sub cond_stack_else ($$$)
5666   my ($negate, $cond, $where) = @_;
5668   if (! @cond_stack)
5669     {
5670       &am_file_error ($where, "else without if");
5671       return;
5672     }
5674   $cond_stack[$#cond_stack] = condition_negate ($cond_stack[$#cond_stack]);
5676   # If $COND is given, check against it.
5677   if (defined $cond)
5678     {
5679       $cond = "${cond}_TRUE"
5680         unless $cond =~ /^TRUE|FALSE$/;
5681       $cond = condition_negate ($cond)
5682         if $negate;
5684       &am_file_error ($where,
5685                       "else reminder ($negate$cond) incompatible with "
5686                       . "current conditional: $cond_stack[$#cond_stack]")
5687         if $cond_stack[$#cond_stack] ne $cond;
5688     }
5690   return conditional_string (@cond_stack);
5694 # $COND_STRING
5695 # cond_stack_endif ($NEGATE, $COND, $WHERE)
5696 # -----------------------------------------
5697 sub cond_stack_endif ($$$)
5699   my ($negate, $cond, $where) = @_;
5700   my $old_cond;
5702   if (! @cond_stack)
5703     {
5704       &am_file_error ($where, "endif without if: $negate$cond");
5705       return;
5706     }
5709   # If $COND is given, check against it.
5710   if (defined $cond)
5711     {
5712       $cond = "${cond}_TRUE"
5713         unless $cond =~ /^TRUE|FALSE$/;
5714       $cond = condition_negate ($cond)
5715         if $negate;
5717       &am_file_error ($where,
5718                       "endif reminder ($negate$cond) incompatible with "
5719                       . "current conditional: $cond_stack[$#cond_stack]")
5720         if $cond_stack[$#cond_stack] ne $cond;
5721     }
5723   pop @cond_stack;
5725   return conditional_string (@cond_stack);
5732 ## ------------------------ ##
5733 ## Handling the variables.  ##
5734 ## ------------------------ ##
5737 # check_ambiguous_conditional ($VAR, $COND)
5738 # -----------------------------------------
5739 # Check for an ambiguous conditional.  This is called when a variable
5740 # is being defined conditionally.  If we already know about a
5741 # definition that is true under the same conditions, then we have an
5742 # ambiguity.
5743 sub check_ambiguous_conditional ($$)
5745     my ($var, $cond) = @_;
5746     foreach my $vcond (keys %{$var_value{$var}})
5747     {
5748        my $message;
5749        if ($vcond eq $cond)
5750        {
5751            $message = "$var multiply defined in condition $cond";
5752        }
5753        elsif (&conditional_true_when ($vcond, $cond))
5754        {
5755          $message = ("$var was already defined in condition $vcond, "
5756                      . "which implies condition $cond");
5757        }
5758        elsif (&conditional_true_when ($cond, $vcond))
5759        {
5760            $message = ("$var was already defined in condition $vcond, "
5761                        . "which is implied by condition $cond");
5762        }
5763        if ($message)
5764        {
5765            &am_line_error ($var, $message);
5766            macro_dump ($var);
5767        }
5768    }
5772 # &macro_define($VAR, $VAR_IS_AM, $TYPE, $COND, $VALUE, $WHERE)
5773 # -------------------------------------------------------------
5774 # The $VAR can go from Automake to user, but not the converse.
5775 sub macro_define ($$$$$$)
5777   my ($var, $var_is_am, $type, $cond, $value, $where) = @_;
5779   am_file_error ($where, "bad macro name `$var'")
5780     if $var !~ /$MACRO_PATTERN/o;
5782   $cond ||= 'TRUE';
5784   # An Automake variable must be consistently defined with the same
5785   # sign by Automake.  A user variable must be set by either `=' or
5786   # `:=', and later promoted to `+='.
5787   if ($var_is_am)
5788     {
5789       if (defined $var_type{$var} && $var_type{$var} ne $type)
5790         {
5791           am_line_error ($var,
5792                          ("$var was set with `$var_type{$var}=' "
5793                           . "and is now set with `$type='"));
5794         }
5795     }
5796   else
5797     {
5798       if (!defined $var_type{$var} && $type eq '+')
5799         {
5800           am_line_error ($var, "$var must be set with `=' before using `+='");
5801         }
5802     }
5803   $var_type{$var} = $type;
5805   # When adding, since we rewrite, don't try to preserve the
5806   # Automake continuation backslashes.
5807   $value =~ s/\\$//mg
5808     if $type eq '+' && $var_is_am;
5810   # Differentiate the first assignment (including with `+=').
5811   if ($type eq '+' && defined $var_value{$var}{$cond})
5812     {
5813       if (substr ($var_value{$var}{$cond}, -1) eq "\n")
5814         {
5815           # Insert a backslash before a trailing newline.
5816           $var_value{$var}{$cond} =
5817             substr ($var_value{$var}{$cond}, 0, -1) . "\\\n";
5818         }
5819       elsif ($var_value{$var}{$cond})
5820         {
5821           # Insert a separator.
5822           $var_value{$var}{$cond} .= ' ';
5823         }
5824        $var_value{$var}{$cond} .= $value;
5825     }
5826   else
5827     {
5828       # The first assignment to a macro sets the line number.  Ideally I
5829       # suppose we would associate line numbers with random bits of text.
5830       # FIXME: We sometimes redefine some variables, but we want to keep
5831       # the original location.  More subs are needed to handle
5832       # properly variables.  Once this done, remove this hack.
5833       $var_line{$var} = $where
5834         unless defined $var_line{$var};
5836       # If Automake tries to override a value specified by the user,
5837       # just don't let it do.
5838       if (defined $var_value{$var}{$cond} && !$var_is_am{$var} && $var_is_am)
5839         {
5840           if ($verbose)
5841             {
5842               print STDERR "$me: refusing to override the user definition of:\n";
5843               variable_dump ($var);
5844               print STDERR "$me: with `$cond' => `$value'\n";
5845             }
5846         }
5847       else
5848         {
5849           # There must be no previous value unless the user is redefining
5850           # an Automake variable or an AC_SUBST variable.
5851           check_ambiguous_conditional ($var, $cond)
5852             unless ($var_is_am{$var} && !$var_is_am
5853                     || exists $configure_vars{$var});
5855           $var_value{$var}{$cond} = $value;
5856         }
5857     }
5859   # An Automake variable can be given to the user, but not the converse.
5860   if (! defined $var_is_am{$var} || !$var_is_am)
5861     {
5862       $var_is_am{$var} = $var_is_am;
5863     }
5867 # &variable_delete ($VAR, [@CONDS])
5868 # ---------------------------------
5869 # Forget about $VAR under the conditions @CONDS, or completely if
5870 # @CONDS is empty.
5871 sub variable_delete ($@)
5873   my ($var, @conds) = @_;
5875   if (!@conds)
5876     {
5877       delete $var_value{$var};
5878       delete $var_line{$var};
5879       delete $var_is_am{$var};
5880       delete $var_comment{$var};
5881       delete $var_type{$var};
5882     }
5883   else
5884     {
5885       foreach my $cond (@conds)
5886         {
5887           delete $var_value{$var}{$cond};
5888         }
5889     }
5893 # &macro_dump ($VAR)
5894 # ------------------
5895 sub macro_dump ($)
5897   my ($var) = @_;
5899   if (!exists $var_value{$var})
5900     {
5901       print STDERR "  $var does not exist\n";
5902     }
5903   else
5904     {
5905       my $var_is_am = $var_is_am{$var} ? "Automake" : "User";
5906       my $where = (defined $var_line{$var}
5907                    ? $var_line{$var} : "undefined");
5908       print STDERR "$var_comment{$var}"
5909         if defined $var_comment{$var};
5910       print STDERR "  $var ($var_is_am, where = $where) $var_type{$var}=\n";
5911       print STDERR "  {\n";
5912       foreach my $vcond (sort by_condition keys %{$var_value{$var}})
5913         {
5914           print STDERR "    $vcond => $var_value{$var}{$vcond}\n";
5915         }
5916       print STDERR "  }\n";
5917     }
5921 # &macros_dump ()
5922 # ---------------
5923 sub macros_dump ()
5925   my ($var) = @_;
5927   print STDERR "%var_value =\n";
5928   print STDERR "{\n";
5929   foreach my $var (sort (keys %var_value))
5930     {
5931       macro_dump ($var);
5932     }
5933   print STDERR "}\n";
5937 # $BOOLEAN
5938 # &variable_defined ($VAR, [$COND])
5939 # ---------------------------------
5940 # See if a variable exists.  $VAR is the variable name, and $COND is
5941 # the condition which we should check.  If no condition is given, we
5942 # currently return true if the variable is defined under any
5943 # condition.
5944 sub variable_defined ($$)
5946     my ($var, $cond) = @_;
5948     # Unfortunately we can't just check for $var_value{VAR}{COND}
5949     # as this would make perl create $condition{VAR}, which we
5950     # don't want.
5951     if (!exists $var_value{$var})
5952       {
5953         if (defined $targets{$var})
5954           {
5955             &am_line_error ($var, "`$var' is a target; expected a variable")
5956           }
5957         # The variable is not defined
5958         return 0;
5959       }
5961     if ($cond && !exists $var_value{$var}{$cond})
5962       {
5963         # The variable is not defined for the given condition.
5964         return 0;
5965       }
5967     # Even a var_value examination is good enough for us.  FIXME:
5968     # really should maintain examined status on a per-condition basis.
5969     $content_seen{$var} = 1;
5970     return 1;
5973 # Mark a variable as examined.
5974 sub examine_variable
5976     my ($var) = @_;
5977     &variable_defined ($var);
5980 # Return the set of conditions for which a variable is defined.
5982 # If the variable is not defined conditionally, and is not defined in
5983 # terms of any variables which are defined conditionally, then this
5984 # returns the empty list.
5986 # If the variable is defined conditionally, but is not defined in
5987 # terms of any variables which are defined conditionally, then this
5988 # returns the list of conditions for which the variable is defined.
5990 # If the variable is defined in terms of any variables which are
5991 # defined conditionally, then this returns a full set of permutations
5992 # of the subvariable conditions.  For example, if the variable is
5993 # defined in terms of a variable which is defined for COND_TRUE,
5994 # then this returns both COND_TRUE and COND_FALSE.  This is
5995 # because we will need to define the variable under both conditions.
5997 sub variable_conditions ($)
5999     my ($var) = @_;
6000     my %uniqify;
6001     my @uniq_list;
6003     %vars_scanned = ();
6004     foreach my $cond (&variable_conditions_sub ($var, '', ()))
6005     {
6006         next
6007           if $cond eq 'FALSE';
6008         $uniqify{$cond} = 1;
6009     }
6011     @uniq_list = sort by_condition keys %uniqify;
6012     # Note we cannot just do `return sort keys %uniqify', because this
6013     # function is sometimes used in a scalar context.
6014     return @uniq_list;
6018 # $BOOLEAN
6019 # &variable_conditionally_defined ($VAR)
6020 # --------------------------------------
6021 sub variable_conditionally_defined ($)
6023     my ($var) = @_;
6024     foreach my $cond (variable_conditions ($var))
6025       {
6026         return 1
6027           unless $cond =~ /^TRUE|FALSE$/;
6028       }
6029     return 0;
6034 # &variable_conditions_sub ($VAR, $PARENT, @PARENT_CONDS)
6035 # -------------------------------------------------------
6036 # A subroutine of variable_conditions.  We only return conditions
6037 # which are true for all the conditions in @PARENT_CONDS.
6038 sub variable_conditions_sub
6040     my ($var, $parent, @parent_conds) = @_;
6041     my @new_conds = ();
6043     if (defined $vars_scanned{$var})
6044     {
6045         &am_line_error ($parent, "variable `$var' recursively defined");
6046         return ();
6047     }
6048     $vars_scanned{$var} = 1;
6050     my @this_conds = ();
6051     foreach my $vcond (keys %{$var_value{$var}})
6052     {
6053         next
6054           if ! conditionals_true_when ((@parent_conds), ($vcond));
6056         push (@this_conds, $vcond);
6058         push (@parent_conds, $vcond);
6059         my @subvar_conds = ();
6060         foreach (split (' ', $var_value{$var}{$vcond}))
6061         {
6062             # If a comment seen, just leave.
6063             last if /^#/;
6065             # Handle variable substitutions.
6066             if (/^\$\{(.*)\}$/ || /^\$\((.*)\)$/)
6067             {
6068                 push (@subvar_conds,
6069                       &variable_conditions_sub ($1, $var, @parent_conds));
6070             }
6071         }
6072         pop (@parent_conds);
6074         # If there are no conditional subvariables, then we want to
6075         # return this condition.  Otherwise, we want to return the
6076         # permutations of the subvariables.
6077         if (! @subvar_conds)
6078         {
6079             push (@new_conds, $vcond);
6080         }
6081         else
6082         {
6083             push (@new_conds, &variable_conditions_reduce (@subvar_conds));
6084         }
6085     }
6087     # Unset our entry in vars_scanned.  We only care about recursive
6088     # definitions.
6089     delete $vars_scanned{$var};
6091     # If there are no parents, then this call is the top level call.
6092     if (! $parent)
6093       {
6094         # Now we want to return all permutations of the subvariable
6095         # conditions.
6096         my %allconds = ();
6097         foreach my $item (@new_conds)
6098         {
6099             foreach (split (' ', $item))
6100             {
6101                 s/^(.*)_(TRUE|FALSE)$/$1_TRUE/;
6102                 $allconds{$_} = 1;
6103             }
6104         }
6105         return &variable_conditions_permutations (sort keys %allconds);
6106       }
6108     # If we are being called on behalf of another variable, we need to
6109     # return all possible permutations of the conditions.  We have
6110     # already handled everything in @this_conds along with their
6111     # subvariables.  We now need to add any permutations that are not
6112     # in @this_conds.
6113     foreach my $this_cond (@this_conds)
6114     {
6115         my @perms =
6116             &variable_conditions_permutations (split(' ', $this_cond));
6117         foreach my $perm (@perms)
6118         {
6119             my $ok = 1;
6120             foreach my $scan (@this_conds)
6121             {
6122                 if (&conditional_true_when ($perm, $scan)
6123                     || &conditional_true_when ($scan, $perm))
6124                 {
6125                     $ok = 0;
6126                     last;
6127                 }
6128             }
6129             next if ! $ok;
6131             next
6132               if ! conditionals_true_when ((@parent_conds), ($perm));
6134             # This permutation was not already handled, and is valid
6135             # for the parents.
6136             push (@new_conds, $perm);
6137         }
6138     }
6140     return @new_conds;
6144 # Filter a list of conditionals so that only the exclusive ones are
6145 # retained.  For example, if both `COND1_TRUE COND2_TRUE' and
6146 # `COND1_TRUE' are in the list, discard the latter.
6147 sub variable_conditions_reduce
6149     my (@conds) = @_;
6150     my @ret = ();
6151     foreach my $cond (@conds)
6152     {
6153         # FALSE is absorbent.
6154         if ($cond eq 'FALSE')
6155           {
6156             return ('FALSE');
6157           }
6158         elsif (conditionals_true_when (($cond), (@ret)))
6159           {
6160             push (@ret, $cond);
6161           }
6162     }
6164     return @ret;
6167 # Return a list of permutations of a conditional string.
6168 sub variable_conditions_permutations
6170     my (@comps) = @_;
6171     return ()
6172         if ! @comps;
6173     my $comp = shift (@comps);
6174     return &variable_conditions_permutations (@comps)
6175         if $comp eq '';
6176     my $neg = condition_negate ($comp);
6178     my @ret;
6179     foreach my $sub (&variable_conditions_permutations (@comps))
6180     {
6181         push (@ret, "$comp $sub");
6182         push (@ret, "$neg $sub");
6183     }
6184     if (! @ret)
6185     {
6186         push (@ret, $comp);
6187         push (@ret, $neg);
6188     }
6189     return @ret;
6193 # $BOOL
6194 # &check_variable_defined_unconditionally($VAR, $PARENT)
6195 # ------------------------------------------------------
6196 # Warn if a variable is conditionally defined.  This is called if we
6197 # are using the value of a variable.
6198 sub check_variable_defined_unconditionally ($$)
6200     my ($var, $parent) = @_;
6201     foreach my $cond (keys %{$var_value{$var}})
6202     {
6203         next
6204           if $cond =~ /^TRUE|FALSE$/;
6206         if ($parent)
6207         {
6208             &am_line_error ($parent,
6209                             "warning: automake does not support conditional definition of $var in $parent");
6210         }
6211         else
6212         {
6213             &am_line_error ($parent,
6214                             "warning: automake does not support $var being defined conditionally");
6215             macro_dump ($var);
6217         }
6218     }
6222 # Get the TRUE value of a variable, warn if the variable is
6223 # conditionally defined.
6224 sub variable_value
6226     my ($var) = @_;
6227     &check_variable_defined_unconditionally ($var);
6228     return $var_value{$var}{'TRUE'};
6232 # @VALUES
6233 # &value_to_list ($VAR, $VAL, $COND)
6234 # ----------------------------------
6235 # Convert a variable value to a list, split as whitespace.  This will
6236 # recursively follow $(...) and ${...} inclusions.  It preserves @...@
6237 # substitutions.
6239 # If COND is 'all', then all values under all conditions should be
6240 # returned; if COND is a particular condition (all conditions are
6241 # surrounded by @...@) then only the value for that condition should
6242 # be returned; otherwise, warn if VAR is conditionally defined.
6243 # SCANNED is a global hash listing whose keys are all the variables
6244 # already scanned; it is an error to rescan a variable.
6245 sub value_to_list
6247     my ($var, $val, $cond) = @_;
6248     my @result;
6250     # Strip backslashes
6251     $val =~ s/\\(\n|$)/ /g;
6253     foreach (split (' ', $val))
6254     {
6255         # If a comment seen, just leave.
6256         last if /^#/;
6258         # Handle variable substitutions.
6259         if (/^\$\{([^}]*)\}$/ || /^\$\(([^)]*)\)$/)
6260         {
6261             my $varname = $1;
6263             # If the user uses a losing variable name, just ignore it.
6264             # This isn't ideal, but people have requested it.
6265             next if ($varname =~ /\@.*\@/);
6267             my ($from, $to);
6268             my @temp_list;
6269             if ($varname =~ /^([^:]*):([^=]*)=(.*)$/)
6270             {
6271                 $varname = $1;
6272                 $to = $3;
6273                 ($from = $2) =~ s/(\W)/\\$1/g;
6274             }
6276             # Find the value.
6277             @temp_list = &variable_value_as_list_worker ($1, $cond, $var);
6279             # Now rewrite the value if appropriate.
6280             if ($from)
6281             {
6282                 grep (s/$from$/$to/, @temp_list);
6283             }
6285             push (@result, @temp_list);
6286         }
6287         else
6288         {
6289             push (@result, $_);
6290         }
6291     }
6293     return @result;
6296 # Return contents of variable as list, split as whitespace.  This will
6297 # recursively follow $(...) and ${...} inclusions.  It preserves @...@
6298 # substitutions.  If COND is 'all', then all values under all
6299 # conditions should be returned; if COND is a particular condition
6300 # (all conditions are surrounded by @...@) then only the value for
6301 # that condition should be returned; otherwise, warn if VAR is
6302 # conditionally defined.  If PARENT is specified, it is the name of
6303 # the including variable; this is only used for error reports.
6304 sub variable_value_as_list_worker
6306     my ($var, $cond, $parent) = @_;
6307     my @result = ();
6309     if (! defined $var_value{$var})
6310     {
6311         if (defined $targets{$var})
6312           {
6313             &am_line_error ($var, "`$var' is a target; expected a variable");
6314           }
6315         else
6316           {
6317             &am_line_error ($parent, "variable `$var' not defined");
6318           }
6319     }
6320     elsif (defined $vars_scanned{$var})
6321     {
6322         # `vars_scanned' is a global we use to keep track of which
6323         # variables we've already examined.
6324         &am_line_error ($parent, "variable `$var' recursively defined");
6325     }
6326     elsif ($cond eq 'all')
6327     {
6328         $vars_scanned{$var} = 1;
6329         foreach my $vcond (keys %{$var_value{$var}})
6330         {
6331             my $val = $var_value{$var}{$vcond};
6332             push (@result, &value_to_list ($var, $val, $cond));
6333         }
6334     }
6335     else
6336     {
6337         $cond ||= 'TRUE';
6338         $vars_scanned{$var} = 1;
6339         my $onceflag;
6340         foreach my $vcond (keys %{$var_value{$var}})
6341         {
6342             my $val = $var_value{$var}{$vcond};
6343             if (&conditional_true_when ($vcond, $cond))
6344             {
6345                 # Warn if we have an ambiguity.  It's hard to know how
6346                 # to handle this case correctly.
6347                 &check_variable_defined_unconditionally ($var, $parent)
6348                     if $onceflag;
6349                 $onceflag = 1;
6350                 push (@result, &value_to_list ($var, $val, $cond));
6351             }
6352         }
6353     }
6355     # Unset our entry in vars_scanned.  We only care about recursive
6356     # definitions.
6357     delete $vars_scanned{$var};
6359     return @result;
6363 # &variable_output ($VAR, [@CONDS])
6364 # ---------------------------------
6365 # Output all the values of $VAR is @COND is not specified, else only
6366 # that corresponding to @COND.
6367 sub variable_output ($@)
6369   my ($var, @conds) = @_;
6371   @conds = sort by_condition keys %{$var_value{$var}}
6372     unless @conds;
6374   $output_vars .= $var_comment{$var}
6375     if defined $var_comment{$var};
6377   foreach my $cond (@conds)
6378     {
6379       my $val = $var_value{$var}{$cond};
6380       my $equals = $var_type{$var} eq ':' ? ':=' : '=';
6381       my $output_var = "$var $equals $val";
6382       $output_var =~ s/^/make_condition ($cond)/meg;
6383       $output_vars .= $output_var . "\n";
6384     }
6388 # &variable_pretty_output ($VAR, [@CONDS])
6389 # ----------------------------------------
6390 # Likewise, but pretty, i.e., we *split* the values at spaces.   Use only
6391 # with variables holding filenames.
6392 sub variable_pretty_output ($@)
6394   my ($var, @conds) = @_;
6396   @conds = sort by_condition keys %{$var_value{$var}}
6397     unless @conds;
6399   $output_vars .= $var_comment{$var}
6400     if defined $var_comment{$var};
6402   foreach my $cond (@conds)
6403     {
6404       my $val = $var_value{$var}{$cond};
6405       my $equals = $var_type{$var} eq ':' ? ':=' : '=';
6406       my $make_condition = make_condition ($cond);
6407       $output_vars .= pretty_print_internal ("$make_condition$var $equals",
6408                                              "$make_condition\t",
6409                                              split (' ' , $val));
6410     }
6414 # This is just a wrapper for variable_value_as_list_worker that
6415 # initializes the global hash `vars_scanned'.  This hash is used to
6416 # avoid infinite recursion.
6417 sub variable_value_as_list
6419     my ($var, $cond, $parent) = @_;
6420     %vars_scanned = ();
6421     return &variable_value_as_list_worker ($var, $cond, $parent);
6425 # Like define_variable, but the value is a list, and the variable may
6426 # be defined conditionally.  The second argument is the conditional
6427 # under which the value should be defined; this should be the empty
6428 # string to define the variable unconditionally.  The third argument
6429 # is a list holding the values to use for the variable.  The value is
6430 # pretty printed in the output file.
6431 sub define_pretty_variable
6433     my ($var, $cond, @value) = @_;
6435     # Beware that an empty $cond has a different semantics for
6436     # macro_define and variable_pretty_output.
6437     $cond ||= 'TRUE';
6439     if (! &variable_defined ($var, $cond))
6440     {
6441         macro_define ($var, 1, '', $cond, join (' ', @value), undef);
6442         variable_pretty_output ($var, $cond || 'TRUE');
6443         $content_seen{$var} = 1;
6444     }
6448 # define_variable ($VAR, $VALUE)
6449 # ------------------------------
6450 # Define a new user variable VAR to VALUE, but only if not already defined.
6451 sub define_variable
6453     my ($var, $value) = @_;
6455     define_pretty_variable ($var, 'TRUE', $value);
6459 # Like define_variable, but define a variable to be the configure
6460 # substitution by the same name.
6461 sub define_configure_variable
6463     my ($var) = @_;
6464     my $value = '@' . $var . '@';
6465     &define_variable ($var, $value);
6469 # define_compiler_variable ($LANG)
6470 # --------------------------------
6471 # Define a compiler variable.  We also handle defining the `LT'
6472 # version of the command when using libtool.
6473 sub define_compiler_variable ($)
6475     my ($lang) = @_;
6477     my ($var, $value) = ($lang->compiler, $lang->compile);
6478     &define_variable ($var, $value);
6479     &define_variable ("LT$var", "$(LIBTOOL) --mode=compile $value")
6480       if $seen_libtool;
6484 # define_linker_variable ($LANG)
6485 # ------------------------------
6486 # Define linker variables.
6487 sub define_linker_variable ($)
6489     my ($lang) = @_;
6491     my ($var, $value) = ($lang->lder, $lang->ld);
6492     # CCLD = $(CC).
6493     &define_variable ($lang->lder, $lang->ld);
6494     # CCLINK = $(CCLD) blah blah...
6495     &define_variable ($lang->linker,
6496                       (($seen_libtool ? '$(LIBTOOL) --mode=link ' : '')
6497                        . $lang->link));
6500 ################################################################
6502 ## ---------------- ##
6503 ## Handling rules.  ##
6504 ## ---------------- ##
6506 sub rule_define ($$$$)
6508   my ($target, $rule_is_am, $cond, $where) = @_;
6510   if (defined $targets{$target}
6511       && ($cond
6512           ? ! defined $target_conditional{$target}
6513           : defined $target_conditional{$target}))
6514     {
6515       &am_line_error ($target,
6516                       "$target defined both conditionally and unconditionally");
6517     }
6519   # Value here doesn't matter; for targets we only note existence.
6520   $targets{$target} = $where;
6521   if ($cond)
6522     {
6523       if ($target_conditional{$target})
6524         {
6525           &check_ambiguous_conditional ($target, $cond);
6526         }
6527       $target_conditional{$target}{$cond} = $where;
6528     }
6531   # Check the rule for being a suffix rule. If so, store in a hash.
6533   if ((my ($source_suffix, $object_suffix)) = ($target =~ $SUFFIX_RULE_PATTERN))
6534   {
6535     $suffix_rules{$source_suffix} = $object_suffix;
6536     print "Sources ending in .$source_suffix become .$object_suffix\n"
6537       if $verbose;
6538     # Set SUFFIXES from suffix_rules.
6539     push @suffixes, ".$source_suffix", ".$object_suffix";
6540   }
6544 # See if a target exists.
6545 sub target_defined
6547     my ($target) = @_;
6548     return defined $targets{$target};
6552 ################################################################
6554 # Read Makefile.am and set up %contents.  Simultaneously copy lines
6555 # from Makefile.am into $output_trailer or $output_vars as
6556 # appropriate.  NOTE we put rules in the trailer section.  We want
6557 # user rules to come after our generated stuff.
6558 sub read_am_file
6560     my ($amfile) = @_;
6562     my $am_file = new IO::File ("< $amfile");
6563     if (! $am_file)
6564     {
6565         die "$me: couldn't open `$amfile': $!\n";
6566     }
6567     print "$me: reading $amfile\n" if $verbose;
6569     my $spacing = '';
6570     my $comment = '';
6571     my $blank = 0;
6573     while ($_ = $am_file->getline)
6574     {
6575         if (/$IGNORE_PATTERN/o)
6576         {
6577             # Merely delete comments beginning with two hashes.
6578         }
6579         elsif (/$WHITE_PATTERN/o)
6580         {
6581             # Stick a single white line before the incoming macro or rule.
6582             $spacing = "\n";
6583             $blank = 1;
6584         }
6585         elsif (/$COMMENT_PATTERN/o)
6586         {
6587             # Stick comments before the incoming macro or rule.  Make
6588             # sure a blank line preceeds first block of comments.
6589             $spacing = "\n" unless $blank;
6590             $blank = 1;
6591             $comment .= $spacing . $_;
6592             $spacing = '';
6593         }
6594         else
6595         {
6596             last;
6597         }
6598     }
6600     $output_vars .= $comment . "\n";
6601     $comment = '';
6602     $spacing = "\n";
6604     # We save the conditional stack on entry, and then check to make
6605     # sure it is the same on exit.  This lets us conditonally include
6606     # other files.
6607     my @saved_cond_stack = @cond_stack;
6608     my $cond = conditional_string (@cond_stack);
6610     my $saw_bk = 0;
6611     my $was_rule = 0;
6612     my $last_var_name = '';
6613     my $last_var_type = '';
6614     my $last_var_value = '';
6615     while ($_)
6616     {
6617         $_ .= "\n"
6618             unless substr ($_, -1, 1) eq "\n";
6620         # Don't look at MAINTAINER_MODE_TRUE here.  That shouldn't be
6621         # used by users.  @MAINT@ is an anachronism now.
6622         $_ =~ s/\@MAINT\@//g
6623             unless $seen_maint_mode;
6625         if (/$IGNORE_PATTERN/o)
6626         {
6627             # Merely delete comments beginning with two hashes.
6628         }
6629         elsif (/$WHITE_PATTERN/o)
6630         {
6631             # Stick a single white line before the incoming macro or rule.
6632             $spacing = "\n";
6633             &am_line_error ($., "blank line following trailing backslash")
6634                 if $saw_bk;
6635         }
6636         elsif (/$COMMENT_PATTERN/o)
6637         {
6638             # Stick comments before the incoming macro or rule.
6639             $comment .= $spacing . $_;
6640             $spacing = '';
6641             &am_line_error ($., "comment following trailing backslash")
6642                 if $saw_bk;
6643         }
6644         elsif ($saw_bk)
6645         {
6646             if ($was_rule)
6647             {
6648                 $output_trailer .= &make_condition (@cond_stack);
6649                 $output_trailer .= $_;
6650             }
6651             else
6652             {
6653               $last_var_value .= ' '
6654                 unless $last_var_value =~ /\s$/;
6655               $last_var_value .= $_;
6657               if (!/\\$/)
6658                 {
6659                   $var_comment{$last_var_name} .= "$spacing"
6660                     if (!defined $var_comment{$last_var_name}
6661                         || substr ($var_comment{$last_var_name}, -1) ne "\n");
6662                   $var_comment{$last_var_name} .= "$comment";
6663                   $comment = $spacing = '';
6664                   macro_define ($last_var_name, 0,
6665                                 $last_var_type, $cond,
6666                                 $last_var_value, $.)
6667                     if $cond ne 'FALSE';
6668                   push (@var_list, $last_var_name);
6669                 }
6670             }
6671         }
6673         elsif (/$IF_PATTERN/o)
6674           {
6675             $cond = cond_stack_if ($1, $2, "$amfile:$.");
6676           }
6677         elsif (/$ELSE_PATTERN/o)
6678           {
6679             $cond = cond_stack_else ($1, $2, "$amfile:$.");
6680           }
6681         elsif (/$ENDIF_PATTERN/o)
6682           {
6683             $cond = cond_stack_endif ($1, $2, "$amfile:$.");
6684           }
6686         elsif (/$RULE_PATTERN/o)
6687         {
6688             # Found a rule.
6689             $was_rule = 1;
6691             rule_define ($1, 0, $cond, $.);
6693             $var_line{$1} = $.;
6694             $output_trailer .= $comment . $spacing;
6695             $output_trailer .= &make_condition (@cond_stack);
6696             $output_trailer .= $_;
6697             $comment = $spacing = '';
6698         }
6699         elsif (/$ASSIGNMENT_PATTERN/o)
6700         {
6701             # print STDERR;
6702             # Found a macro definition.
6703             $was_rule = 0;
6704             $last_var_name = $1;
6705             $last_var_type = $2;
6706             $last_var_value = $3;
6707             if ($3 ne '' && substr ($3, -1) eq "\\")
6708             {
6709                 # We preserve the `\' because otherwise the long lines
6710                 # that are generated will be truncated by broken
6711                 # `sed's.
6712                 $last_var_value = $3 . "\n";
6713             }
6715             if (!/\\$/)
6716               {
6717                 # FIXME: this doesn't always work correctly; it will
6718                 # group all comments for a given variable, no matter
6719                 # where defined.
6720                 # Accumulating variables must not be output.
6721                 $var_comment{$last_var_name} .= "$spacing"
6722                   if (!defined $var_comment{$last_var_name}
6723                       || substr ($var_comment{$last_var_name}, -1) ne "\n");
6724                 $var_comment{$last_var_name} .= "$comment";
6725                 $comment = $spacing = '';
6727                 # print STDERR "$last_var_name => $last_var_value\n";
6728                 macro_define ($last_var_name, 0,
6729                               $last_var_type, $cond,
6730                               $last_var_value, $.)
6731                   if $cond ne 'FALSE';
6732                 push (@var_list, $last_var_name);
6733               }
6734         }
6735         elsif (/$INCLUDE_PATTERN/o)
6736         {
6737             my $path = $1;
6739             if ($path =~ s/^\$\(top_srcdir\)\///)
6740             {
6741                 push (@include_stack, "\$\(top_srcdir\)/$path");
6742             }
6743             else
6744             {
6745                 $path =~ s/\$\(srcdir\)\///;
6746                 push (@include_stack, "\$\(srcdir\)/$path");
6747                 $path = $relative_dir . "/" . $path;
6748             }
6749             &read_am_file ($path);
6750         }
6751         else
6752         {
6753             # This isn't an error; it is probably a continued rule.
6754             # In fact, this is what we assume.
6755             $was_rule = 1;
6756             $output_trailer .= $comment . $spacing;
6757             $output_trailer .= &make_condition  (@cond_stack);
6758             $output_trailer .= $_;
6759             $comment = $spacing = '';
6760         }
6762         $saw_bk = /\\$/;
6763         $_ = $am_file->getline;
6764     }
6766     $output_trailer .= $comment;
6768     if (join (' ', @saved_cond_stack) ne join (' ', @cond_stack))
6769     {
6770         if (@cond_stack)
6771         {
6772             &am_error ("unterminated conditionals: @cond_stack");
6773         }
6774         else
6775         {
6776             # FIXME: better error message here.
6777             &am_error ("conditionals not nested in include file");
6778         }
6779     }
6783 # define_standard_variables ()
6784 # ----------------------------
6785 # A helper for read_main_am_file which initializes configure variables
6786 # and variables from header-vars.am.  This is a subr so we can call it
6787 # twice.
6788 sub define_standard_variables
6790     my $saved_output_vars = $output_vars;
6791     my ($comments, undef, $rules) =
6792       &file_contents_internal (1, "$am_dir/header-vars.am",
6793                      ('BUILD'    => $seen_canonical == $AC_CANONICAL_SYSTEM,
6794                       'HOST'     => $seen_canonical,
6795                       'TARGET'   => $seen_canonical == $AC_CANONICAL_SYSTEM,
6796                       'top_builddir' => backname ($relative_dir)));
6798     # This will output the definitions in $output_vars, which we don't
6799     # want...
6800     foreach my $var (sort keys %configure_vars)
6801     {
6802         &define_configure_variable ($var);
6803         push (@var_list, $var);
6804     }
6806     # ... hence, we restore $output_vars.
6807     $output_vars = $saved_output_vars . $comments . $rules;
6810 # Read main am file.
6811 sub read_main_am_file
6813     my ($amfile) = @_;
6815     # This supports the strange variable tricks we are about to play.
6816     if (scalar keys %var_value > 0)
6817       {
6818         macros_dump ();
6819         &prog_error ("variable defined before read_main_am_file");
6820       }
6822     # Generate copyright header for generated Makefile.in.
6823     # We do discard the output of predefined variables, handled below.
6824     $output_vars = ("# $in_file_name generated automatically by automake "
6825                    . $VERSION . " from $am_file_name.\n");
6826     $output_vars .= $gen_copyright;
6828     # We want to predefine as many variables as possible.  This lets
6829     # the user set them with `+=' in Makefile.am.  However, we don't
6830     # want these initial definitions to end up in the output quite
6831     # yet.  So we just load them, but output them later.
6832     &define_standard_variables;
6834     # Read user file, which might override some of our values.
6835     &read_am_file ($amfile);
6837     # Ouput all the Automake variables.  If the user changed one, then
6838     # it is now marked as owned by the user.
6839     foreach my $var (uniq @var_list)
6840     {
6841         # Don't process user variables.
6842         variable_output ($var)
6843           unless !$var_is_am{$var};
6844     }
6846     # Now dump the user variables that were defined.  We do it in the same
6847     # order in which they were defined (skipping duplicates).
6848     foreach my $var (uniq @var_list)
6849     {
6850         # Don't process Automake variables.
6851         variable_output ($var)
6852           unless $var_is_am{$var};
6853     }
6856 ################################################################
6858 # $FLATTENED
6859 # &flatten ($STRING)
6860 # ------------------
6861 # Flatten the $STRING and return the result.
6862 sub flatten
6864   $_ = shift;
6866   s/\\\n//somg;
6867   s/\s+/ /g;
6868   s/^ //;
6869   s/ $//;
6871   return $_;
6875 # @PARAGRAPHS
6876 # &make_paragraphs ($MAKEFILE, [%TRANSFORM])
6877 # ------------------------------------------
6878 # Load a $MAKEFILE, apply the %TRANSFORM, and return it as a list of
6879 # paragraphs.
6880 sub make_paragraphs ($%)
6882     my ($file, %transform) = @_;
6884     # Complete %transform with global options and make it a Perl
6885     # $command.
6886     my $command =
6887       "s/$IGNORE_PATTERN//gm;"
6888         . transform (%transform,
6890                      'CYGNUS'          => $cygnus_mode,
6891                      'MAINTAINER-MODE'
6892                      => $seen_maint_mode ? subst ('MAINTAINER_MODE_TRUE') : '',
6894                      'SHAR'        => $options{'dist-shar'} || 0,
6895                      'BZIP2'       => $options{'dist-bzip2'} || 0,
6896                      'ZIP'         => $options{'dist-zip'} || 0,
6897                      'COMPRESS'    => $options{'dist-tarZ'} || 0,
6899                      'INSTALL-INFO' => !$options{'no-installinfo'},
6900                      'INSTALL-MAN'  => !$options{'no-installman'},
6901                      'CK-NEWS'      => $options{'check-news'} || 0,
6903                      'SUBDIRS'      => &variable_defined ('SUBDIRS'),
6904                      'TOPDIR'       => backname ($relative_dir),
6905                      'TOPDIR_P'     => $relative_dir eq '.',
6906                      'CONFIGURE-AC' => $configure_ac,
6908                      'LIBTOOL'      => defined $configure_vars{'LIBTOOL'})
6909           # We don't need more than two consecutive new-lines.
6910           . 's/\n{3,}/\n\n/g';
6912     # Swallow the file and apply the COMMAND.
6913     my $fc_file = new IO::File ("< $file");
6914     if (! $fc_file)
6915     {
6916         die "$me: installation error: cannot open `$file'\n";
6917     }
6918     # Looks stupid?
6919     print "$me: reading $file\n"
6920       if $verbose;
6921     my $saved_dollar_slash = $/;
6922     undef $/;
6923     $_ = $fc_file->getline;
6924     $/ = $saved_dollar_slash;
6925     eval $command;
6926     $fc_file->close;
6927     my $content = $_;
6929     # Split at unescaped new lines.
6930     my @lines = split (/(?<!\\)\n/, $content);
6931     my @res;
6933     while (defined ($_ = shift @lines))
6934       {
6935         my $paragraph = "$_";
6936         # If we are a rule, eat as long as we start with a tab.
6937         if (/$RULE_PATTERN/smo)
6938           {
6939             while (defined ($_ = shift @lines) && $_ =~ /^\t/)
6940               {
6941                 $paragraph .= "\n$_";
6942               }
6943             unshift (@lines, $_);
6944           }
6946         # If we are a comments, eat as much comments as you can.
6947         elsif (/$COMMENT_PATTERN/smo)
6948           {
6949             while (defined ($_ = shift @lines)
6950                    && $_ =~ /$COMMENT_PATTERN/smo)
6951               {
6952                 $paragraph .= "\n$_";
6953               }
6954             unshift (@lines, $_);
6955           }
6957         push @res, $paragraph;
6958         $paragraph = '';
6959       }
6961     return @res;
6966 # ($COMMENT, $VARIABLES, $RULES)
6967 # &file_contents_internal ($IS_AM, $FILE, [%TRANSFORM])
6968 # -----------------------------------------------------
6969 # Return contents of a file from $am_dir, automatically skipping
6970 # macros or rules which are already known. $IS_AM iff the caller is
6971 # reading an Automake file (as opposed to the user's Makefile.am).
6972 sub file_contents_internal ($$%)
6974     my ($is_am, $file, %transform) = @_;
6976     my $result_vars = '';
6977     my $result_rules = '';
6978     my $comment = '';
6979     my $spacing = '';
6981     # We save the conditional stack on entry, and then check to make
6982     # sure it is the same on exit.  This lets us conditonally include
6983     # other files.
6984     my @saved_cond_stack = @cond_stack;
6985     my $cond = conditional_string (@cond_stack);
6987     foreach (make_paragraphs ($file, %transform))
6988     {
6989         # Sanity checks.
6990         &am_file_error ($file, "blank line following trailing backslash:\n$_")
6991           if /\\$/;
6992         &am_file_error ($file, "comment following trailing backslash:\n$_")
6993           if /\\#/;
6995         if (/^$/)
6996         {
6997             # Stick empty line before the incoming macro or rule.
6998             $spacing = "\n";
6999         }
7000         elsif (/$COMMENT_PATTERN/mso)
7001         {
7002             # Stick comments before the incoming macro or rule.
7003             $comment = "$_\n";
7004         }
7006         # Handle inclusion of other files.
7007         elsif (/$INCLUDE_PATTERN/o)
7008         {
7009             if ($cond ne 'FALSE')
7010               {
7011                 my $file = ($is_am ? "$am_dir/" : '') . $1;
7012                 # N-ary `.=' fails.
7013                 my ($com, $vars, $rules)
7014                   = file_contents_internal ($is_am, $file, %transform);
7015                 $comment .= $com;
7016                 $result_vars .= $vars;
7017                 $result_rules .= $rules;
7018               }
7019         }
7021         # Handling the conditionals.
7022         elsif (/$IF_PATTERN/o)
7023           {
7024             $cond = cond_stack_if ($1, $2, $file);
7025           }
7026         elsif (/$ELSE_PATTERN/o)
7027           {
7028             $cond = cond_stack_else ($1, $2, $file);
7029           }
7030         elsif (/$ENDIF_PATTERN/o)
7031           {
7032             $cond = cond_stack_endif ($1, $2, $file);
7033           }
7035         # Handling rules.
7036         elsif (/$RULE_PATTERN/mso)
7037         {
7038           # Separate relationship from optional actions: the first
7039           # `new-line tab" not preceded by backslash (continuation
7040           # line).
7041           # I'm quite shoked!  It seems that (\\\n|[^\n]) is not the
7042           # same as `([^\n]|\\\n)!!!  Don't swap it, it breaks.
7043           my $paragraph = $_;
7044           /^((?:\\\n|[^\n])*)(?:\n(\t.*))?$/som;
7045           my ($relationship, $actions) = ($1, $2 || '');
7047           # Separate targets from dependencies: the first colon.
7048           $relationship =~ /^([^:]+\S+) *: *(.*)$/som;
7049           my ($targets, $dependencies) = ($1, $2);
7050           # Remove the escaped new lines.
7051           # I don't know why, but I have to use a tmp $flat_deps.
7052           my $flat_deps = &flatten ($dependencies);
7053           my @deps = split (' ', $flat_deps);
7055           foreach (split (' ' , $targets))
7056             {
7057               # FIXME: We are not robust to people defining several targets
7058               # at once, only some of them being in %dependencies.
7060               # Output only if not in FALSE.
7061               if (defined $dependencies{$_}
7062                   && $cond ne 'FALSE')
7063                 {
7064                   &depend ($_, @deps);
7065                   $actions{$_} .= $actions;
7066                 }
7067               else
7068                 {
7069                   # Free lance dependency.  Output the rule for all the
7070                   # targets instead of one by one.
7071                   if (!defined $targets{$targets}
7072                       && $cond ne 'FALSE')
7073                     {
7074                       $paragraph =~ s/^/make_condition (@cond_stack)/gme;
7075                       $result_rules .= "$spacing$comment$paragraph\n";
7076                       rule_define ($targets, $is_am, $cond, $file);
7077                     }
7078                   $comment = $spacing = '';
7079                   last;
7080                 }
7081             }
7082         }
7084         elsif (/$ASSIGNMENT_PATTERN/mso)
7085         {
7086             my ($var, $type, $val) = ($1, $2, $3);
7087             &am_file_error ($file, "macro `$var' with trailing backslash")
7088               if /\\$/;;
7090             # Accumulating variables must not be output.
7091             $var_comment{$var} .= "$spacing"
7092               if (!defined $var_comment{$var}
7093                   || substr ($var_comment{$var}, -1) ne "\n");
7094             $var_comment{$var} .= "$comment";
7095             macro_define ($var, $is_am, $type, $cond, $val, $file)
7096               if $cond ne 'FALSE';
7097             push (@var_list, $var);
7099             # If the user has set some variables we were in charge
7100             # of (which is detected by the first reading of
7101             # `header-vars.am'), we must not output them.
7102             $result_vars .= "$spacing$comment$_\n"
7103               if $type ne '+' && $var_is_am{$var} && $cond ne 'FALSE';
7105             $comment = $spacing = '';
7106         }
7107         else
7108         {
7109             # This isn't an error; it is probably some tokens which
7110             # configure is supposed to replace, such as `@SET-MAKE@',
7111             # or some part of a rule cut by an if/endif.
7112             if ($cond ne 'FALSE')
7113               {
7114                 s/^/make_condition (@cond_stack)/gme;
7115                 $result_rules .= "$spacing$comment$_\n";
7116               }
7117             $comment = $spacing = '';
7118         }
7119     }
7121     if (join (' ', @saved_cond_stack) ne join (' ', @cond_stack))
7122     {
7123         if (@cond_stack)
7124         {
7125             &am_error ("unterminated conditionals: @cond_stack");
7126         }
7127         else
7128         {
7129             # FIXME: better error message here.
7130             &am_error ("conditionals not nested in include file");
7131         }
7132     }
7134     return ($comment, $result_vars, $result_rules);
7138 # $CONTENTS
7139 # &file_contents ($BASENAME, [%TRANSFORM])
7140 # ----------------------------------------
7141 # Return contents of a file from $am_dir, automatically skipping
7142 # macros or rules which are already known.
7143 sub file_contents ($%)
7145     my ($basename, %transform) = @_;
7146     my ($comments, $variables, $rules) =
7147       file_contents_internal (1, "$am_dir/$basename.am", %transform);
7148     return "$comments$variables$rules";
7152 # $REGEXP
7153 # &transform (%PAIRS)
7154 # -------------------
7155 # Foreach ($TOKEN, $VAL) in %PAIRS produce a replacement expression suitable
7156 # for file_contents which:
7157 #   - replaces @$TOKEN@ with $VALUE,
7158 #   - enables/disables ?$TOKEN?.
7159 sub transform (%)
7161     my (%pairs) = @_;
7162     my $result = '';
7164     while (my ($token, $val) = each %pairs)
7165     {
7166         $result .= "s/\Q%$token%\E/\Q$val\E/gm;";
7167         if ($val)
7168         {
7169             $result .= "s/\Q?$token?\E//gm;s/^.*\Q?!$token?\E.*\\n//gm;";
7170             $result .= "s/\Q%?$token%\E/TRUE/gm;";
7171         }
7172         else
7173         {
7174             $result .= "s/\Q?!$token?\E//gm;s/^.*\Q?$token?\E.*\\n//gm;";
7175             $result .= "s/\Q%?$token%\E/FALSE/gm;";
7176         }
7177     }
7179     return $result;
7183 # Find all variable prefixes that are used for install directories.  A
7184 # prefix `zar' qualifies iff:
7185 # * `zardir' is a variable.
7186 # * `zar_PRIMARY' is a variable.
7187 sub am_primary_prefixes
7189     my ($primary, $can_dist, @prefixes) = @_;
7191     my %valid;
7192     grep ($valid{$_} = 0, @prefixes);
7193     $valid{'EXTRA'} = 0;
7194     foreach my $varname (keys %var_value)
7195     {
7196         # Automake is allowed to define variables that look like they
7197         # are magic variables, such as INSTALL_DATA.
7198         next
7199           if $var_is_am{$varname};
7201         if ($varname =~ /^(nobase_)?(dist_|nodist_)?(.*)_$primary$/)
7202         {
7203             my ($base, $dist, $X) = ($1 || '', $2 || '', $3 || '');
7204             if ($dist ne '' && ! $can_dist)
7205             {
7206                 # Note that a configure variable is always legitimate.
7207                 # It is natural to name such variables after the
7208                 # primary, so we explicitly allow it.
7209                 if (! defined $configure_vars{$varname})
7210                 {
7211                     &am_line_error ($varname,
7212                                     "invalid variable `$varname': `dist' is forbidden");
7213                 }
7214             }
7215             elsif (! defined $valid{$X} && ! &variable_defined ("${X}dir"))
7216             {
7217                 # Note that a configure variable is always legitimate.
7218                 # It is natural to name such variables after the
7219                 # primary, so we explicitly allow it.
7220                 if (! defined $configure_vars{$varname})
7221                 {
7222                     &am_line_error ($varname,
7223                                     "invalid variable `$varname'");
7224                 }
7225             }
7226             else
7227             {
7228                 # Ensure all extended prefixes are actually used.
7229                 $valid{"$base$dist$X"} = 1;
7230             }
7231         }
7232     }
7234     return %valid;
7237 # Handle `where_HOW' variable magic.  Does all lookups, generates
7238 # install code, and possibly generates code to define the primary
7239 # variable.  The first argument is the name of the .am file to munge,
7240 # the second argument is the primary variable (eg HEADERS), and all
7241 # subsequent arguments are possible installation locations.  Returns
7242 # list of all values of all _HOW targets.
7244 # FIXME: this should be rewritten to be cleaner.  It should be broken
7245 # up into multiple functions.
7247 # Usage is: am_install_var (OPTION..., file, HOW, where...)
7248 sub am_install_var
7250     my (@args) = @_;
7252     my $do_require = 1;
7253     my $can_dist = 0;
7254     my $default_dist = 0;
7255     while (@args)
7256     {
7257         if ($args[0] eq '-noextra')
7258         {
7259             $do_require = 0;
7260         }
7261         elsif ($args[0] eq '-candist')
7262         {
7263             $can_dist = 1;
7264         }
7265         elsif ($args[0] eq '-defaultdist')
7266         {
7267             $default_dist = 1;
7268             $can_dist = 1;
7269         }
7270         elsif ($args[0] !~ /^-/)
7271         {
7272             last;
7273         }
7274         shift (@args);
7275     }
7277     my ($file, $primary, @prefixes) = @args;
7279     # Now that configure substitutions are allowed in where_HOW
7280     # variables, it is an error to actually define the primary.  We
7281     # allow `JAVA', as it is customarily used to mean the Java
7282     # interpreter.  This is but one of several Java hacks.  Similarly,
7283     # `PYTHON' is customarily used to mean the Python interpreter.
7284     &am_line_error ($primary, "`$primary' is an anachronism")
7285         if &variable_defined ($primary)
7286             && ($primary ne 'JAVA' && $primary ne 'PYTHON');
7289     # Look for misspellings.  It is an error to have a variable ending
7290     # in a "reserved" suffix whose prefix is unknown, eg
7291     # "bni_PROGRAMS".  However, unusual prefixes are allowed if a
7292     # variable of the same name (with "dir" appended) exists.  For
7293     # instance, if the variable "zardir" is defined, then
7294     # "zar_PROGRAMS" becomes valid.  This is to provide a little extra
7295     # flexibility in those cases which need it.
7296     my %valid = &am_primary_prefixes ($primary, $can_dist, @prefixes);
7298     # If a primary includes a configure substitution, then the EXTRA_
7299     # form is required.  Otherwise we can't properly do our job.
7300     my $require_extra;
7301     my $warned_about_extra = 0;
7303     my @used = ();
7304     my @result = ();
7306     # True if the iteration is the first one.  Used for instance to
7307     # output parts of the associated file only once.
7308     my $first = 0;
7309     foreach my $X (sort keys %valid)
7310     {
7311         my $one_name = $X . '_' . $primary;
7312         next
7313           unless (&variable_defined ($one_name));
7315         my $strip_subdir = 1;
7316         # If subdir prefix should be preserved, do so.
7317         if ($X =~ /^nobase_/)
7318           {
7319             $strip_subdir = 0;
7320             $X =~ s/^nobase_//;
7321           }
7323         my $nodir_name = $X;
7324         # If files should be distributed, do so.
7325         my $dist_p = 0;
7326         if ($can_dist)
7327           {
7328             $dist_p = (($default_dist && $one_name !~ /^nodist_/)
7329                        || (! $default_dist && $one_name =~ /^dist_/));
7330             $nodir_name =~ s/^(dist|nodist)_//;
7331           }
7333         # Append actual contents of where_PRIMARY variable to
7334         # result.
7335         foreach my $rcurs (&variable_value_as_list ($one_name, 'all'))
7336           {
7337             # Skip configure substitutions.  Possibly bogus.
7338             if ($rcurs =~ /^\@.*\@$/)
7339               {
7340                 if ($X eq 'EXTRA')
7341                   {
7342                     if (! $warned_about_extra)
7343                       {
7344                         $warned_about_extra = 1;
7345                         &am_line_error ($one_name,
7346                                         "`$one_name' contains configure substitution, but shouldn't");
7347                       }
7348                   }
7349                 # Check here to make sure variables defined in
7350                 # configure.ac do not imply that EXTRA_PRIMARY
7351                 # must be defined.
7352                 elsif (! defined $configure_vars{$one_name})
7353                   {
7354                     $require_extra = $one_name
7355                       if $do_require;
7356                   }
7358                 next;
7359               }
7361             push (@result, $rcurs);
7362           }
7364         # A blatant hack: we rewrite each _PROGRAMS primary to
7365         # include EXEEXT when in Cygwin32 mode.
7366         if ($primary eq 'PROGRAMS')
7367           {
7368             my @conds = &variable_conditions ($one_name);
7370             my @condvals;
7371             foreach my $cond (@conds)
7372               {
7373                 my @one_binlist = ();
7374                 my @condval = &variable_value_as_list ($one_name,
7375                                                        $cond);
7376                 foreach my $rcurs (@condval)
7377                   {
7378                     if ($rcurs =~ /\./ || $rcurs =~ /^\@.*\@$/)
7379                       {
7380                         push (@one_binlist, $rcurs);
7381                       }
7382                     else
7383                       {
7384                         push (@one_binlist, $rcurs . '$(EXEEXT)');
7385                       }
7386                   }
7388                 push (@condvals, $cond);
7389                 push (@condvals, join (' ', @one_binlist));
7390               }
7392             variable_delete ($one_name);
7393             while (@condvals)
7394               {
7395                 my $cond = shift (@condvals);
7396                 my @val = split (' ', shift (@condvals));
7397                 &define_pretty_variable ($one_name, $cond, @val);
7398               }
7399           }
7401         # "EXTRA" shouldn't be used when generating clean targets,
7402         # all, or install targets.
7403         if ($X eq 'EXTRA')
7404           {
7405             # We used to warn if EXTRA_FOO was defined uselessly,
7406             # but this was annoying.
7407             next;
7408           }
7410         if ($X eq 'check')
7411           {
7412             push (@check, '$(' . $one_name . ')');
7413           }
7414         else
7415           {
7416             push (@used, '$(' . $one_name . ')');
7417           }
7419         # Is this to be installed?
7420         my $install_p = $X ne 'noinst' && $X ne 'check';
7422         # If so, with install-exec? (or install-data?).
7423         my $exec_p = (defined $exec_dir_p {$X}
7424                       ? $exec_dir_p {$X}
7425                       : ($X =~ /exec/));
7427         # Singular form of $PRIMARY.
7428         (my $one_primary = $primary) =~ s/S$//;
7429         $output_rules .= &file_contents ($file,
7430                                          ('FIRST' => $first,
7432                                           'PRIMARY'     => $primary,
7433                                           'ONE_PRIMARY' => $one_primary,
7434                                           'DIR'         => $X,
7435                                           'NDIR'        => $nodir_name,
7436                                           'BASE'        => $strip_subdir,
7438                                           'EXEC'    => $exec_p,
7439                                           'INSTALL' => $install_p,
7440                                           'DIST'    => $dist_p));
7442         $first = '';
7443     }
7445     # The JAVA variable is used as the name of the Java interpreter.
7446     # The PYTHON variable is used as the name of the Python interpreter.
7447     if (@used && $primary ne 'JAVA' && $primary ne 'PYTHON')
7448     {
7449         # Define it.
7450         &define_pretty_variable ($primary, '', @used);
7451         $output_vars .= "\n";
7452     }
7454     if ($require_extra && ! &variable_defined ('EXTRA_' . $primary))
7455     {
7456         &am_line_error ($require_extra,
7457                         "`$require_extra' contains configure substitution, but `EXTRA_$primary' not defined");
7458     }
7460     # Push here because PRIMARY might be configure time determined.
7461     push (@all, '$(' . $primary . ')')
7462         if @used && $primary ne 'JAVA' && $primary ne 'PYTHON';
7464     # Make the result unique.  This lets the user use conditionals in
7465     # a natural way, but still lets us program lazily -- we don't have
7466     # to worry about handling a particular object more than once.
7467     return uniq (sort @result);
7471 ################################################################
7473 # Each key in this hash is the name of a directory holding a
7474 # Makefile.in.  These variables are local to `is_make_dir'.
7475 my %make_dirs = ();
7476 my $make_dirs_set = 0;
7478 sub is_make_dir
7480     my ($dir) = @_;
7481     if (! $make_dirs_set)
7482     {
7483         foreach my $iter (@configure_input_files)
7484         {
7485             $make_dirs{dirname ($iter)} = 1;
7486         }
7487         # We also want to notice Makefile.in's.
7488         foreach my $iter (@other_input_files)
7489         {
7490             if ($iter =~ /Makefile\.in$/)
7491             {
7492                 $make_dirs{dirname ($iter)} = 1;
7493             }
7494         }
7495         $make_dirs_set = 1;
7496     }
7497     return defined $make_dirs{$dir};
7500 ################################################################
7502 # This variable is local to the "require file" set of functions.
7503 my @require_file_paths = ();
7505 # If a file name appears as a key in this hash, then it has already
7506 # been checked for.  This variable is local to the "require file"
7507 # functions.
7508 %require_file_found = ();
7510 # See if we want to push this file onto dist_common.  This function
7511 # encodes the rules for deciding when to do so.
7512 sub maybe_push_required_file
7514     my ($dir, $file, $fullfile) = @_;
7516     # FIXME: Once again, special-case `.'.
7517     if ($dir eq $relative_dir || $dir eq '.')
7518     {
7519         &push_dist_common ($file);
7520     }
7521     elsif ($relative_dir eq '.' && ! &is_make_dir ($dir))
7522     {
7523         # If we are doing the topmost directory, and the file is in a
7524         # subdir which does not have a Makefile, then we distribute it
7525         # here.
7526         &push_dist_common ($fullfile);
7527     }
7531 # &require_file_internal ($IS_CONFIGURE, $LINE, $MYSTRICT, @FILES)
7532 # ----------------------------------------------------------------
7533 # Verify that the file must exist in the current directory.
7534 # $MYSTRICT is the strictness level at which this file becomes required.
7536 # Must set require_file_paths before calling this function.
7537 # require_file_paths is set to hold a single directory (the one in
7538 # which the first file was found) before return.
7539 sub require_file_internal
7541     my ($is_configure, $line, $mystrict, @files) = @_;
7543     foreach my $file (@files)
7544     {
7545         my $fullfile;
7546         my $errdir;
7547         my $errfile;
7548         my $save_dir;
7550         # If we've already looked for it, we're done.
7551         next if defined $require_file_found{$file};
7552         $require_file_found{$file} = 1;
7554         my $found_it = 0;
7555         my $dangling_sym = 0;
7556         foreach my $dir (@require_file_paths)
7557         {
7558             if ($dir eq '.')
7559             {
7560                 $fullfile = $relative_dir . "/" . $file;
7561                 $errdir = $relative_dir unless $errdir;
7562             }
7563             else
7564             {
7565                 $fullfile = $dir . "/" . $file;
7566                 $errdir = $dir unless $errdir;
7567             }
7569             # Use different name for "error filename".  Otherwise on
7570             # an error the bad file will be reported as eg
7571             # `../../install-sh' when using the default
7572             # config_aux_path.
7573             $errfile = $errdir . '/' . $file;
7575             if (-l $fullfile && ! -f readlink ($fullfile))
7576             {
7577                 $dangling_sym = 1;
7578                 last;
7579             }
7580             elsif (-f $fullfile)
7581             {
7582                 $found_it = 1;
7583                 &maybe_push_required_file ($dir, $file, $fullfile);
7584                 $save_dir = $dir;
7585                 last;
7586             }
7587         }
7589         if ($found_it && ! $force_missing)
7590         {
7591             # Prune the path list.
7592             @require_file_paths = $save_dir;
7593         }
7594         else
7595         {
7596             if ($strictness >= $mystrict)
7597             {
7598                 if ($dangling_sym && ($force_missing || $add_missing))
7599                 {
7600                     unlink ($fullfile);
7601                 }
7603                 my $trailer = '';
7604                 my $suppress = 0;
7606                 # Only install missing files according to our desired
7607                 # strictness level.
7608                 my $message = "required file `$errfile' not found";
7609                 if ($add_missing)
7610                 {
7611                     $suppress = 1;
7613                     # Maybe run libtoolize.
7614                     my @syslist = ('libtoolize', '--automake');
7615                     push @syslist, '--copy'
7616                         if $copy_missing;
7617                     if ($seen_libtool
7618                         && grep ($_ eq $file, @libtoolize_files)
7619                         && system (@syslist))
7620                     {
7621                         $message = "installing `$errfile'";
7622                         $suppress = 0;
7623                         $trailer = "; cannot run `libtoolize': $!";
7624                     }
7625                     elsif (-f ("$pkgdata_dir/$file"))
7626                     {
7627                         # Install the missing file.  Symlink if we
7628                         # can, copy if we must.  Note: delete the file
7629                         # first, in case it is a dangling symlink.
7630                         $message = "installing `$errfile'";
7631                         # Windows Perl will hang if we try to delete a
7632                         # file that doesn't exist.
7633                         unlink ($errfile) if -f $errfile;
7634                         if ($symlink_exists && ! $copy_missing)
7635                         {
7636                             if (! symlink ("$pkgdata_dir/$file", $errfile))
7637                             {
7638                                 $suppress = 0;
7639                                 $trailer = "; error while making link: $!";
7640                             }
7641                         }
7642                         elsif (system ('cp', "$pkgdata_dir/$file", $errfile))
7643                         {
7644                             $suppress = 0;
7645                             $trailer = "\n    error while copying";
7646                         }
7647                     }
7649                     &maybe_push_required_file (dirname ($errfile),
7650                                                $file, $errfile);
7651                 }
7653                 my $save = $exit_status;
7654                 if ($is_configure)
7655                 {
7656                     # FIXME: allow actual file to be specified.
7657                     &am_conf_line_error ($configure_ac, $line,
7658                                          "$message$trailer");
7659                 }
7660                 else
7661                 {
7662                     &am_line_error ($line, "$message$trailer");
7663                 }
7664                 $exit_status = $save if $suppress;
7665             }
7666         }
7667     }
7670 # Like require_file_with_line, but error messages refer to
7671 # configure.ac, not the current Makefile.am.
7672 sub require_file_with_conf_line
7674     @require_file_paths = '.';
7675     &require_file_internal (1, @_);
7678 sub require_file_with_line
7680     @require_file_paths = '.';
7681     &require_file_internal (0, @_);
7684 sub require_file
7686     @require_file_paths = '.';
7687     &require_file_internal (0, '', @_);
7690 # Require a file that is also required by Autoconf.  Looks in
7691 # configuration path, as specified by AC_CONFIG_AUX_DIR.
7692 sub require_config_file
7694     @require_file_paths = @config_aux_path;
7695     &require_file_internal (1, '', @_);
7696     my $dir = $require_file_paths[0];
7697     @config_aux_path = @require_file_paths;
7698     if ($dir eq '.')
7699     {
7700         $config_aux_dir = '.';
7701     }
7702     else
7703     {
7704         $config_aux_dir = '$(top_srcdir)/' . $dir;
7705     }
7708 # Assumes that the line number is in Makefile.am.
7709 sub require_conf_file_with_line
7711     @require_file_paths = @config_aux_path;
7712     &require_file_internal (0, @_);
7713     my $dir = $require_file_paths[0];
7714     @config_aux_path = @require_file_paths;
7715     if ($dir eq '.')
7716     {
7717         $config_aux_dir = '.';
7718     }
7719     else
7720     {
7721         $config_aux_dir = '$(top_srcdir)/' . $dir;
7722     }
7725 # Assumes that the line number is in configure.ac.
7726 sub require_conf_file_with_conf_line
7728     @require_file_paths = @config_aux_path;
7729     &require_file_internal (1, @_);
7730     my $dir = $require_file_paths[0];
7731     @config_aux_path = @require_file_paths;
7732     if ($dir eq '.')
7733     {
7734         $config_aux_dir = '.';
7735     }
7736     else
7737     {
7738         $config_aux_dir = '$(top_srcdir)/' . $dir;
7739     }
7742 ################################################################
7744 # Push a list of files onto dist_common.
7745 sub push_dist_common
7747     &prog_error ("push_dist_common run after handle_dist")
7748         if $handle_dist_run;
7749     macro_define ('DIST_COMMON', 1, '+', '', join (' ', @_), '');
7753 # Set strictness.
7754 sub set_strictness
7756     $strictness_name = $_[0];
7757     if ($strictness_name eq 'gnu')
7758     {
7759         $strictness = $GNU;
7760     }
7761     elsif ($strictness_name eq 'gnits')
7762     {
7763         $strictness = $GNITS;
7764     }
7765     elsif ($strictness_name eq 'foreign')
7766     {
7767         $strictness = $FOREIGN;
7768     }
7769     else
7770     {
7771         die "$me: level `$strictness_name' not recognized\n";
7772     }
7776 ################################################################
7778 # Ensure a file exists.
7779 sub create
7781     my ($file) = @_;
7783     my $touch = new IO::File (">> $file");
7784     $touch->close;
7787 # Glob something.  Do this to avoid indentation screwups everywhere we
7788 # want to glob.  Gross!
7789 sub my_glob
7791     my ($pat) = @_;
7792     return <${pat}>;
7795 # Remove one level of brackets and strip leading spaces,
7796 # as does m4 to function arguments.
7797 sub unquote_m4_arg
7799     $_ = shift;
7800     s/^\s*//;
7802     my @letters = split //;
7803     my @result = ();
7804     my $depth = 0;
7806     foreach (@letters)
7807     {
7808         if ($_ eq '[')
7809         {
7810             ++$depth;
7811             next if $depth == 1;
7812         }
7813         elsif ($_ eq ']')
7814         {
7815             --$depth;
7816             next if $depth == 0;
7817             # don't count orphan right brackets
7818             $depth = 0 if $depth < 0;
7819         }
7820         push @result, $_;
7821     }
7822     return join '', @result;
7825 ################################################################
7827 # Print an error message and set exit status.
7828 sub am_error
7830     warn "$me: ${am_file}.am: @_\n";
7831     $exit_status = 1;
7835 # am_file_error ($FILE, @ARGS)
7836 # ----------------------------
7837 sub am_file_error
7839     my ($file, @args) = @_;
7841     warn "$file: @args\n";
7842     $exit_status = 1;
7845 sub am_line_error
7847     my ($symbol, @args) = @_;
7849     if ($symbol && "$symbol" ne '-1')
7850     {
7851         my $file = "${am_file}.am";
7853         if ($symbol =~ /^\d+$/)
7854         {
7855             # SYMBOL is a line number, so just add the colon.
7856             $file .= ':' . $symbol;
7857         }
7858         elsif (defined $var_line{$symbol})
7859         {
7860             # SYMBOL is a variable defined in Makefile.am, so add the
7861             # line number we saved from there.
7862             $file .= ':' . $var_line{$symbol};
7863         }
7864         elsif (defined $configure_vars{$symbol})
7865         {
7866             # SYMBOL is a variable defined in configure.ac, so add the
7867             # appropriate line number.
7868             $file = $configure_vars{$symbol};
7869         }
7870         else
7871         {
7872             # Couldn't find the line number.
7873         }
7874         warn $file, ": @args\n";
7875         $exit_status = 1;
7876     }
7877     else
7878     {
7879         &am_error (@args);
7880     }
7883 # Like am_error, but while scanning configure.ac.
7884 sub am_conf_error
7886     # FIXME: can run in subdirs.
7887     warn "$me: $configure_ac: @_\n";
7888     $exit_status = 1;
7891 # Error message with line number referring to configure.ac.
7892 sub am_conf_line_error
7894     my ($file, $line, @args) = @_;
7896     if ($line)
7897     {
7898         warn "$file: $line: @args\n";
7899         $exit_status = 1;
7900     }
7901     else
7902     {
7903         &am_conf_error (@args);
7904     }
7907 # Warning message with line number referring to configure.ac.
7908 # Does not affect exit_status
7909 sub am_conf_line_warning
7911     my $saved_exit_status = $exit_status;
7912     &am_conf_line_error (@_);
7913     $exit_status = $saved_exit_status;
7916 # Tell user where our aclocal.m4 is, but only once.
7917 sub keyed_aclocal_warning
7919     my ($key) = @_;
7920     warn "$me: macro `$key' can be generated by `aclocal'\n";
7923 # Print usage information.
7924 sub usage
7926     print <<EOF;
7927 Usage: $0 [OPTION] ... [Makefile]...
7929 Generate Makefile.in for configure from Makefile.am.
7931 Operation modes:
7932       --help             print this help, then exit
7933       --version          print version number, then exit
7934   -v, --verbose          verbosely list files processed
7935   -o, --output-dir=DIR   put generated Makefile.in's into DIR
7936       --no-force         only update Makefile.in's that are out of date
7938 Dependency tracking:
7939   -i, --ignore-deps      disable dependency tracking code
7940       --include-deps     enable dependency tracking code
7942 Flavors:
7943       --cygnus           assume program is part of Cygnus-style tree
7944       --foreign          set strictness to foreign
7945       --gnits            set strictness to gnits
7946       --gnu              set strictness to gnu
7948 Library files:
7949   -a, --add-missing      add missing standard files to package
7950       --amdir=DIR        directory storing config files
7951   -c, --copy             with -a, copy missing files (default is symlink)
7952   -f, --force-missing    force update of standard files
7955     my ($last, @lcomm);
7956     $last = '';
7957     foreach my $iter (sort ((@common_files, @common_sometimes)))
7958     {
7959         push (@lcomm, $iter) unless $iter eq $last;
7960         $last = $iter;
7961     }
7963     my ($one, $two, $three, $four, $max);
7964     print "\nFiles which are automatically distributed, if found:\n";
7965     format USAGE_FORMAT =
7966   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<
7967   $one,               $two,               $three,             $four
7969     $~ = "USAGE_FORMAT";
7970     $max = int (($#lcomm + 1) / 4);
7972     for (my $i = 0; $i < $max; ++$i)
7973     {
7974         $one = $lcomm[$i];
7975         $two = $lcomm[$max + $i];
7976         $three = $lcomm[2 * $max + $i];
7977         $four = $lcomm[3 * $max + $i];
7978         write;
7979     }
7981     my $mod = ($#lcomm + 1) % 4;
7982     if ($mod != 0)
7983     {
7984         $one = $lcomm[$max];
7985         $two = ($mod > 1) ? $lcomm[2 * $max] : '';
7986         $three = ($mod > 2) ? $lcomm[3 * $max] : '';
7987         $four = ($mod > 3) ? $lcomm[4 * $max] : '';
7988         write;
7989     }
7991     print "\nReport bugs to <bug-automake\@gnu.org>.\n";
7993     exit 0;
7996 # &version ()
7997 # -----------
7998 # Print version information
7999 sub version ()
8001   print <<EOF;
8002 automake (GNU $PACKAGE) $VERSION
8003 Written by Tom Tromey <tromey\@cygnus.com>.
8005 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
8006 Free Software Foundation, Inc.
8007 This is free software; see the source for copying conditions.  There is NO
8008 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
8010   exit 0;