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