Merge branch 'maint' into msvc
[platform/upstream/automake.git] / automake.in
1 #!@PERL@ -w
2 # -*- perl -*-
3 # @configure_input@
4
5 eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac'
6     if 0;
7
8 # automake - create Makefile.in from Makefile.am
9 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
10 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
11 # Foundation, Inc.
12
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2, or (at your option)
16 # any later version.
17
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22
23 # You should have received a copy of the GNU General Public License
24 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
25
26 # Originally written by David Mackenzie <djm@gnu.ai.mit.edu>.
27 # Perl reimplementation by Tom Tromey <tromey@redhat.com>, and
28 # Alexandre Duret-Lutz <adl@gnu.org>.
29
30 package Language;
31
32 BEGIN
33 {
34   my $perllibdir = $ENV{'perllibdir'} || '@datadir@/@PACKAGE@-@APIVERSION@';
35   unshift @INC, (split '@PATH_SEPARATOR@', $perllibdir);
36
37   # Override SHELL.  This is required on DJGPP so that system() uses
38   # bash, not COMMAND.COM which doesn't quote arguments properly.
39   # Other systems aren't expected to use $SHELL when Automake
40   # runs, but it should be safe to drop the `if DJGPP' guard if
41   # it turns up other systems need the same thing.  After all,
42   # if SHELL is used, ./configure's SHELL is always better than
43   # the user's SHELL (which may be something like tcsh).
44   $ENV{'SHELL'} = '@SHELL@' if exists $ENV{'DJDIR'};
45 }
46
47 use Automake::Struct;
48 struct (# Short name of the language (c, f77...).
49         'name' => "\$",
50         # Nice name of the language (C, Fortran 77...).
51         'Name' => "\$",
52
53         # List of configure variables which must be defined.
54         'config_vars' => '@',
55
56         'ansi'    => "\$",
57         # `pure' is `1' or `'.  A `pure' language is one where, if
58         # all the files in a directory are of that language, then we
59         # do not require the C compiler or any code to call it.
60         'pure'   => "\$",
61
62         'autodep' => "\$",
63
64         # Name of the compiling variable (COMPILE).
65         'compiler'  => "\$",
66         # Content of the compiling variable.
67         'compile'  => "\$",
68         # Flag to require compilation without linking (-c).
69         'compile_flag' => "\$",
70         'extensions' => '@',
71         # A subroutine to compute a list of possible extensions of
72         # the product given the input extensions.
73         # (defaults to a subroutine which returns ('.$(OBJEXT)', '.lo'))
74         'output_extensions' => "\$",
75         # A list of flag variables used in 'compile'.
76         # (defaults to [])
77         'flags' => "@",
78
79         # Any tag to pass to libtool while compiling.
80         'libtool_tag' => "\$",
81
82         # The file to use when generating rules for this language.
83         # The default is 'depend2'.
84         'rule_file' => "\$",
85
86         # Name of the linking variable (LINK).
87         'linker' => "\$",
88         # Content of the linking variable.
89         'link' => "\$",
90
91         # Name of the compiler variable (CC).
92         'ccer' => "\$",
93
94         # Name of the linker variable (LD).
95         'lder' => "\$",
96         # Content of the linker variable ($(CC)).
97         'ld' => "\$",
98
99         # Flag to specify the output file (-o).
100         'output_flag' => "\$",
101         '_finish' => "\$",
102
103         # This is a subroutine which is called whenever we finally
104         # determine the context in which a source file will be
105         # compiled.
106         '_target_hook' => "\$",
107
108         # If TRUE, nodist_ sources will be compiled using specific rules
109         # (i.e. not inference rules).  The default is FALSE.
110         'nodist_specific' => "\$");
111
112
113 sub finish ($)
114 {
115   my ($self) = @_;
116   if (defined $self->_finish)
117     {
118       &{$self->_finish} (@_);
119     }
120 }
121
122 sub target_hook ($$$$%)
123 {
124     my ($self) = @_;
125     if (defined $self->_target_hook)
126     {
127         &{$self->_target_hook} (@_);
128     }
129 }
130
131 package Automake;
132
133 use strict;
134 use Automake::Config;
135 BEGIN
136 {
137   if ($perl_threads)
138     {
139       require threads;
140       import threads;
141       require Thread::Queue;
142       import Thread::Queue;
143     }
144 }
145 use Automake::General;
146 use Automake::XFile;
147 use Automake::Channels;
148 use Automake::ChannelDefs;
149 use Automake::Configure_ac;
150 use Automake::FileUtils;
151 use Automake::Location;
152 use Automake::Condition qw/TRUE FALSE/;
153 use Automake::DisjConditions;
154 use Automake::Options;
155 use Automake::Version;
156 use Automake::Variable;
157 use Automake::VarDef;
158 use Automake::Rule;
159 use Automake::RuleDef;
160 use Automake::Wrap 'makefile_wrap';
161 use File::Basename;
162 use File::Spec;
163 use Carp;
164
165 ## ----------- ##
166 ## Constants.  ##
167 ## ----------- ##
168
169 # Some regular expressions.  One reason to put them here is that it
170 # makes indentation work better in Emacs.
171
172 # Writing singled-quoted-$-terminated regexes is a pain because
173 # perl-mode thinks of $' as the ${'} variable (instead of a $ followed
174 # by a closing quote.  Letting perl-mode think the quote is not closed
175 # leads to all sort of misindentations.  On the other hand, defining
176 # regexes as double-quoted strings is far less readable.  So usually
177 # we will write:
178 #
179 #  $REGEX = '^regex_value' . "\$";
180
181 my $IGNORE_PATTERN = '^\s*##([^#\n].*)?\n';
182 my $WHITE_PATTERN = '^\s*' . "\$";
183 my $COMMENT_PATTERN = '^#';
184 my $TARGET_PATTERN='[$a-zA-Z0-9_.@%][-.a-zA-Z0-9_(){}/$+@%]*';
185 # A rule has three parts: a list of targets, a list of dependencies,
186 # and optionally actions.
187 my $RULE_PATTERN =
188   "^($TARGET_PATTERN(?:(?:\\\\\n|\\s)+$TARGET_PATTERN)*) *:([^=].*|)\$";
189
190 # Only recognize leading spaces, not leading tabs.  If we recognize
191 # leading tabs here then we need to make the reader smarter, because
192 # otherwise it will think rules like `foo=bar; \' are errors.
193 my $ASSIGNMENT_PATTERN = '^ *([^ \t=:+]*)\s*([:+]?)=\s*(.*)' . "\$";
194 # This pattern recognizes a Gnits version id and sets $1 if the
195 # release is an alpha release.  We also allow a suffix which can be
196 # used to extend the version number with a "fork" identifier.
197 my $GNITS_VERSION_PATTERN = '\d+\.\d+([a-z]|\.\d+)?(-[A-Za-z0-9]+)?';
198
199 my $IF_PATTERN = '^if\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*)\s*(?:#.*)?' . "\$";
200 my $ELSE_PATTERN =
201   '^else(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?' . "\$";
202 my $ENDIF_PATTERN =
203   '^endif(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?' . "\$";
204 my $PATH_PATTERN = '(\w|[+/.-])+';
205 # This will pass through anything not of the prescribed form.
206 my $INCLUDE_PATTERN = ('^include\s+'
207                        . '((\$\(top_srcdir\)/' . $PATH_PATTERN . ')'
208                        . '|(\$\(srcdir\)/' . $PATH_PATTERN . ')'
209                        . '|([^/\$]' . $PATH_PATTERN . '))\s*(#.*)?' . "\$");
210
211 # Match `-d' as a command-line argument in a string.
212 my $DASH_D_PATTERN = "(^|\\s)-d(\\s|\$)";
213 # Directories installed during 'install-exec' phase.
214 my $EXEC_DIR_PATTERN =
215   '^(?:bin|sbin|libexec|sysconf|localstate|lib|pkglib|.*exec.*)' . "\$";
216
217 # Values for AC_CANONICAL_*
218 use constant AC_CANONICAL_BUILD  => 1;
219 use constant AC_CANONICAL_HOST   => 2;
220 use constant AC_CANONICAL_TARGET => 3;
221
222 # Values indicating when something should be cleaned.
223 use constant MOSTLY_CLEAN     => 0;
224 use constant CLEAN            => 1;
225 use constant DIST_CLEAN       => 2;
226 use constant MAINTAINER_CLEAN => 3;
227
228 # Libtool files.
229 my @libtool_files = qw(ltmain.sh config.guess config.sub);
230 # ltconfig appears here for compatibility with old versions of libtool.
231 my @libtool_sometimes = qw(ltconfig ltcf-c.sh ltcf-cxx.sh ltcf-gcj.sh);
232
233 # Commonly found files we look for and automatically include in
234 # DISTFILES.
235 my @common_files =
236     (qw(ABOUT-GNU ABOUT-NLS AUTHORS BACKLOG COPYING COPYING.DOC COPYING.LIB
237         COPYING.LESSER ChangeLog INSTALL NEWS README THANKS TODO
238         ansi2knr.1 ansi2knr.c ar-lib compile config.guess config.rpath
239         config.sub depcomp elisp-comp install-sh libversion.in mdate-sh
240         missing mkinstalldirs py-compile texinfo.tex ylwrap),
241      @libtool_files, @libtool_sometimes);
242
243 # Commonly used files we auto-include, but only sometimes.  This list
244 # is used for the --help output only.
245 my @common_sometimes =
246   qw(aclocal.m4 acconfig.h config.h.top config.h.bot configure
247      configure.ac configure.in stamp-vti);
248
249 # Standard directories from the GNU Coding Standards, and additional
250 # pkg* directories from Automake.  Stored in a hash for fast member check.
251 my %standard_prefix =
252     map { $_ => 1 } (qw(bin data dataroot doc dvi exec html include info
253                         lib libexec lisp locale localstate man man1 man2
254                         man3 man4 man5 man6 man7 man8 man9 oldinclude pdf
255                         pkgdata pkginclude pkglib pkglibexec ps sbin
256                         sharedstate sysconf));
257
258 # Copyright on generated Makefile.ins.
259 my $gen_copyright = "\
260 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
261 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
262 # Foundation, Inc.
263 # This Makefile.in is free software; the Free Software Foundation
264 # gives unlimited permission to copy and/or distribute it,
265 # with or without modifications, as long as this notice is preserved.
266
267 # This program is distributed in the hope that it will be useful,
268 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
269 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
270 # PARTICULAR PURPOSE.
271 ";
272
273 # These constants are returned by the lang_*_rewrite functions.
274 # LANG_SUBDIR means that the resulting object file should be in a
275 # subdir if the source file is.  In this case the file name cannot
276 # have `..' components.
277 use constant LANG_IGNORE  => 0;
278 use constant LANG_PROCESS => 1;
279 use constant LANG_SUBDIR  => 2;
280
281 # These are used when keeping track of whether an object can be built
282 # by two different paths.
283 use constant COMPILE_LIBTOOL  => 1;
284 use constant COMPILE_ORDINARY => 2;
285
286 # We can't always associate a location to a variable or a rule,
287 # when it's defined by Automake.  We use INTERNAL in this case.
288 use constant INTERNAL => new Automake::Location;
289
290 # Serialization keys for message queues.
291 use constant QUEUE_MESSAGE   => "msg";
292 use constant QUEUE_CONF_FILE => "conf file";
293 use constant QUEUE_LOCATION  => "location";
294 use constant QUEUE_STRING    => "string";
295 \f
296
297 ## ---------------------------------- ##
298 ## Variables related to the options.  ##
299 ## ---------------------------------- ##
300
301 # TRUE if we should always generate Makefile.in.
302 my $force_generation = 1;
303
304 # From the Perl manual.
305 my $symlink_exists = (eval 'symlink ("", "");', $@ eq '');
306
307 # TRUE if missing standard files should be installed.
308 my $add_missing = 0;
309
310 # TRUE if we should copy missing files; otherwise symlink if possible.
311 my $copy_missing = 0;
312
313 # TRUE if we should always update files that we know about.
314 my $force_missing = 0;
315
316
317 ## ---------------------------------------- ##
318 ## Variables filled during files scanning.  ##
319 ## ---------------------------------------- ##
320
321 # Name of the configure.ac file.
322 my $configure_ac;
323
324 # Files found by scanning configure.ac for LIBOBJS.
325 my %libsources = ();
326
327 # Names used in AC_CONFIG_HEADER call.
328 my @config_headers = ();
329
330 # Names used in AC_CONFIG_LINKS call.
331 my @config_links = ();
332
333 # Directory where output files go.  Actually, output files are
334 # relative to this directory.
335 my $output_directory;
336
337 # List of Makefile.am's to process, and their corresponding outputs.
338 my @input_files = ();
339 my %output_files = ();
340
341 # Complete list of Makefile.am's that exist.
342 my @configure_input_files = ();
343
344 # List of files in AC_CONFIG_FILES/AC_OUTPUT without Makefile.am's,
345 # and their outputs.
346 my @other_input_files = ();
347 # Where each AC_CONFIG_FILES/AC_OUTPUT/AC_CONFIG_LINK/AC_CONFIG_HEADER appears.
348 # The keys are the files created by these macros.
349 my %ac_config_files_location = ();
350 # The condition under which AC_CONFIG_FOOS appears.
351 my %ac_config_files_condition = ();
352
353 # Directory to search for configure-required files.  This
354 # will be computed by &locate_aux_dir and can be set using
355 # AC_CONFIG_AUX_DIR in configure.ac.
356 # $CONFIG_AUX_DIR is the `raw' directory, valid only in the source-tree.
357 my $config_aux_dir = '';
358 my $config_aux_dir_set_in_configure_ac = 0;
359 # $AM_CONFIG_AUX_DIR is prefixed with $(top_srcdir), so it can be used
360 # in Makefiles.
361 my $am_config_aux_dir = '';
362
363 # Directory to search for AC_LIBSOURCE files, as set by AC_CONFIG_LIBOBJ_DIR
364 # in configure.ac.
365 my $config_libobj_dir = '';
366
367 # Whether AM_GNU_GETTEXT has been seen in configure.ac.
368 my $seen_gettext = 0;
369 # Whether AM_GNU_GETTEXT([external]) is used.
370 my $seen_gettext_external = 0;
371 # Where AM_GNU_GETTEXT appears.
372 my $ac_gettext_location;
373 # Whether AM_GNU_GETTEXT_INTL_SUBDIR has been seen.
374 my $seen_gettext_intl = 0;
375
376 # Lists of tags supported by Libtool.
377 my %libtool_tags = ();
378 # 1 if Libtool uses LT_SUPPORTED_TAG.  If it does, then it also
379 # uses AC_REQUIRE_AUX_FILE.
380 my $libtool_new_api = 0;
381
382 # Most important AC_CANONICAL_* macro seen so far.
383 my $seen_canonical = 0;
384 # Location of that macro.
385 my $canonical_location;
386
387 # Where AM_MAINTAINER_MODE appears.
388 my $seen_maint_mode;
389
390 # Actual version we've seen.
391 my $package_version = '';
392
393 # Where version is defined.
394 my $package_version_location;
395
396 # TRUE if we've seen AM_ENABLE_MULTILIB.
397 my $seen_multilib = 0;
398
399 # TRUE if we've seen AM_PROG_AR
400 my $seen_ar = 0;
401
402 # TRUE if we've seen AM_PROG_CC_C_O
403 my $seen_cc_c_o = 0;
404
405 # Location of AC_REQUIRE_AUX_FILE calls, indexed by their argument.
406 my %required_aux_file = ();
407
408 # Where AM_INIT_AUTOMAKE is called;
409 my $seen_init_automake = 0;
410
411 # TRUE if we've seen AM_AUTOMAKE_VERSION.
412 my $seen_automake_version = 0;
413
414 # Hash table of discovered configure substitutions.  Keys are names,
415 # values are `FILE:LINE' strings which are used by error message
416 # generation.
417 my %configure_vars = ();
418
419 # Ignored configure substitutions (i.e., variables not to be output in
420 # Makefile.in)
421 my %ignored_configure_vars = ();
422
423 # Files included by $configure_ac.
424 my @configure_deps = ();
425
426 # Greatest timestamp of configure's dependencies.
427 my $configure_deps_greatest_timestamp = 0;
428
429 # Hash table of AM_CONDITIONAL variables seen in configure.
430 my %configure_cond = ();
431
432 # This maps extensions onto language names.
433 my %extension_map = ();
434
435 # List of the DIST_COMMON files we discovered while reading
436 # configure.in
437 my $configure_dist_common = '';
438
439 # This maps languages names onto objects.
440 my %languages = ();
441 # Maps each linker variable onto a language object.
442 my %link_languages = ();
443
444 # maps extensions to needed source flags.
445 my %sourceflags = ();
446
447 # List of targets we must always output.
448 # FIXME: Complete, and remove falsely required targets.
449 my %required_targets =
450   (
451    'all'          => 1,
452    'dvi'          => 1,
453    'pdf'          => 1,
454    'ps'           => 1,
455    'info'         => 1,
456    'install-info' => 1,
457    'install'      => 1,
458    'install-data' => 1,
459    'install-exec' => 1,
460    'uninstall'    => 1,
461
462    # FIXME: Not required, temporary hacks.
463    # Well, actually they are sort of required: the -recursive
464    # targets will run them anyway...
465    'html-am'         => 1,
466    'dvi-am'          => 1,
467    'pdf-am'          => 1,
468    'ps-am'           => 1,
469    'info-am'         => 1,
470    'install-data-am' => 1,
471    'install-exec-am' => 1,
472    'install-html-am' => 1,
473    'install-dvi-am'  => 1,
474    'install-pdf-am'  => 1,
475    'install-ps-am'   => 1,
476    'install-info-am' => 1,
477    'installcheck-am' => 1,
478    'uninstall-am' => 1,
479
480    'install-man' => 1,
481   );
482
483 # Set to 1 if this run will create the Makefile.in that distributes
484 # the files in config_aux_dir.
485 my $automake_will_process_aux_dir = 0;
486
487 # The name of the Makefile currently being processed.
488 my $am_file = 'BUG';
489 \f
490
491 ################################################################
492
493 ## ------------------------------------------ ##
494 ## Variables reset by &initialize_per_input.  ##
495 ## ------------------------------------------ ##
496
497 # Basename and relative dir of the input file.
498 my $am_file_name;
499 my $am_relative_dir;
500
501 # Same but wrt Makefile.in.
502 my $in_file_name;
503 my $relative_dir;
504
505 # Relative path to the top directory.
506 my $topsrcdir;
507
508 # Greatest timestamp of the output's dependencies (excluding
509 # configure's dependencies).
510 my $output_deps_greatest_timestamp;
511
512 # These variables are used when generating each Makefile.in.
513 # They hold the Makefile.in until it is ready to be printed.
514 my $output_vars;
515 my $output_all;
516 my $output_header;
517 my $output_rules;
518 my $output_trailer;
519
520 # This is the conditional stack, updated on if/else/endif, and
521 # used to build Condition objects.
522 my @cond_stack;
523
524 # This holds the set of included files.
525 my @include_stack;
526
527 # List of dependencies for the obvious targets.
528 my @all;
529 my @check;
530 my @check_tests;
531
532 # Keys in this hash table are files to delete.  The associated
533 # value tells when this should happen (MOSTLY_CLEAN, DIST_CLEAN, etc.)
534 my %clean_files;
535
536 # Keys in this hash table are object files or other files in
537 # subdirectories which need to be removed.  This only holds files
538 # which are created by compilations.  The value in the hash indicates
539 # when the file should be removed.
540 my %compile_clean_files;
541
542 # Keys in this hash table are directories where we expect to build a
543 # libtool object.  We use this information to decide what directories
544 # to delete.
545 my %libtool_clean_directories;
546
547 # Value of `$(SOURCES)', used by tags.am.
548 my @sources;
549 # Sources which go in the distribution.
550 my @dist_sources;
551
552 # This hash maps object file names onto their corresponding source
553 # file names.  This is used to ensure that each object is created
554 # by a single source file.
555 my %object_map;
556
557 # This hash maps object file names onto an integer value representing
558 # whether this object has been built via ordinary compilation or
559 # libtool compilation (the COMPILE_* constants).
560 my %object_compilation_map;
561
562
563 # This keeps track of the directories for which we've already
564 # created dirstamp code.  Keys are directories, values are stamp files.
565 # Several keys can share the same stamp files if they are equivalent
566 # (as are `.//foo' and `foo').
567 my %directory_map;
568
569 # All .P files.
570 my %dep_files;
571
572 # This is a list of all targets to run during "make dist".
573 my @dist_targets;
574
575 # Keep track of all programs declared in this Makefile, without
576 # $(EXEEXT).  @substitutions@ are not listed.
577 my %known_programs;
578 my %known_libraries;
579
580 # Keys in this hash are the basenames of files which must depend on
581 # ansi2knr.  Values are either the empty string, or the directory in
582 # which the ANSI source file appears; the directory must have a
583 # trailing `/'.
584 my %de_ansi_files;
585
586 # This keeps track of which extensions we've seen (that we care
587 # about).
588 my %extension_seen;
589
590 # This is random scratch space for the language finish functions.
591 # Don't randomly overwrite it; examine other uses of keys first.
592 my %language_scratch;
593
594 # We keep track of which objects need special (per-executable)
595 # handling on a per-language basis.
596 my %lang_specific_files;
597
598 # This is set when `handle_dist' has finished.  Once this happens,
599 # we should no longer push on dist_common.
600 my $handle_dist_run;
601
602 # Used to store a set of linkers needed to generate the sources currently
603 # under consideration.
604 my %linkers_used;
605
606 # True if we need `LINK' defined.  This is a hack.
607 my $need_link;
608
609 # Was get_object_extension run?
610 # FIXME: This is a hack. a better switch should be found.
611 my $get_object_extension_was_run;
612
613 # Record each file processed by make_paragraphs.
614 my %transformed_files;
615 \f
616
617 ################################################################
618
619 ## ---------------------------------------------- ##
620 ## Variables not reset by &initialize_per_input.  ##
621 ## ---------------------------------------------- ##
622
623 # Cache each file processed by make_paragraphs.
624 # (This is different from %transformed_files because
625 # %transformed_files is reset for each file while %am_file_cache
626 # it global to the run.)
627 my %am_file_cache;
628
629 ################################################################
630
631 # var_SUFFIXES_trigger ($TYPE, $VALUE)
632 # ------------------------------------
633 # This is called by Automake::Variable::define() when SUFFIXES
634 # is defined ($TYPE eq '') or appended ($TYPE eq '+').
635 # The work here needs to be performed as a side-effect of the
636 # macro_define() call because SUFFIXES definitions impact
637 # on $KNOWN_EXTENSIONS_PATTERN which is used used when parsing
638 # the input am file.
639 sub var_SUFFIXES_trigger ($$)
640 {
641     my ($type, $value) = @_;
642     accept_extensions (split (' ', $value));
643 }
644 Automake::Variable::hook ('SUFFIXES', \&var_SUFFIXES_trigger);
645
646 ################################################################
647
648 ## --------------------------------- ##
649 ## Forward subroutine declarations.  ##
650 ## --------------------------------- ##
651 sub register_language (%);
652 sub file_contents_internal ($$$%);
653 sub define_files_variable ($\@$$);
654
655
656 # &initialize_per_input ()
657 # ------------------------
658 # (Re)-Initialize per-Makefile.am variables.
659 sub initialize_per_input ()
660 {
661     reset_local_duplicates ();
662
663     $am_file_name = undef;
664     $am_relative_dir = undef;
665
666     $in_file_name = undef;
667     $relative_dir = undef;
668     $topsrcdir = undef;
669
670     $output_deps_greatest_timestamp = 0;
671
672     $output_vars = '';
673     $output_all = '';
674     $output_header = '';
675     $output_rules = '';
676     $output_trailer = '';
677
678     Automake::Options::reset;
679     Automake::Variable::reset;
680     Automake::Rule::reset;
681
682     @cond_stack = ();
683
684     @include_stack = ();
685
686     @all = ();
687     @check = ();
688     @check_tests = ();
689
690     %clean_files = ();
691     %compile_clean_files = ();
692
693     # We always include `.'.  This isn't strictly correct.
694     %libtool_clean_directories = ('.' => 1);
695
696     @sources = ();
697     @dist_sources = ();
698
699     %object_map = ();
700     %object_compilation_map = ();
701
702     %directory_map = ();
703
704     %dep_files = ();
705
706     @dist_targets = ();
707
708     %known_programs = ();
709     %known_libraries= ();
710
711     %de_ansi_files = ();
712
713     %extension_seen = ();
714
715     %language_scratch = ();
716
717     %lang_specific_files = ();
718
719     $handle_dist_run = 0;
720
721     $need_link = 0;
722
723     $get_object_extension_was_run = 0;
724
725     %transformed_files = ();
726 }
727
728
729 ################################################################
730
731 # Initialize our list of languages that are internally supported.
732
733 # C.
734 register_language ('name' => 'c',
735                    'Name' => 'C',
736                    'config_vars' => ['CC'],
737                    'ansi' => 1,
738                    'autodep' => '',
739                    'flags' => ['CFLAGS', 'CPPFLAGS'],
740                    'ccer' => 'CC',
741                    'compiler' => 'COMPILE',
742                    'compile' => '$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)',
743                    'lder' => 'CCLD',
744                    'ld' => '$(CC)',
745                    'linker' => 'LINK',
746                    'link' => '$(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
747                    'compile_flag' => '-c',
748                    'libtool_tag' => 'CC',
749                    'extensions' => ['.c'],
750                    '_finish' => \&lang_c_finish);
751
752 # C++.
753 register_language ('name' => 'cxx',
754                    'Name' => 'C++',
755                    'config_vars' => ['CXX'],
756                    'linker' => 'CXXLINK',
757                    'link' => '$(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
758                    'autodep' => 'CXX',
759                    'flags' => ['CXXFLAGS', 'CPPFLAGS'],
760                    'compile' => '$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)',
761                    'ccer' => 'CXX',
762                    'compiler' => 'CXXCOMPILE',
763                    'compile_flag' => '-c',
764                    'output_flag' => '-o',
765                    'libtool_tag' => 'CXX',
766                    'lder' => 'CXXLD',
767                    'ld' => '$(CXX)',
768                    'pure' => 1,
769                    'extensions' => ['.c++', '.cc', '.cpp', '.cxx', '.C']);
770
771 # Objective C.
772 register_language ('name' => 'objc',
773                    'Name' => 'Objective C',
774                    'config_vars' => ['OBJC'],
775                    'linker' => 'OBJCLINK',
776                    'link' => '$(OBJCLD) $(AM_OBJCFLAGS) $(OBJCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
777                    'autodep' => 'OBJC',
778                    'flags' => ['OBJCFLAGS', 'CPPFLAGS'],
779                    'compile' => '$(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS)',
780                    'ccer' => 'OBJC',
781                    'compiler' => 'OBJCCOMPILE',
782                    'compile_flag' => '-c',
783                    'output_flag' => '-o',
784                    'lder' => 'OBJCLD',
785                    'ld' => '$(OBJC)',
786                    'pure' => 1,
787                    'extensions' => ['.m']);
788
789 # Unified Parallel C.
790 register_language ('name' => 'upc',
791                    'Name' => 'Unified Parallel C',
792                    'config_vars' => ['UPC'],
793                    'linker' => 'UPCLINK',
794                    'link' => '$(UPCLD) $(AM_UPCFLAGS) $(UPCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
795                    'autodep' => 'UPC',
796                    'flags' => ['UPCFLAGS', 'CPPFLAGS'],
797                    'compile' => '$(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS)',
798                    'ccer' => 'UPC',
799                    'compiler' => 'UPCCOMPILE',
800                    'compile_flag' => '-c',
801                    'output_flag' => '-o',
802                    'lder' => 'UPCLD',
803                    'ld' => '$(UPC)',
804                    'pure' => 1,
805                    'extensions' => ['.upc']);
806
807 # Headers.
808 register_language ('name' => 'header',
809                    'Name' => 'Header',
810                    'extensions' => ['.h', '.H', '.hxx', '.h++', '.hh',
811                                     '.hpp', '.inc'],
812                    # No output.
813                    'output_extensions' => sub { return () },
814                    # Nothing to do.
815                    '_finish' => sub { });
816
817 # Vala
818 register_language ('name' => 'vala',
819                    'Name' => 'Vala',
820                    'config_vars' => ['VALAC'],
821                    'flags' => [],
822                    'compile' => '$(VALAC) $(AM_VALAFLAGS) $(VALAFLAGS)',
823                    'ccer' => 'VALAC',
824                    'compiler' => 'VALACOMPILE',
825                    'extensions' => ['.vala'],
826                    'output_extensions' => sub { (my $ext = $_[0]) =~ s/vala$/c/;
827                                                 return ($ext,) },
828                    'rule_file' => 'vala',
829                    '_finish' => \&lang_vala_finish,
830                    '_target_hook' => \&lang_vala_target_hook,
831                    'nodist_specific' => 1);
832
833 # Yacc (C & C++).
834 register_language ('name' => 'yacc',
835                    'Name' => 'Yacc',
836                    'config_vars' => ['YACC'],
837                    'flags' => ['YFLAGS'],
838                    'compile' => '$(YACC) $(AM_YFLAGS) $(YFLAGS)',
839                    'ccer' => 'YACC',
840                    'compiler' => 'YACCCOMPILE',
841                    'extensions' => ['.y'],
842                    'output_extensions' => sub { (my $ext = $_[0]) =~ tr/y/c/;
843                                                 return ($ext,) },
844                    'rule_file' => 'yacc',
845                    '_finish' => \&lang_yacc_finish,
846                    '_target_hook' => \&lang_yacc_target_hook,
847                    'nodist_specific' => 1);
848 register_language ('name' => 'yaccxx',
849                    'Name' => 'Yacc (C++)',
850                    'config_vars' => ['YACC'],
851                    'rule_file' => 'yacc',
852                    'flags' => ['YFLAGS'],
853                    'ccer' => 'YACC',
854                    'compiler' => 'YACCCOMPILE',
855                    'compile' => '$(YACC) $(AM_YFLAGS) $(YFLAGS)',
856                    'extensions' => ['.y++', '.yy', '.yxx', '.ypp'],
857                    'output_extensions' => sub { (my $ext = $_[0]) =~ tr/y/c/;
858                                                 return ($ext,) },
859                    '_finish' => \&lang_yacc_finish,
860                    '_target_hook' => \&lang_yacc_target_hook,
861                    'nodist_specific' => 1);
862
863 # Lex (C & C++).
864 register_language ('name' => 'lex',
865                    'Name' => 'Lex',
866                    'config_vars' => ['LEX'],
867                    'rule_file' => 'lex',
868                    'flags' => ['LFLAGS'],
869                    'compile' => '$(LEX) $(AM_LFLAGS) $(LFLAGS)',
870                    'ccer' => 'LEX',
871                    'compiler' => 'LEXCOMPILE',
872                    'extensions' => ['.l'],
873                    'output_extensions' => sub { (my $ext = $_[0]) =~ tr/l/c/;
874                                                 return ($ext,) },
875                    '_finish' => \&lang_lex_finish,
876                    '_target_hook' => \&lang_lex_target_hook,
877                    'nodist_specific' => 1);
878 register_language ('name' => 'lexxx',
879                    'Name' => 'Lex (C++)',
880                    'config_vars' => ['LEX'],
881                    'rule_file' => 'lex',
882                    'flags' => ['LFLAGS'],
883                    'compile' => '$(LEX) $(AM_LFLAGS) $(LFLAGS)',
884                    'ccer' => 'LEX',
885                    'compiler' => 'LEXCOMPILE',
886                    'extensions' => ['.l++', '.ll', '.lxx', '.lpp'],
887                    'output_extensions' => sub { (my $ext = $_[0]) =~ tr/l/c/;
888                                                 return ($ext,) },
889                    '_finish' => \&lang_lex_finish,
890                    '_target_hook' => \&lang_lex_target_hook,
891                    'nodist_specific' => 1);
892
893 # Assembler.
894 register_language ('name' => 'asm',
895                    'Name' => 'Assembler',
896                    'config_vars' => ['CCAS', 'CCASFLAGS'],
897
898                    'flags' => ['CCASFLAGS'],
899                    # Users can set AM_CCASFLAGS to include DEFS, INCLUDES,
900                    # or anything else required.  They can also set CCAS.
901                    # Or simply use Preprocessed Assembler.
902                    'compile' => '$(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS)',
903                    'ccer' => 'CCAS',
904                    'compiler' => 'CCASCOMPILE',
905                    'compile_flag' => '-c',
906                    'output_flag' => '-o',
907                    'extensions' => ['.s'],
908
909                    # With assembly we still use the C linker.
910                    '_finish' => \&lang_c_finish);
911
912 # Preprocessed Assembler.
913 register_language ('name' => 'cppasm',
914                    'Name' => 'Preprocessed Assembler',
915                    'config_vars' => ['CCAS', 'CCASFLAGS'],
916
917                    'autodep' => 'CCAS',
918                    'flags' => ['CCASFLAGS', 'CPPFLAGS'],
919                    'compile' => '$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)',
920                    'ccer' => 'CPPAS',
921                    'compiler' => 'CPPASCOMPILE',
922                    'compile_flag' => '-c',
923                    'output_flag' => '-o',
924                    'extensions' => ['.S', '.sx'],
925
926                    # With assembly we still use the C linker.
927                    '_finish' => \&lang_c_finish);
928
929 # Fortran 77
930 register_language ('name' => 'f77',
931                    'Name' => 'Fortran 77',
932                    'config_vars' => ['F77'],
933                    'linker' => 'F77LINK',
934                    'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
935                    'flags' => ['FFLAGS'],
936                    'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS)',
937                    'ccer' => 'F77',
938                    'compiler' => 'F77COMPILE',
939                    'compile_flag' => '-c',
940                    'output_flag' => '-o',
941                    'libtool_tag' => 'F77',
942                    'lder' => 'F77LD',
943                    'ld' => '$(F77)',
944                    'pure' => 1,
945                    'extensions' => ['.f', '.for']);
946
947 # Fortran
948 register_language ('name' => 'fc',
949                    'Name' => 'Fortran',
950                    'config_vars' => ['FC'],
951                    'linker' => 'FCLINK',
952                    'link' => '$(FCLD) $(AM_FCFLAGS) $(FCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
953                    'flags' => ['FCFLAGS'],
954                    'compile' => '$(FC) $(AM_FCFLAGS) $(FCFLAGS)',
955                    'ccer' => 'FC',
956                    'compiler' => 'FCCOMPILE',
957                    'compile_flag' => '-c',
958                    'output_flag' => '-o',
959                    'libtool_tag' => 'FC',
960                    'lder' => 'FCLD',
961                    'ld' => '$(FC)',
962                    'pure' => 1,
963                    'extensions' => ['.f90', '.f95', '.f03', '.f08']);
964
965 # Preprocessed Fortran
966 register_language ('name' => 'ppfc',
967                    'Name' => 'Preprocessed Fortran',
968                    'config_vars' => ['FC'],
969                    'linker' => 'FCLINK',
970                    'link' => '$(FCLD) $(AM_FCFLAGS) $(FCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
971                    'lder' => 'FCLD',
972                    'ld' => '$(FC)',
973                    'flags' => ['FCFLAGS', 'CPPFLAGS'],
974                    'ccer' => 'PPFC',
975                    'compiler' => 'PPFCCOMPILE',
976                    'compile' => '$(FC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)',
977                    'compile_flag' => '-c',
978                    'output_flag' => '-o',
979                    'libtool_tag' => 'FC',
980                    'pure' => 1,
981                    'extensions' => ['.F90','.F95', '.F03', '.F08']);
982
983 # Preprocessed Fortran 77
984 #
985 # The current support for preprocessing Fortran 77 just involves
986 # passing `$(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS)
987 # $(CPPFLAGS)' as additional flags to the Fortran 77 compiler, since
988 # this is how GNU Make does it; see the `GNU Make Manual, Edition 0.51
989 # for `make' Version 3.76 Beta' (specifically, from info file
990 # `(make)Catalogue of Rules').
991 #
992 # A better approach would be to write an Autoconf test
993 # (i.e. AC_PROG_FPP) for a Fortran 77 preprocessor, because not all
994 # Fortran 77 compilers know how to do preprocessing.  The Autoconf
995 # macro AC_PROG_FPP should test the Fortran 77 compiler first for
996 # preprocessing capabilities, and then fall back on cpp (if cpp were
997 # available).
998 register_language ('name' => 'ppf77',
999                    'Name' => 'Preprocessed Fortran 77',
1000                    'config_vars' => ['F77'],
1001                    'linker' => 'F77LINK',
1002                    'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
1003                    'lder' => 'F77LD',
1004                    'ld' => '$(F77)',
1005                    'flags' => ['FFLAGS', 'CPPFLAGS'],
1006                    'ccer' => 'PPF77',
1007                    'compiler' => 'PPF77COMPILE',
1008                    'compile' => '$(F77) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)',
1009                    'compile_flag' => '-c',
1010                    'output_flag' => '-o',
1011                    'libtool_tag' => 'F77',
1012                    'pure' => 1,
1013                    'extensions' => ['.F']);
1014
1015 # Ratfor.
1016 register_language ('name' => 'ratfor',
1017                    'Name' => 'Ratfor',
1018                    'config_vars' => ['F77'],
1019                    'linker' => 'F77LINK',
1020                    'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
1021                    'lder' => 'F77LD',
1022                    'ld' => '$(F77)',
1023                    'flags' => ['RFLAGS', 'FFLAGS'],
1024                    # FIXME also FFLAGS.
1025                    'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)',
1026                    'ccer' => 'F77',
1027                    'compiler' => 'RCOMPILE',
1028                    'compile_flag' => '-c',
1029                    'output_flag' => '-o',
1030                    'libtool_tag' => 'F77',
1031                    'pure' => 1,
1032                    'extensions' => ['.r']);
1033
1034 # Java via gcj.
1035 register_language ('name' => 'java',
1036                    'Name' => 'Java',
1037                    'config_vars' => ['GCJ'],
1038                    'linker' => 'GCJLINK',
1039                    'link' => '$(GCJLD) $(AM_GCJFLAGS) $(GCJFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
1040                    'autodep' => 'GCJ',
1041                    'flags' => ['GCJFLAGS'],
1042                    'compile' => '$(GCJ) $(AM_GCJFLAGS) $(GCJFLAGS)',
1043                    'ccer' => 'GCJ',
1044                    'compiler' => 'GCJCOMPILE',
1045                    'compile_flag' => '-c',
1046                    'output_flag' => '-o',
1047                    'libtool_tag' => 'GCJ',
1048                    'lder' => 'GCJLD',
1049                    'ld' => '$(GCJ)',
1050                    'pure' => 1,
1051                    'extensions' => ['.java', '.class', '.zip', '.jar']);
1052
1053 ################################################################
1054
1055 # Error reporting functions.
1056
1057 # err_am ($MESSAGE, [%OPTIONS])
1058 # -----------------------------
1059 # Uncategorized errors about the current Makefile.am.
1060 sub err_am ($;%)
1061 {
1062   msg_am ('error', @_);
1063 }
1064
1065 # err_ac ($MESSAGE, [%OPTIONS])
1066 # -----------------------------
1067 # Uncategorized errors about configure.ac.
1068 sub err_ac ($;%)
1069 {
1070   msg_ac ('error', @_);
1071 }
1072
1073 # msg_am ($CHANNEL, $MESSAGE, [%OPTIONS])
1074 # ---------------------------------------
1075 # Messages about about the current Makefile.am.
1076 sub msg_am ($$;%)
1077 {
1078   my ($channel, $msg, %opts) = @_;
1079   msg $channel, "${am_file}.am", $msg, %opts;
1080 }
1081
1082 # msg_ac ($CHANNEL, $MESSAGE, [%OPTIONS])
1083 # ---------------------------------------
1084 # Messages about about configure.ac.
1085 sub msg_ac ($$;%)
1086 {
1087   my ($channel, $msg, %opts) = @_;
1088   msg $channel, $configure_ac, $msg, %opts;
1089 }
1090
1091 ################################################################
1092
1093 # subst ($TEXT)
1094 # -------------
1095 # Return a configure-style substitution using the indicated text.
1096 # We do this to avoid having the substitutions directly in automake.in;
1097 # when we do that they are sometimes removed and this causes confusion
1098 # and bugs.
1099 sub subst ($)
1100 {
1101     my ($text) = @_;
1102     return '@' . $text . '@';
1103 }
1104
1105 ################################################################
1106
1107
1108 # $BACKPATH
1109 # &backname ($REL-DIR)
1110 # --------------------
1111 # If I `cd $REL-DIR', then to come back, I should `cd $BACKPATH'.
1112 # For instance `src/foo' => `../..'.
1113 # Works with non strictly increasing paths, i.e., `src/../lib' => `..'.
1114 sub backname ($)
1115 {
1116     my ($file) = @_;
1117     my @res;
1118     foreach (split (/\//, $file))
1119     {
1120         next if $_ eq '.' || $_ eq '';
1121         if ($_ eq '..')
1122         {
1123             pop @res
1124               or prog_error ("trying to reverse path `$file' pointing outside tree");
1125         }
1126         else
1127         {
1128             push (@res, '..');
1129         }
1130     }
1131     return join ('/', @res) || '.';
1132 }
1133
1134 ################################################################
1135
1136 # `silent-rules' mode handling functions.
1137
1138 # verbose_var (NAME)
1139 # ------------------
1140 # The public variable stem used to implement `silent-rules'.
1141 sub verbose_var ($)
1142 {
1143     my ($name) = @_;
1144     return 'AM_V_' . $name;
1145 }
1146
1147 # verbose_private_var (NAME)
1148 # --------------------------
1149 # The naming policy for the private variables for `silent-rules'.
1150 sub verbose_private_var ($)
1151 {
1152     my ($name) = @_;
1153     return 'am__v_' . $name;
1154 }
1155
1156 # define_verbose_var (NAME, VAL)
1157 # ------------------------------
1158 # For `silent-rules' mode, setup VAR and dispatcher, to expand to VAL if silent.
1159 sub define_verbose_var ($$)
1160 {
1161     my ($name, $val) = @_;
1162     my $var = verbose_var ($name);
1163     my $pvar = verbose_private_var ($name);
1164     my $silent_var = $pvar . '_0';
1165     if (option 'silent-rules')
1166       {
1167         # For typical `make's, `configure' replaces AM_V (inside @@) with $(V)
1168         # and AM_DEFAULT_V (inside @@) with $(AM_DEFAULT_VERBOSITY).
1169         # For strict POSIX 2008 `make's, it replaces them with 0 or 1 instead.
1170         # See AM_SILENT_RULES in m4/silent.m4.
1171         define_variable ($var, '$(' . $pvar . '_@'.'AM_V'.'@)', INTERNAL);
1172         define_variable ($pvar . '_', '$(' . $pvar . '_@'.'AM_DEFAULT_V'.'@)', INTERNAL);
1173         Automake::Variable::define ($silent_var, VAR_AUTOMAKE, '', TRUE, $val,
1174                                     '', INTERNAL, VAR_ASIS)
1175           if (! vardef ($silent_var, TRUE));
1176       }
1177 }
1178
1179 # Above should not be needed in the general automake code.
1180
1181 # verbose_flag (NAME)
1182 # -------------------
1183 # Contents of %VERBOSE%: variable to expand before rule command.
1184 sub verbose_flag ($)
1185 {
1186     my ($name) = @_;
1187     return '$(' . verbose_var ($name) . ')'
1188       if (option 'silent-rules');
1189     return '';
1190 }
1191
1192 sub verbose_nodep_flag ($)
1193 {
1194     my ($name) = @_;
1195     return '$(' . verbose_var ($name) . subst ('am__nodep') . ')'
1196       if (option 'silent-rules');
1197     return '';
1198 }
1199
1200 # silent_flag
1201 # -----------
1202 # Contents of %SILENT%: variable to expand to `@' when silent.
1203 sub silent_flag ()
1204 {
1205     return verbose_flag ('at');
1206 }
1207
1208 # define_verbose_tagvar (NAME)
1209 # ----------------------------
1210 # Engage the needed `silent-rules' machinery for tag NAME.
1211 sub define_verbose_tagvar ($)
1212 {
1213     my ($name) = @_;
1214     if (option 'silent-rules')
1215       {
1216         define_verbose_var ($name, '@echo "  '. $name . ' ' x (6 - length ($name)) . '" $@;');
1217         define_verbose_var ('at', '@');
1218       }
1219 }
1220
1221 # define_verbose_libtool
1222 # ----------------------
1223 # Engage the needed `silent-rules' machinery for `libtool --silent'.
1224 sub define_verbose_libtool ()
1225 {
1226     define_verbose_var ('lt', '--silent');
1227     return verbose_flag ('lt');
1228 }
1229
1230
1231 ################################################################
1232
1233
1234 # Handle AUTOMAKE_OPTIONS variable.  Return 1 on error, 0 otherwise.
1235 sub handle_options
1236 {
1237   my $var = var ('AUTOMAKE_OPTIONS');
1238   if ($var)
1239     {
1240       if ($var->has_conditional_contents)
1241         {
1242           msg_var ('unsupported', $var,
1243                    "`AUTOMAKE_OPTIONS' cannot have conditional contents");
1244         }
1245       foreach my $locvals ($var->value_as_list_recursive (cond_filter => TRUE,
1246                                                           location => 1))
1247         {
1248           my ($loc, $value) = @$locvals;
1249           return 1 if (process_option_list ($loc, $value))
1250         }
1251     }
1252
1253   # Override portability-recursive warning.
1254   switch_warning ('no-portability-recursive')
1255     if option 'silent-rules';
1256
1257   if ($strictness == GNITS)
1258     {
1259       set_option ('readme-alpha', INTERNAL);
1260       set_option ('std-options', INTERNAL);
1261       set_option ('check-news', INTERNAL);
1262     }
1263
1264   return 0;
1265 }
1266
1267 # shadow_unconditionally ($varname, $where)
1268 # -----------------------------------------
1269 # Return a $(variable) that contains all possible values
1270 # $varname can take.
1271 # If the VAR wasn't defined conditionally, return $(VAR).
1272 # Otherwise we create an am__VAR_DIST variable which contains
1273 # all possible values, and return $(am__VAR_DIST).
1274 sub shadow_unconditionally ($$)
1275 {
1276   my ($varname, $where) = @_;
1277   my $var = var $varname;
1278   if ($var->has_conditional_contents)
1279     {
1280       $varname = "am__${varname}_DIST";
1281       my @files = uniq ($var->value_as_list_recursive);
1282       define_pretty_variable ($varname, TRUE, $where, @files);
1283     }
1284   return "\$($varname)"
1285 }
1286
1287 # get_object_extension ($EXTENSION)
1288 # ---------------------------------
1289 # Prefix $EXTENSION with $U if ansi2knr is in use.
1290 sub get_object_extension ($)
1291 {
1292     my ($extension) = @_;
1293
1294     # Check for automatic de-ANSI-fication.
1295     $extension = '$U' . $extension
1296       if option 'ansi2knr';
1297
1298     $get_object_extension_was_run = 1;
1299
1300     return $extension;
1301 }
1302
1303 # check_user_variables (@LIST)
1304 # ----------------------------
1305 # Make sure each variable VAR in @LIST does not exist, suggest using AM_VAR
1306 # otherwise.
1307 sub check_user_variables (@)
1308 {
1309   my @dont_override = @_;
1310   foreach my $flag (@dont_override)
1311     {
1312       my $var = var $flag;
1313       if ($var)
1314         {
1315           for my $cond ($var->conditions->conds)
1316             {
1317               if ($var->rdef ($cond)->owner == VAR_MAKEFILE)
1318                 {
1319                   msg_cond_var ('gnu', $cond, $flag,
1320                                 "`$flag' is a user variable, "
1321                                 . "you should not override it;\n"
1322                                 . "use `AM_$flag' instead.");
1323                 }
1324             }
1325         }
1326     }
1327 }
1328
1329 # Call finish function for each language that was used.
1330 sub handle_languages
1331 {
1332     if (! option 'no-dependencies')
1333     {
1334         # Include auto-dep code.  Don't include it if DEP_FILES would
1335         # be empty.
1336         if (&saw_sources_p (0) && keys %dep_files)
1337         {
1338             # Set location of depcomp.
1339             &define_variable ('depcomp',
1340                               "\$(SHELL) $am_config_aux_dir/depcomp",
1341                               INTERNAL);
1342             &define_variable ('am__depfiles_maybe', 'depfiles', INTERNAL);
1343
1344             require_conf_file ("$am_file.am", FOREIGN, 'depcomp');
1345
1346             my @deplist = sort keys %dep_files;
1347             # Generate each `include' individually.  Irix 6 make will
1348             # not properly include several files resulting from a
1349             # variable expansion; generating many separate includes
1350             # seems safest.
1351             $output_rules .= "\n";
1352             foreach my $iter (@deplist)
1353             {
1354                 $output_rules .= (subst ('AMDEP_TRUE')
1355                                   . subst ('am__include')
1356                                   . ' '
1357                                   . subst ('am__quote')
1358                                   . $iter
1359                                   . subst ('am__quote')
1360                                   . "\n");
1361             }
1362
1363             # Compute the set of directories to remove in distclean-depend.
1364             my @depdirs = uniq (map { dirname ($_) } @deplist);
1365             $output_rules .= &file_contents ('depend',
1366                                              new Automake::Location,
1367                                              DEPDIRS => "@depdirs");
1368         }
1369     }
1370     else
1371     {
1372         &define_variable ('depcomp', '', INTERNAL);
1373         &define_variable ('am__depfiles_maybe', '', INTERNAL);
1374     }
1375
1376     my %done;
1377
1378     # Is the C linker needed?
1379     my $needs_c = 0;
1380     foreach my $ext (sort keys %extension_seen)
1381     {
1382         next unless $extension_map{$ext};
1383
1384         my $lang = $languages{$extension_map{$ext}};
1385
1386         my $rule_file = $lang->rule_file || 'depend2';
1387
1388         # Get information on $LANG.
1389         my $pfx = $lang->autodep;
1390         my $fpfx = ($pfx eq '') ? 'CC' : $pfx;
1391
1392         my ($AMDEP, $FASTDEP) =
1393           (option 'no-dependencies' || $lang->autodep eq 'no')
1394           ? ('FALSE', 'FALSE') : ('AMDEP', "am__fastdep$fpfx");
1395
1396         my $verbose = verbose_flag ($lang->ccer || 'GEN');
1397         my $verbose_nodep = ($AMDEP eq 'FALSE')
1398           ? $verbose : verbose_nodep_flag ($lang->ccer || 'GEN');
1399         my $silent = silent_flag ();
1400
1401         my %transform = ('EXT'     => $ext,
1402                          'PFX'     => $pfx,
1403                          'FPFX'    => $fpfx,
1404                          'AMDEP'   => $AMDEP,
1405                          'FASTDEP' => $FASTDEP,
1406                          '-c'      => $lang->compile_flag || '',
1407                          # These are not used, but they need to be defined
1408                          # so &transform do not complain.
1409                          SUBDIROBJ     => 0,
1410                          'DERIVED-EXT' => 'BUG',
1411                          DIST_SOURCE   => 1,
1412                          VERBOSE   => $verbose,
1413                          'VERBOSE-NODEP' => $verbose_nodep,
1414                          SILENT    => $silent,
1415                         );
1416
1417         # Generate the appropriate rules for this extension.
1418         if (((! option 'no-dependencies') && $lang->autodep ne 'no')
1419             || defined $lang->compile)
1420         {
1421             # Some C compilers don't support -c -o.  Use it only if really
1422             # needed.
1423             my $output_flag = $lang->output_flag || '';
1424             $output_flag = '-o'
1425               if (! $output_flag
1426                   && $lang->name eq 'c'
1427                   && option 'subdir-objects');
1428
1429             # Compute a possible derived extension.
1430             # This is not used by depend2.am.
1431             my $der_ext = (&{$lang->output_extensions} ($ext))[0];
1432
1433             # When we output an inference rule like `.c.o:' we
1434             # have two cases to consider: either subdir-objects
1435             # is used, or it is not.
1436             #
1437             # In the latter case the rule is used to build objects
1438             # in the current directory, and dependencies always
1439             # go into `./$(DEPDIR)/'.  We can hard-code this value.
1440             #
1441             # In the former case the rule can be used to build
1442             # objects in sub-directories too.  Dependencies should
1443             # go into the appropriate sub-directories, e.g.,
1444             # `sub/$(DEPDIR)/'.  The value of this directory
1445             # needs to be computed on-the-fly.
1446             #
1447             # DEPBASE holds the name of this directory, plus the
1448             # basename part of the object file (extensions Po, TPo,
1449             # Plo, TPlo will be added later as appropriate).  It is
1450             # either hardcoded, or a shell variable (`$depbase') that
1451             # will be computed by the rule.
1452             my $depbase =
1453               option ('subdir-objects') ? '$$depbase' : '$(DEPDIR)/$*';
1454             $output_rules .=
1455               file_contents ($rule_file,
1456                              new Automake::Location,
1457                              %transform,
1458                              GENERIC   => 1,
1459
1460                              'DERIVED-EXT' => $der_ext,
1461
1462                              DEPBASE   => $depbase,
1463                              BASE      => '$*',
1464                              SOURCE    => '$<',
1465                              SOURCEFLAG => $sourceflags{$ext} || '',
1466                              OBJ       => '$@',
1467                              OBJOBJ    => '$@',
1468                              LTOBJ     => '$@',
1469
1470                              COMPILE   => '$(' . $lang->compiler . ')',
1471                              LTCOMPILE => '$(LT' . $lang->compiler . ')',
1472                              -o        => $output_flag,
1473                              SUBDIROBJ => !! option 'subdir-objects');
1474         }
1475
1476         # Now include code for each specially handled object with this
1477         # language.
1478         my %seen_files = ();
1479         foreach my $file (@{$lang_specific_files{$lang->name}})
1480         {
1481             my ($derived, $source, $obj, $myext, $srcext, %file_transform) = @$file;
1482
1483             # We might see a given object twice, for instance if it is
1484             # used under different conditions.
1485             next if defined $seen_files{$obj};
1486             $seen_files{$obj} = 1;
1487
1488             prog_error ("found " . $lang->name .
1489                         " in handle_languages, but compiler not defined")
1490               unless defined $lang->compile;
1491
1492             my $obj_compile = $lang->compile;
1493
1494             # Rewrite each occurrence of `AM_$flag' in the compile
1495             # rule into `${derived}_$flag' if it exists.
1496             for my $flag (@{$lang->flags})
1497               {
1498                 my $val = "${derived}_$flag";
1499                 $obj_compile =~ s/\(AM_$flag\)/\($val\)/
1500                   if set_seen ($val);
1501               }
1502
1503             my $libtool_tag = '';
1504             if ($lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag})
1505               {
1506                 $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
1507               }
1508
1509             my $ptltflags = "${derived}_LIBTOOLFLAGS";
1510             $ptltflags = 'AM_LIBTOOLFLAGS' unless set_seen $ptltflags;
1511
1512             my $ltverbose = define_verbose_libtool ();
1513             my $obj_ltcompile =
1514               "\$(LIBTOOL) $ltverbose $libtool_tag\$($ptltflags) \$(LIBTOOLFLAGS) "
1515               . "--mode=compile $obj_compile";
1516
1517             # We _need_ `-o' for per object rules.
1518             my $output_flag = $lang->output_flag || '-o';
1519
1520             my $depbase = dirname ($obj);
1521             $depbase = ''
1522                 if $depbase eq '.';
1523             $depbase .= '/'
1524                 unless $depbase eq '';
1525             $depbase .= '$(DEPDIR)/' . basename ($obj);
1526
1527             # Support for deansified files in subdirectories is ugly
1528             # enough to deserve an explanation.
1529             #
1530             # A Note about normal ansi2knr processing first.  On
1531             #
1532             #   AUTOMAKE_OPTIONS = ansi2knr
1533             #   bin_PROGRAMS = foo
1534             #   foo_SOURCES = foo.c
1535             #
1536             # we generate rules similar to:
1537             #
1538             #   foo: foo$U.o; link ...
1539             #   foo$U.o: foo$U.c; compile ...
1540             #   foo_.c: foo.c; ansi2knr ...
1541             #
1542             # this is fairly compact, and will call ansi2knr depending
1543             # on the value of $U (`' or `_').
1544             #
1545             # It's harder with subdir sources. On
1546             #
1547             #   AUTOMAKE_OPTIONS = ansi2knr
1548             #   bin_PROGRAMS = foo
1549             #   foo_SOURCES = sub/foo.c
1550             #
1551             # we have to create foo_.c in the current directory.
1552             # (Unless the user asks 'subdir-objects'.)  This is important
1553             # in case the same file (`foo.c') is compiled from other
1554             # directories with different cpp options: foo_.c would
1555             # be preprocessed for only one set of options if it were
1556             # put in the subdirectory.
1557             #
1558             # Because foo$U.o must be built from either foo_.c or
1559             # sub/foo.c we can't be as concise as in the first example.
1560             # Instead we output
1561             #
1562             #   foo: foo$U.o; link ...
1563             #   foo_.o: foo_.c; compile ...
1564             #   foo.o: sub/foo.c; compile ...
1565             #   foo_.c: foo.c; ansi2knr ...
1566             #
1567             # This is why we'll now transform $rule_file twice
1568             # if we detect this case.
1569             # A first time we output the compile rule with `$U'
1570             # replaced by `_' and the source directory removed,
1571             # and another time we simply remove `$U'.
1572             #
1573             # Note that at this point $source (as computed by
1574             # &handle_single_transform) is `sub/foo$U.c'.
1575             # This can be confusing: it can be used as-is when
1576             # subdir-objects is set, otherwise you have to know
1577             # it really means `foo_.c' or `sub/foo.c'.
1578             my $objdir = dirname ($obj);
1579             my $srcdir = dirname ($source);
1580             if ($lang->ansi && $obj =~ /\$U/)
1581               {
1582                 prog_error "`$obj' contains \$U, but `$source' doesn't."
1583                   if $source !~ /\$U/;
1584
1585                 (my $source_ = $source) =~ s/\$U/_/g;
1586                 # Output an additional rule if _.c and .c are not in
1587                 # the same directory.  (_.c is always in $objdir.)
1588                 if ($objdir ne $srcdir)
1589                   {
1590                     (my $obj_ = $obj) =~ s/\$U/_/g;
1591                     (my $depbase_ = $depbase) =~ s/\$U/_/g;
1592                     $source_ = basename ($source_);
1593
1594                     $output_rules .=
1595                       file_contents ($rule_file,
1596                                      new Automake::Location,
1597                                      %transform,
1598                                      GENERIC   => 0,
1599
1600                                      DEPBASE   => $depbase_,
1601                                      BASE      => $obj_,
1602                                      SOURCE    => $source_,
1603                                      SOURCEFLAG => $sourceflags{$srcext} || '',
1604                                      OBJ       => "$obj_$myext",
1605                                      OBJOBJ    => "$obj_.obj",
1606                                      LTOBJ     => "$obj_.lo",
1607
1608                                      COMPILE   => $obj_compile,
1609                                      LTCOMPILE => $obj_ltcompile,
1610                                      -o        => $output_flag,
1611                                      %file_transform);
1612                     $obj =~ s/\$U//g;
1613                     $depbase =~ s/\$U//g;
1614                     $source =~ s/\$U//g;
1615                   }
1616               }
1617
1618             $output_rules .=
1619               file_contents ($rule_file,
1620                              new Automake::Location,
1621                              %transform,
1622                              GENERIC   => 0,
1623
1624                              DEPBASE   => $depbase,
1625                              BASE      => $obj,
1626                              SOURCE    => $source,
1627                              SOURCEFLAG => $sourceflags{$srcext} || '',
1628                              # Use $myext and not `.o' here, in case
1629                              # we are actually building a new source
1630                              # file -- e.g. via yacc.
1631                              OBJ       => "$obj$myext",
1632                              OBJOBJ    => "$obj.obj",
1633                              LTOBJ     => "$obj.lo",
1634
1635                              VERBOSE   => $verbose,
1636                              'VERBOSE-NODEP'  => $verbose_nodep,
1637                              SILENT    => $silent,
1638                              COMPILE   => $obj_compile,
1639                              LTCOMPILE => $obj_ltcompile,
1640                              -o        => $output_flag,
1641                              %file_transform);
1642         }
1643
1644         # The rest of the loop is done once per language.
1645         next if defined $done{$lang};
1646         $done{$lang} = 1;
1647
1648         # Load the language dependent Makefile chunks.
1649         my %lang = map { uc ($_) => 0 } keys %languages;
1650         $lang{uc ($lang->name)} = 1;
1651         $output_rules .= file_contents ('lang-compile',
1652                                         new Automake::Location,
1653                                         %transform, %lang);
1654
1655         # If the source to a program consists entirely of code from a
1656         # `pure' language, for instance C++ or Fortran 77, then we
1657         # don't need the C compiler code.  However if we run into
1658         # something unusual then we do generate the C code.  There are
1659         # probably corner cases here that do not work properly.
1660         # People linking Java code to Fortran code deserve pain.
1661         $needs_c ||= ! $lang->pure;
1662
1663         define_compiler_variable ($lang)
1664           if ($lang->compile);
1665
1666         define_linker_variable ($lang)
1667           if ($lang->link);
1668
1669         require_variables ("$am_file.am", $lang->Name . " source seen",
1670                            TRUE, @{$lang->config_vars});
1671
1672         # Call the finisher.
1673         $lang->finish;
1674
1675         # Flags listed in `->flags' are user variables (per GNU Standards),
1676         # they should not be overridden in the Makefile...
1677         my @dont_override = @{$lang->flags};
1678         # ... and so is LDFLAGS.
1679         push @dont_override, 'LDFLAGS' if $lang->link;
1680
1681         check_user_variables @dont_override;
1682     }
1683
1684     # If the project is entirely C++ or entirely Fortran 77 (i.e., 1
1685     # suffix rule was learned), don't bother with the C stuff.  But if
1686     # anything else creeps in, then use it.
1687     $needs_c = 1
1688       if $need_link || suffix_rules_count > 1;
1689
1690     if ($needs_c)
1691       {
1692         &define_compiler_variable ($languages{'c'})
1693           unless defined $done{$languages{'c'}};
1694         define_linker_variable ($languages{'c'});
1695       }
1696
1697     # Always provide the user with `AM_V_GEN' for `silent-rules' mode.
1698     define_verbose_tagvar ('GEN');
1699 }
1700
1701
1702 # append_exeext { PREDICATE } $MACRO
1703 # ----------------------------------
1704 # Append $(EXEEXT) to each filename in $F appearing in the Makefile
1705 # variable $MACRO if &PREDICATE($F) is true.  @substitutions@ are
1706 # ignored.
1707 #
1708 # This is typically used on all filenames of *_PROGRAMS, and filenames
1709 # of TESTS that are programs.
1710 sub append_exeext (&$)
1711 {
1712   my ($pred, $macro) = @_;
1713
1714   transform_variable_recursively
1715     ($macro, $macro, 'am__EXEEXT', 0, INTERNAL,
1716      sub {
1717        my ($subvar, $val, $cond, $full_cond) = @_;
1718        # Append $(EXEEXT) unless the user did it already, or it's a
1719        # @substitution@.
1720        $val .= '$(EXEEXT)'
1721          if $val !~ /(?:\$\(EXEEXT\)$|^[@]\w+[@]$)/ && &$pred ($val);
1722        return $val;
1723      });
1724 }
1725
1726
1727 # Check to make sure a source defined in LIBOBJS is not explicitly
1728 # mentioned.  This is a separate function (as opposed to being inlined
1729 # in handle_source_transform) because it isn't always appropriate to
1730 # do this check.
1731 sub check_libobjs_sources
1732 {
1733   my ($one_file, $unxformed) = @_;
1734
1735   foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
1736                       'dist_EXTRA_', 'nodist_EXTRA_')
1737     {
1738       my @files;
1739       my $varname = $prefix . $one_file . '_SOURCES';
1740       my $var = var ($varname);
1741       if ($var)
1742         {
1743           @files = $var->value_as_list_recursive;
1744         }
1745       elsif ($prefix eq '')
1746         {
1747           @files = ($unxformed . '.c');
1748         }
1749       else
1750         {
1751           next;
1752         }
1753
1754       foreach my $file (@files)
1755         {
1756           err_var ($prefix . $one_file . '_SOURCES',
1757                    "automatically discovered file `$file' should not" .
1758                    " be explicitly mentioned")
1759             if defined $libsources{$file};
1760         }
1761     }
1762 }
1763
1764
1765 # @OBJECTS
1766 # handle_single_transform ($VAR, $TOPPARENT, $DERIVED, $OBJ, $FILE, %TRANSFORM)
1767 # -----------------------------------------------------------------------------
1768 # Does much of the actual work for handle_source_transform.
1769 # Arguments are:
1770 #   $VAR is the name of the variable that the source filenames come from
1771 #   $TOPPARENT is the name of the _SOURCES variable which is being processed
1772 #   $DERIVED is the name of resulting executable or library
1773 #   $OBJ is the object extension (e.g., `$U.lo')
1774 #   $FILE the source file to transform
1775 #   %TRANSFORM contains extras arguments to pass to file_contents
1776 #     when producing explicit rules
1777 # Result is a list of the names of objects
1778 # %linkers_used will be updated with any linkers needed
1779 sub handle_single_transform ($$$$$%)
1780 {
1781     my ($var, $topparent, $derived, $obj, $_file, %transform) = @_;
1782     my @files = ($_file);
1783     my @result = ();
1784     my $nonansi_obj = $obj;
1785     $nonansi_obj =~ s/\$U//g;
1786
1787     # Turn sources into objects.  We use a while loop like this
1788     # because we might add to @files in the loop.
1789     while (scalar @files > 0)
1790     {
1791         $_ = shift @files;
1792
1793         # Configure substitutions in _SOURCES variables are errors.
1794         if (/^\@.*\@$/)
1795         {
1796           my $parent_msg = '';
1797           $parent_msg = "\nand is referred to from `$topparent'"
1798             if $topparent ne $var->name;
1799           err_var ($var,
1800                    "`" . $var->name . "' includes configure substitution `$_'"
1801                    . $parent_msg . ";\nconfigure " .
1802                    "substitutions are not allowed in _SOURCES variables");
1803           next;
1804         }
1805
1806         # If the source file is in a subdirectory then the `.o' is put
1807         # into the current directory, unless the subdir-objects option
1808         # is in effect.
1809
1810         # Split file name into base and extension.
1811         next if ! /^(?:(.*)\/)?([^\/]*)($KNOWN_EXTENSIONS_PATTERN)$/;
1812         my $full = $_;
1813         my $directory = $1 || '';
1814         my $base = $2;
1815         my $extension = $3;
1816
1817         # We must generate a rule for the object if it requires its own flags.
1818         my $renamed = 0;
1819         my ($linker, $object);
1820
1821         # This records whether we've seen a derived source file (e.g.
1822         # yacc output).
1823         my $derived_source = 0;
1824
1825         # This holds the `aggregate context' of the file we are
1826         # currently examining.  If the file is compiled with
1827         # per-object flags, then it will be the name of the object.
1828         # Otherwise it will be `AM'.  This is used by the target hook
1829         # language function.
1830         my $aggregate = 'AM';
1831
1832         $extension = &derive_suffix ($extension, $nonansi_obj);
1833         my $lang;
1834         if ($extension_map{$extension} &&
1835             ($lang = $languages{$extension_map{$extension}}))
1836         {
1837             # Found the language, so see what it says.
1838             &saw_extension ($extension);
1839
1840             # Do we have per-executable flags for this executable?
1841             my $have_per_exec_flags = 0;
1842             my @peflags = @{$lang->flags};
1843             push @peflags, 'LIBTOOLFLAGS' if $nonansi_obj eq '.lo';
1844             foreach my $flag (@peflags)
1845               {
1846                 if (set_seen ("${derived}_$flag"))
1847                   {
1848                     $have_per_exec_flags = 1;
1849                     last;
1850                   }
1851               }
1852
1853             # Note: computed subr call.  The language rewrite function
1854             # should return one of the LANG_* constants.  It could
1855             # also return a list whose first value is such a constant
1856             # and whose second value is a new source extension which
1857             # should be applied.  This means this particular language
1858             # generates another source file which we must then process
1859             # further.
1860             my $subr = \&{'lang_' . $lang->name . '_rewrite'};
1861             my ($r, $source_extension)
1862                 = &$subr ($directory, $base, $extension,
1863                           $nonansi_obj, $have_per_exec_flags, $var);
1864             # Skip this entry if we were asked not to process it.
1865             next if $r == LANG_IGNORE;
1866
1867             # Now extract linker and other info.
1868             $linker = $lang->linker;
1869
1870             my $this_obj_ext;
1871             if (defined $source_extension)
1872             {
1873                 $this_obj_ext = $source_extension;
1874                 $derived_source = 1;
1875             }
1876             elsif ($lang->ansi)
1877             {
1878                 $this_obj_ext = $obj;
1879             }
1880             else
1881             {
1882                 $this_obj_ext = $nonansi_obj;
1883             }
1884             $object = $base . $this_obj_ext;
1885
1886             if ($have_per_exec_flags)
1887             {
1888                 # We have a per-executable flag in effect for this
1889                 # object.  In this case we rewrite the object's
1890                 # name to ensure it is unique.
1891
1892                 # We choose the name `DERIVED_OBJECT' to ensure
1893                 # (1) uniqueness, and (2) continuity between
1894                 # invocations.  However, this will result in a
1895                 # name that is too long for losing systems, in
1896                 # some situations.  So we provide _SHORTNAME to
1897                 # override.
1898
1899                 my $dname = $derived;
1900                 my $var = var ($derived . '_SHORTNAME');
1901                 if ($var)
1902                 {
1903                     # FIXME: should use the same Condition as
1904                     # the _SOURCES variable.  But this is really
1905                     # silly overkill -- nobody should have
1906                     # conditional shortnames.
1907                     $dname = $var->variable_value;
1908                 }
1909                 $object = $dname . '-' . $object;
1910
1911                 prog_error ($lang->name . " flags defined without compiler")
1912                   if ! defined $lang->compile;
1913
1914                 $renamed = 1;
1915             }
1916
1917             # If rewrite said it was ok, put the object into a
1918             # subdir.
1919             if ($r == LANG_SUBDIR && $directory ne '')
1920             {
1921                 $object = $directory . '/' . $object;
1922             }
1923
1924             # If the object file has been renamed (because per-target
1925             # flags are used) we cannot compile the file with an
1926             # inference rule: we need an explicit rule.
1927             #
1928             # If the source is in a subdirectory and the object is in
1929             # the current directory, we also need an explicit rule.
1930             #
1931             # If both source and object files are in a subdirectory
1932             # (this happens when the subdir-objects option is used),
1933             # then the inference will work.
1934             #
1935             # The latter case deserves a historical note.  When the
1936             # subdir-objects option was added on 1999-04-11 it was
1937             # thought that inferences rules would work for
1938             # subdirectory objects too.  Later, on 1999-11-22,
1939             # automake was changed to output explicit rules even for
1940             # subdir-objects.  Nobody remembers why, but this occurred
1941             # soon after the merge of the user-dep-gen-branch so it
1942             # might be related.  In late 2003 people complained about
1943             # the size of the generated Makefile.ins (libgcj, with
1944             # 2200+ subdir objects was reported to have a 9MB
1945             # Makefile), so we now rely on inference rules again.
1946             # Maybe we'll run across the same issue as in the past,
1947             # but at least this time we can document it.  However since
1948             # dependency tracking has evolved it is possible that
1949             # our old problem no longer exists.
1950             # Using inference rules for subdir-objects has been tested
1951             # with GNU make, Solaris make, Ultrix make, BSD make,
1952             # HP-UX make, and OSF1 make successfully.
1953             if ($renamed
1954                 || ($directory ne '' && ! option 'subdir-objects')
1955                 # We must also use specific rules for a nodist_ source
1956                 # if its language requests it.
1957                 || ($lang->nodist_specific && ! $transform{'DIST_SOURCE'}))
1958             {
1959                 my $obj_sans_ext = substr ($object, 0,
1960                                            - length ($this_obj_ext));
1961                 my $full_ansi;
1962                 if ($directory ne '')
1963                   {
1964                         $full_ansi = $directory . '/' . $base . $extension;
1965                   }
1966                 else
1967                   {
1968                         $full_ansi = $base . $extension;
1969                   }
1970
1971                 if ($lang->ansi && option 'ansi2knr')
1972                   {
1973                     $full_ansi =~ s/$KNOWN_EXTENSIONS_PATTERN$/\$U$&/;
1974                     $obj_sans_ext .= '$U';
1975                   }
1976
1977                 my @specifics = ($full_ansi, $obj_sans_ext,
1978                                  # Only use $this_obj_ext in the derived
1979                                  # source case because in the other case we
1980                                  # *don't* want $(OBJEXT) to appear here.
1981                                  ($derived_source ? $this_obj_ext : '.o'),
1982                                  $extension);
1983
1984                 # If we renamed the object then we want to use the
1985                 # per-executable flag name.  But if this is simply a
1986                 # subdir build then we still want to use the AM_ flag
1987                 # name.
1988                 if ($renamed)
1989                   {
1990                     unshift @specifics, $derived;
1991                     $aggregate = $derived;
1992                   }
1993                 else
1994                   {
1995                     unshift @specifics, 'AM';
1996                   }
1997
1998                 # Each item on this list is a reference to a list consisting
1999                 # of four values followed by additional transform flags for
2000                 # file_contents.  The four values are the derived flag prefix
2001                 # (e.g. for `foo_CFLAGS', it is `foo'), the name of the
2002                 # source file, the base name of the output file, and
2003                 # the extension for the object file.
2004                 push (@{$lang_specific_files{$lang->name}},
2005                       [@specifics, %transform]);
2006             }
2007         }
2008         elsif ($extension eq $nonansi_obj)
2009         {
2010             # This is probably the result of a direct suffix rule.
2011             # In this case we just accept the rewrite.
2012             $object = "$base$extension";
2013             $object = "$directory/$object" if $directory ne '';
2014             $linker = '';
2015         }
2016         else
2017         {
2018             # No error message here.  Used to have one, but it was
2019             # very unpopular.
2020             # FIXME: we could potentially do more processing here,
2021             # perhaps treating the new extension as though it were a
2022             # new source extension (as above).  This would require
2023             # more restructuring than is appropriate right now.
2024             next;
2025         }
2026
2027         err_am "object `$object' created by `$full' and `$object_map{$object}'"
2028           if (defined $object_map{$object}
2029               && $object_map{$object} ne $full);
2030
2031         my $comp_val = (($object =~ /\.lo$/)
2032                         ? COMPILE_LIBTOOL : COMPILE_ORDINARY);
2033         (my $comp_obj = $object) =~ s/\.lo$/.\$(OBJEXT)/;
2034         if (defined $object_compilation_map{$comp_obj}
2035             && $object_compilation_map{$comp_obj} != 0
2036             # Only see the error once.
2037             && ($object_compilation_map{$comp_obj}
2038                 != (COMPILE_LIBTOOL | COMPILE_ORDINARY))
2039             && $object_compilation_map{$comp_obj} != $comp_val)
2040           {
2041             err_am "object `$comp_obj' created both with libtool and without";
2042           }
2043         $object_compilation_map{$comp_obj} |= $comp_val;
2044
2045         if (defined $lang)
2046         {
2047             # Let the language do some special magic if required.
2048             $lang->target_hook ($aggregate, $object, $full, %transform);
2049         }
2050
2051         if ($derived_source)
2052           {
2053             prog_error ($lang->name . " has automatic dependency tracking")
2054               if $lang->autodep ne 'no';
2055             # Make sure this new source file is handled next.  That will
2056             # make it appear to be at the right place in the list.
2057             unshift (@files, $object);
2058             # Distribute derived sources unless the source they are
2059             # derived from is not.
2060             &push_dist_common ($object)
2061               unless ($topparent =~ /^(?:nobase_)?nodist_/);
2062             next;
2063           }
2064
2065         $linkers_used{$linker} = 1;
2066
2067         push (@result, $object);
2068
2069         if (! defined $object_map{$object})
2070         {
2071             my @dep_list = ();
2072             $object_map{$object} = $full;
2073
2074             # If resulting object is in subdir, we need to make
2075             # sure the subdir exists at build time.
2076             if ($object =~ /\//)
2077             {
2078                 # FIXME: check that $DIRECTORY is somewhere in the
2079                 # project
2080
2081                 # For Java, the way we're handling it right now, a
2082                 # `..' component doesn't make sense.
2083                 if ($lang && $lang->name eq 'java' && $object =~ /(\/|^)\.\.\//)
2084                   {
2085                     err_am "`$full' should not contain a `..' component";
2086                   }
2087
2088                 # Make sure object is removed by `make mostlyclean'.
2089                 $compile_clean_files{$object} = MOSTLY_CLEAN;
2090                 # If we have a libtool object then we also must remove
2091                 # the ordinary .o.
2092                 if ($object =~ /\.lo$/)
2093                 {
2094                     (my $xobj = $object) =~ s,lo$,\$(OBJEXT),;
2095                     $compile_clean_files{$xobj} = MOSTLY_CLEAN;
2096
2097                     # Remove any libtool object in this directory.
2098                     $libtool_clean_directories{$directory} = 1;
2099                 }
2100
2101                 push (@dep_list, require_build_directory ($directory));
2102
2103                 # If we're generating dependencies, we also want
2104                 # to make sure that the appropriate subdir of the
2105                 # .deps directory is created.
2106                 push (@dep_list,
2107                       require_build_directory ($directory . '/$(DEPDIR)'))
2108                   unless option 'no-dependencies';
2109             }
2110
2111             &pretty_print_rule ($object . ':', "\t", @dep_list)
2112                 if scalar @dep_list > 0;
2113         }
2114
2115         # Transform .o or $o file into .P file (for automatic
2116         # dependency code).
2117         # Properly flatten multiple adjacent slashes, as Solaris 10 make
2118         # might fail over them in an include statement.
2119         # Leading double slashes may be special, as per Posix, so deal
2120         # with them carefully.
2121         if ($lang && $lang->autodep ne 'no')
2122         {
2123             my $depfile = $object;
2124             $depfile =~ s/\.([^.]*)$/.P$1/;
2125             $depfile =~ s/\$\(OBJEXT\)$/o/;
2126             my $maybe_extra_leading_slash = '';
2127             $maybe_extra_leading_slash = '/' if $depfile =~ m,^//[^/],;
2128             $depfile =~ s,/+,/,g;
2129             my $basename = basename ($depfile);
2130             # This might make $dirname empty, but we account for that below.
2131             (my $dirname = dirname ($depfile)) =~ s/\/*$//;
2132             $dirname = $maybe_extra_leading_slash . $dirname;
2133             $dep_files{$dirname . '/$(DEPDIR)/' . $basename} = 1;
2134         }
2135     }
2136
2137     return @result;
2138 }
2139
2140
2141 # $LINKER
2142 # define_objects_from_sources ($VAR, $OBJVAR, $NODEFINE, $ONE_FILE,
2143 #                              $OBJ, $PARENT, $TOPPARENT, $WHERE, %TRANSFORM)
2144 # ---------------------------------------------------------------------------
2145 # Define an _OBJECTS variable for a _SOURCES variable (or subvariable)
2146 #
2147 # Arguments are:
2148 #   $VAR is the name of the _SOURCES variable
2149 #   $OBJVAR is the name of the _OBJECTS variable if known (otherwise
2150 #     it will be generated and returned).
2151 #   $NODEFINE is a boolean: if true, $OBJVAR will not be defined (but
2152 #     work done to determine the linker will be).
2153 #   $ONE_FILE is the canonical (transformed) name of object to build
2154 #   $OBJ is the object extension (i.e. either `.o' or `.lo').
2155 #   $TOPPARENT is the _SOURCES variable being processed.
2156 #   $WHERE context into which this definition is done
2157 #   %TRANSFORM extra arguments to pass to file_contents when producing
2158 #     rules
2159 #
2160 # Result is a pair ($LINKER, $OBJVAR):
2161 #    $LINKER is a boolean, true if a linker is needed to deal with the objects
2162 sub define_objects_from_sources ($$$$$$$%)
2163 {
2164   my ($var, $objvar, $nodefine, $one_file,
2165       $obj, $topparent, $where, %transform) = @_;
2166
2167   my $needlinker = "";
2168
2169   transform_variable_recursively
2170     ($var, $objvar, 'am__objects', $nodefine, $where,
2171      # The transform code to run on each filename.
2172      sub {
2173        my ($subvar, $val, $cond, $full_cond) = @_;
2174        my @trans = handle_single_transform ($subvar, $topparent,
2175                                             $one_file, $obj, $val,
2176                                             %transform);
2177        $needlinker = "true" if @trans;
2178        return @trans;
2179      });
2180
2181   return $needlinker;
2182 }
2183
2184
2185 # handle_source_transform ($CANON_TARGET, $TARGET, $OBJEXT, $WHERE, %TRANSFORM)
2186 # -----------------------------------------------------------------------------
2187 # Handle SOURCE->OBJECT transform for one program or library.
2188 # Arguments are:
2189 #   canonical (transformed) name of target to build
2190 #   actual target of object to build
2191 #   object extension (i.e., either `.o' or `$o')
2192 #   location of the source variable
2193 #   extra arguments to pass to file_contents when producing rules
2194 # Return the name of the linker variable that must be used.
2195 # Empty return means just use `LINK'.
2196 sub handle_source_transform ($$$$%)
2197 {
2198     # one_file is canonical name.  unxformed is given name.  obj is
2199     # object extension.
2200     my ($one_file, $unxformed, $obj, $where, %transform) = @_;
2201
2202     my $linker = '';
2203
2204     # No point in continuing if _OBJECTS is defined.
2205     return if reject_var ($one_file . '_OBJECTS',
2206                           $one_file . '_OBJECTS should not be defined');
2207
2208     my %used_pfx = ();
2209     my $needlinker;
2210     %linkers_used = ();
2211     foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
2212                         'dist_EXTRA_', 'nodist_EXTRA_')
2213     {
2214         my $varname = $prefix . $one_file . "_SOURCES";
2215         my $var = var $varname;
2216         next unless $var;
2217
2218         # We are going to define _OBJECTS variables using the prefix.
2219         # Then we glom them all together.  So we can't use the null
2220         # prefix here as we need it later.
2221         my $xpfx = ($prefix eq '') ? 'am_' : $prefix;
2222
2223         # Keep track of which prefixes we saw.
2224         $used_pfx{$xpfx} = 1
2225           unless $prefix =~ /EXTRA_/;
2226
2227         push @sources, "\$($varname)";
2228         push @dist_sources, shadow_unconditionally ($varname, $where)
2229           unless (option ('no-dist') || $prefix =~ /^nodist_/);
2230
2231         $needlinker |=
2232             define_objects_from_sources ($varname,
2233                                          $xpfx . $one_file . '_OBJECTS',
2234                                          $prefix =~ /EXTRA_/,
2235                                          $one_file, $obj, $varname, $where,
2236                                          DIST_SOURCE => ($prefix !~ /^nodist_/),
2237                                          %transform);
2238     }
2239     if ($needlinker)
2240     {
2241         $linker ||= &resolve_linker (%linkers_used);
2242     }
2243
2244     my @keys = sort keys %used_pfx;
2245     if (scalar @keys == 0)
2246     {
2247         # The default source for libfoo.la is libfoo.c, but for
2248         # backward compatibility we first look at libfoo_la.c,
2249         # if no default source suffix is given.
2250         my $old_default_source = "$one_file.c";
2251         my $ext_var = var ('AM_DEFAULT_SOURCE_EXT');
2252         my $default_source_ext = $ext_var ? variable_value ($ext_var) : '.c';
2253         msg_var ('unsupported', $ext_var, $ext_var->name . " can assume at most one value")
2254           if $default_source_ext =~ /[\t ]/;
2255         (my $default_source = $unxformed) =~ s,(\.[^./\\]*)?$,$default_source_ext,;
2256         if ($old_default_source ne $default_source
2257             && !$ext_var
2258             && (rule $old_default_source
2259                 || rule '$(srcdir)/' . $old_default_source
2260                 || rule '${srcdir}/' . $old_default_source
2261                 || -f $old_default_source))
2262           {
2263             my $loc = $where->clone;
2264             $loc->pop_context;
2265             msg ('obsolete', $loc,
2266                  "the default source for `$unxformed' has been changed "
2267                  . "to `$default_source'.\n(Using `$old_default_source' for "
2268                  . "backward compatibility.)");
2269             $default_source = $old_default_source;
2270           }
2271         # If a rule exists to build this source with a $(srcdir)
2272         # prefix, use that prefix in our variables too.  This is for
2273         # the sake of BSD Make.
2274         if (rule '$(srcdir)/' . $default_source
2275             || rule '${srcdir}/' . $default_source)
2276           {
2277             $default_source = '$(srcdir)/' . $default_source;
2278           }
2279
2280         &define_variable ($one_file . "_SOURCES", $default_source, $where);
2281         push (@sources, $default_source);
2282         push (@dist_sources, $default_source);
2283
2284         %linkers_used = ();
2285         my (@result) =
2286           handle_single_transform ($one_file . '_SOURCES',
2287                                    $one_file . '_SOURCES',
2288                                    $one_file, $obj,
2289                                    $default_source, %transform);
2290         $linker ||= &resolve_linker (%linkers_used);
2291         define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @result);
2292     }
2293     else
2294     {
2295         @keys = map { '$(' . $_ . $one_file . '_OBJECTS)' } @keys;
2296         define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @keys);
2297     }
2298
2299     # If we want to use `LINK' we must make sure it is defined.
2300     if ($linker eq '')
2301     {
2302         $need_link = 1;
2303     }
2304
2305     return $linker;
2306 }
2307
2308
2309 # handle_lib_objects ($XNAME, $VAR)
2310 # ---------------------------------
2311 # Special-case ALLOCA and LIBOBJS substitutions in _LDADD or _LIBADD variables.
2312 # Also, generate _DEPENDENCIES variable if appropriate.
2313 # Arguments are:
2314 #   transformed name of object being built, or empty string if no object
2315 #   name of _LDADD/_LIBADD-type variable to examine
2316 # Returns 1 if LIBOBJS seen, 0 otherwise.
2317 sub handle_lib_objects
2318 {
2319   my ($xname, $varname) = @_;
2320
2321   my $var = var ($varname);
2322   prog_error "handle_lib_objects: `$varname' undefined"
2323     unless $var;
2324   prog_error "handle_lib_objects: unexpected variable name `$varname'"
2325     unless $varname =~ /^(.*)(?:LIB|LD)ADD$/;
2326   my $prefix = $1 || 'AM_';
2327
2328   my $seen_libobjs = 0;
2329   my $flagvar = 0;
2330
2331   transform_variable_recursively
2332     ($varname, $xname . '_DEPENDENCIES', 'am__DEPENDENCIES',
2333      ! $xname, INTERNAL,
2334      # Transformation function, run on each filename.
2335      sub {
2336        my ($subvar, $val, $cond, $full_cond) = @_;
2337
2338        if ($val =~ /^-/)
2339          {
2340            # Skip -lfoo and -Ldir silently; these are explicitly allowed.
2341            if ($val !~ /^-[lL]/ &&
2342                # Skip -dlopen and -dlpreopen; these are explicitly allowed
2343                # for Libtool libraries or programs.  (Actually we are a bit
2344                # lax here since this code also applies to non-libtool
2345                # libraries or programs, for which -dlopen and -dlopreopen
2346                # are pure nonsense.  Diagnosing this doesn't seem very
2347                # important: the developer will quickly get complaints from
2348                # the linker.)
2349                $val !~ /^-dl(?:pre)?open$/ &&
2350                # Only get this error once.
2351                ! $flagvar)
2352              {
2353                $flagvar = 1;
2354                # FIXME: should display a stack of nested variables
2355                # as context when $var != $subvar.
2356                err_var ($var, "linker flags such as `$val' belong in "
2357                         . "`${prefix}LDFLAGS");
2358              }
2359            return ();
2360          }
2361        elsif ($val !~ /^\@.*\@$/)
2362          {
2363            # Assume we have a file of some sort, and output it into the
2364            # dependency variable.  Autoconf substitutions are not output;
2365            # rarely is a new dependency substituted into e.g. foo_LDADD
2366            # -- but bad things (e.g. -lX11) are routinely substituted.
2367            # Note that LIBOBJS and ALLOCA are exceptions to this rule,
2368            # and handled specially below.
2369            return $val;
2370          }
2371        elsif ($val =~ /^\@(LT)?LIBOBJS\@$/)
2372          {
2373            handle_LIBOBJS ($subvar, $cond, $1);
2374            $seen_libobjs = 1;
2375            return $val;
2376          }
2377        elsif ($val =~ /^\@(LT)?ALLOCA\@$/)
2378          {
2379            handle_ALLOCA ($subvar, $cond, $1);
2380            return $val;
2381          }
2382        else
2383          {
2384            return ();
2385          }
2386      });
2387
2388   return $seen_libobjs;
2389 }
2390
2391 # handle_LIBOBJS_or_ALLOCA ($VAR)
2392 # -------------------------------
2393 # Definitions common to LIBOBJS and ALLOCA.
2394 # VAR should be one of LIBOBJS, LTLIBOBJS, ALLOCA, or LTALLOCA.
2395 sub handle_LIBOBJS_or_ALLOCA ($)
2396 {
2397   my ($var) = @_;
2398
2399   my $dir = '';
2400
2401   # If LIBOBJS files must be built in another directory we have
2402   # to define LIBOBJDIR and ensure the files get cleaned.
2403   # Otherwise LIBOBJDIR can be left undefined, and the cleaning
2404   # is achieved by `rm -f *.$(OBJEXT)' in compile.am.
2405   if ($config_libobj_dir
2406       && $relative_dir ne $config_libobj_dir)
2407     {
2408       if (option 'subdir-objects')
2409         {
2410           # In the top-level Makefile we do not use $(top_builddir), because
2411           # we are already there, and since the targets are built without
2412           # a $(top_builddir), it helps BSD Make to match them with
2413           # dependencies.
2414           $dir = "$config_libobj_dir/" if $config_libobj_dir ne '.';
2415           $dir = "$topsrcdir/$dir" if $relative_dir ne '.';
2416           define_variable ('LIBOBJDIR', "$dir", INTERNAL);
2417           $clean_files{"\$($var)"} = MOSTLY_CLEAN;
2418           # If LTLIBOBJS is used, we must also clear LIBOBJS (which might
2419           # be created by libtool as a side-effect of creating LTLIBOBJS).
2420           $clean_files{"\$($var)"} = MOSTLY_CLEAN if $var =~ s/^LT//;
2421         }
2422       else
2423         {
2424           error ("`\$($var)' cannot be used outside `$config_libobj_dir' if"
2425                  . " `subdir-objects' is not set");
2426         }
2427     }
2428
2429   return $dir;
2430 }
2431
2432 sub handle_LIBOBJS ($$$)
2433 {
2434   my ($var, $cond, $lt) = @_;
2435   my $myobjext = $lt ? 'lo' : 'o';
2436   $lt ||= '';
2437
2438   $var->requires_variables ("\@${lt}LIBOBJS\@ used", $lt . 'LIBOBJS')
2439     if ! keys %libsources;
2440
2441   my $dir = handle_LIBOBJS_or_ALLOCA "${lt}LIBOBJS";
2442
2443   foreach my $iter (keys %libsources)
2444     {
2445       if ($iter =~ /\.[cly]$/)
2446         {
2447           &saw_extension ($&);
2448           &saw_extension ('.c');
2449         }
2450
2451       if ($iter =~ /\.h$/)
2452         {
2453           require_libsource_with_macro ($cond, $var, FOREIGN, $iter);
2454         }
2455       elsif ($iter ne 'alloca.c')
2456         {
2457           my $rewrite = $iter;
2458           $rewrite =~ s/\.c$/.P$myobjext/;
2459           $dep_files{$dir . '$(DEPDIR)/' . $rewrite} = 1;
2460           $rewrite = "^" . quotemeta ($iter) . "\$";
2461           # Only require the file if it is not a built source.
2462           my $bs = var ('BUILT_SOURCES');
2463           if (! $bs || ! grep (/$rewrite/, $bs->value_as_list_recursive))
2464             {
2465               require_libsource_with_macro ($cond, $var, FOREIGN, $iter);
2466             }
2467         }
2468     }
2469 }
2470
2471 sub handle_ALLOCA ($$$)
2472 {
2473   my ($var, $cond, $lt) = @_;
2474   my $myobjext = $lt ? 'lo' : 'o';
2475   $lt ||= '';
2476   my $dir = handle_LIBOBJS_or_ALLOCA "${lt}ALLOCA";
2477
2478   $var->requires_variables ("\@${lt}ALLOCA\@ used", $lt . 'ALLOCA');
2479   $dep_files{$dir . '$(DEPDIR)/alloca.P' . $myobjext} = 1;
2480   require_libsource_with_macro ($cond, $var, FOREIGN, 'alloca.c');
2481   &saw_extension ('.c');
2482 }
2483
2484 # Canonicalize the input parameter
2485 sub canonicalize
2486 {
2487     my ($string) = @_;
2488     $string =~ tr/A-Za-z0-9_\@/_/c;
2489     return $string;
2490 }
2491
2492 # Canonicalize a name, and check to make sure the non-canonical name
2493 # is never used.  Returns canonical name.  Arguments are name and a
2494 # list of suffixes to check for.
2495 sub check_canonical_spelling
2496 {
2497   my ($name, @suffixes) = @_;
2498
2499   my $xname = &canonicalize ($name);
2500   if ($xname ne $name)
2501     {
2502       foreach my $xt (@suffixes)
2503         {
2504           reject_var ("$name$xt", "use `$xname$xt', not `$name$xt'");
2505         }
2506     }
2507
2508   return $xname;
2509 }
2510
2511
2512 # handle_compile ()
2513 # -----------------
2514 # Set up the compile suite.
2515 sub handle_compile ()
2516 {
2517     return
2518       unless $get_object_extension_was_run;
2519
2520     # Boilerplate.
2521     my $default_includes = '';
2522     if (! option 'nostdinc')
2523       {
2524         my @incs = ('-I.', subst ('am__isrc'));
2525
2526         my $var = var 'CONFIG_HEADER';
2527         if ($var)
2528           {
2529             foreach my $hdr (split (' ', $var->variable_value))
2530               {
2531                 push @incs, '-I' . dirname ($hdr);
2532               }
2533           }
2534         # We want `-I. -I$(srcdir)', but the latter -I is redundant
2535         # and unaesthetic in non-VPATH builds.  We use `-I.@am__isrc@`
2536         # instead.  It will be replaced by '-I.' or '-I. -I$(srcdir)'.
2537         # Items in CONFIG_HEADER are never in $(srcdir) so it is safe
2538         # to just put @am__isrc@ right after `-I.', without a space.
2539         ($default_includes = ' ' . uniq (@incs)) =~ s/ @/@/;
2540       }
2541
2542     my (@mostly_rms, @dist_rms);
2543     foreach my $item (sort keys %compile_clean_files)
2544     {
2545         if ($compile_clean_files{$item} == MOSTLY_CLEAN)
2546         {
2547             push (@mostly_rms, "\t-rm -f $item");
2548         }
2549         elsif ($compile_clean_files{$item} == DIST_CLEAN)
2550         {
2551             push (@dist_rms, "\t-rm -f $item");
2552         }
2553         else
2554         {
2555           prog_error 'invalid entry in %compile_clean_files';
2556         }
2557     }
2558
2559     my ($coms, $vars, $rules) =
2560       &file_contents_internal (1, "$libdir/am/compile.am",
2561                                new Automake::Location,
2562                                ('DEFAULT_INCLUDES' => $default_includes,
2563                                 'MOSTLYRMS' => join ("\n", @mostly_rms),
2564                                 'DISTRMS' => join ("\n", @dist_rms)));
2565     $output_vars .= $vars;
2566     $output_rules .= "$coms$rules";
2567
2568     # Check for automatic de-ANSI-fication.
2569     if (option 'ansi2knr')
2570       {
2571         my ($ansi2knr_filename, $ansi2knr_where) = @{option 'ansi2knr'};
2572         my $ansi2knr_dir = '';
2573
2574         require_variables ($ansi2knr_where, "option `ansi2knr' is used",
2575                            TRUE, "ANSI2KNR", "U");
2576
2577         # topdir is where ansi2knr should be.
2578         if ($ansi2knr_filename eq 'ansi2knr')
2579           {
2580             # Only require ansi2knr files if they should appear in
2581             # this directory.
2582             require_file ($ansi2knr_where, FOREIGN,
2583                           'ansi2knr.c', 'ansi2knr.1');
2584
2585             # ansi2knr needs to be built before subdirs, so unshift it
2586             # rather then pushing it.
2587             unshift (@all, '$(ANSI2KNR)');
2588           }
2589         else
2590           {
2591             $ansi2knr_dir = dirname ($ansi2knr_filename);
2592           }
2593
2594         $output_rules .= &file_contents ('ansi2knr',
2595                                          new Automake::Location,
2596                                          'ANSI2KNR-DIR' => $ansi2knr_dir);
2597
2598     }
2599 }
2600
2601 # handle_libtool ()
2602 # -----------------
2603 # Handle libtool rules.
2604 sub handle_libtool
2605 {
2606   return unless var ('LIBTOOL');
2607
2608   # Libtool requires some files, but only at top level.
2609   # (Starting with Libtool 2.0 we do not have to bother.  These
2610   # requirements are done with AC_REQUIRE_AUX_FILE.)
2611   require_conf_file_with_macro (TRUE, 'LIBTOOL', FOREIGN, @libtool_files)
2612     if $relative_dir eq '.' && ! $libtool_new_api;
2613
2614   my @libtool_rms;
2615   foreach my $item (sort keys %libtool_clean_directories)
2616     {
2617       my $dir = ($item eq '.') ? '' : "$item/";
2618       # .libs is for Unix, _libs for DOS.
2619       push (@libtool_rms, "\t-rm -rf ${dir}.libs ${dir}_libs");
2620     }
2621
2622   check_user_variables 'LIBTOOLFLAGS';
2623
2624   # Output the libtool compilation rules.
2625   $output_rules .= &file_contents ('libtool',
2626                                    new Automake::Location,
2627                                    LTRMS => join ("\n", @libtool_rms));
2628 }
2629
2630 # handle_programs ()
2631 # ------------------
2632 # Handle C programs.
2633 sub handle_programs
2634 {
2635   my @proglist = &am_install_var ('progs', 'PROGRAMS',
2636                                   'bin', 'sbin', 'libexec', 'pkglibexec',
2637                                   'noinst', 'check');
2638   return if ! @proglist;
2639
2640   my $seen_global_libobjs =
2641     var ('LDADD') && &handle_lib_objects ('', 'LDADD');
2642
2643   foreach my $pair (@proglist)
2644     {
2645       my ($where, $one_file) = @$pair;
2646
2647       my $seen_libobjs = 0;
2648       my $obj = get_object_extension '.$(OBJEXT)';
2649
2650       $known_programs{$one_file} = $where;
2651
2652       # Canonicalize names and check for misspellings.
2653       my $xname = &check_canonical_spelling ($one_file, '_LDADD', '_LDFLAGS',
2654                                              '_SOURCES', '_OBJECTS',
2655                                              '_DEPENDENCIES');
2656
2657       $where->push_context ("while processing program `$one_file'");
2658       $where->set (INTERNAL->get);
2659
2660       my $linker = &handle_source_transform ($xname, $one_file, $obj, $where,
2661                                              NONLIBTOOL => 1, LIBTOOL => 0);
2662
2663       if (var ($xname . "_LDADD"))
2664         {
2665           $seen_libobjs = &handle_lib_objects ($xname, $xname . '_LDADD');
2666         }
2667       else
2668         {
2669           # User didn't define prog_LDADD override.  So do it.
2670           &define_variable ($xname . '_LDADD', '$(LDADD)', $where);
2671
2672           # This does a bit too much work.  But we need it to
2673           # generate _DEPENDENCIES when appropriate.
2674           if (var ('LDADD'))
2675             {
2676               $seen_libobjs = &handle_lib_objects ($xname, 'LDADD');
2677             }
2678         }
2679
2680       reject_var ($xname . '_LIBADD',
2681                   "use `${xname}_LDADD', not `${xname}_LIBADD'");
2682
2683       set_seen ($xname . '_DEPENDENCIES');
2684       set_seen ($xname . '_LDFLAGS');
2685
2686       # Determine program to use for link.
2687       my($xlink, $vlink) = &define_per_target_linker_variable ($linker, $xname);
2688       $vlink = verbose_flag ($vlink || 'GEN');
2689
2690       # If the resulting program lies into a subdirectory,
2691       # make sure this directory will exist.
2692       my $dirstamp = require_build_directory_maybe ($one_file);
2693
2694       $libtool_clean_directories{dirname ($one_file)} = 1;
2695
2696       $output_rules .= &file_contents ('program',
2697                                        $where,
2698                                        PROGRAM  => $one_file,
2699                                        XPROGRAM => $xname,
2700                                        XLINK    => $xlink,
2701                                        VERBOSE  => $vlink,
2702                                        DIRSTAMP => $dirstamp,
2703                                        EXEEXT   => '$(EXEEXT)');
2704
2705       if ($seen_libobjs || $seen_global_libobjs)
2706         {
2707           if (var ($xname . '_LDADD'))
2708             {
2709               &check_libobjs_sources ($xname, $xname . '_LDADD');
2710             }
2711           elsif (var ('LDADD'))
2712             {
2713               &check_libobjs_sources ($xname, 'LDADD');
2714             }
2715         }
2716     }
2717 }
2718
2719
2720 # handle_libraries ()
2721 # -------------------
2722 # Handle libraries.
2723 sub handle_libraries
2724 {
2725   my @liblist = &am_install_var ('libs', 'LIBRARIES',
2726                                  'lib', 'pkglib', 'noinst', 'check');
2727   return if ! @liblist;
2728
2729   my @prefix = am_primary_prefixes ('LIBRARIES', 0, 'lib', 'pkglib',
2730                                     'noinst', 'check');
2731
2732   if (@prefix)
2733     {
2734       my $var = rvar ($prefix[0] . '_LIBRARIES');
2735       $var->requires_variables ('library used', 'RANLIB');
2736     }
2737
2738   &define_variable ('AR', 'ar', INTERNAL);
2739   &define_variable ('ARFLAGS', 'cru', INTERNAL);
2740   &define_verbose_tagvar ('AR');
2741
2742   foreach my $pair (@liblist)
2743     {
2744       my ($where, $onelib) = @$pair;
2745
2746       my $seen_libobjs = 0;
2747       # Check that the library fits the standard naming convention.
2748       my $bn = basename ($onelib);
2749       if ($bn !~ /^lib.*\.a$/)
2750         {
2751           $bn =~ s/^(?:lib)?(.*?)(?:\.[^.]*)?$/lib$1.a/;
2752           my $suggestion = dirname ($onelib) . "/$bn";
2753           $suggestion =~ s|^\./||g;
2754           msg ('error-gnu/warn', $where,
2755                "`$onelib' is not a standard library name\n"
2756                . "did you mean `$suggestion'?")
2757         }
2758
2759       ($known_libraries{$onelib} = $bn) =~ s/\.a$//;
2760
2761       $where->push_context ("while processing library `$onelib'");
2762       $where->set (INTERNAL->get);
2763
2764       my $obj = get_object_extension '.$(OBJEXT)';
2765
2766       # Canonicalize names and check for misspellings.
2767       my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_SOURCES',
2768                                             '_OBJECTS', '_DEPENDENCIES',
2769                                             '_AR');
2770
2771       if (! var ($xlib . '_AR'))
2772         {
2773           &define_variable ($xlib . '_AR', '$(AR) $(ARFLAGS)', $where);
2774         }
2775
2776       # Generate support for conditional object inclusion in
2777       # libraries.
2778       if (var ($xlib . '_LIBADD'))
2779         {
2780           if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2781             {
2782               $seen_libobjs = 1;
2783             }
2784         }
2785       else
2786         {
2787           &define_variable ($xlib . "_LIBADD", '', $where);
2788         }
2789
2790       reject_var ($xlib . '_LDADD',
2791                   "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
2792
2793       # Make sure we at look at this.
2794       set_seen ($xlib . '_DEPENDENCIES');
2795
2796       &handle_source_transform ($xlib, $onelib, $obj, $where,
2797                                 NONLIBTOOL => 1, LIBTOOL => 0);
2798
2799       # If the resulting library lies into a subdirectory,
2800       # make sure this directory will exist.
2801       my $dirstamp = require_build_directory_maybe ($onelib);
2802       my $verbose = verbose_flag ('AR');
2803       my $silent = silent_flag ();
2804
2805       $output_rules .= &file_contents ('library',
2806                                        $where,
2807                                        VERBOSE  => $verbose,
2808                                        SILENT   => $silent,
2809                                        LIBRARY  => $onelib,
2810                                        XLIBRARY => $xlib,
2811                                        DIRSTAMP => $dirstamp);
2812
2813       if ($seen_libobjs)
2814         {
2815           if (var ($xlib . '_LIBADD'))
2816             {
2817               &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
2818             }
2819         }
2820
2821       if (! $seen_ar)
2822         {
2823           msg ('extra-portability', $where,
2824                "`$onelib': linking libraries using a non-POSIX\n"
2825                . "archiver requires `AM_PROG_AR' in `$configure_ac'")
2826         }
2827     }
2828 }
2829
2830
2831 # handle_ltlibraries ()
2832 # ---------------------
2833 # Handle shared libraries.
2834 sub handle_ltlibraries
2835 {
2836   my @liblist = &am_install_var ('ltlib', 'LTLIBRARIES',
2837                                  'noinst', 'lib', 'pkglib', 'check');
2838   return if ! @liblist;
2839
2840   my @prefix = am_primary_prefixes ('LTLIBRARIES', 0, 'lib', 'pkglib',
2841                                     'noinst', 'check');
2842
2843   if (@prefix)
2844     {
2845       my $var = rvar ($prefix[0] . '_LTLIBRARIES');
2846       $var->requires_variables ('Libtool library used', 'LIBTOOL');
2847     }
2848
2849   my %instdirs = ();
2850   my %instsubdirs = ();
2851   my %instconds = ();
2852   my %liblocations = ();        # Location (in Makefile.am) of each library.
2853
2854   foreach my $key (@prefix)
2855     {
2856       # Get the installation directory of each library.
2857       my $dir = $key;
2858       my $strip_subdir = 1;
2859       if ($dir =~ /^nobase_/)
2860         {
2861           $dir =~ s/^nobase_//;
2862           $strip_subdir = 0;
2863         }
2864       my $var = rvar ($key . '_LTLIBRARIES');
2865
2866       # We reject libraries which are installed in several places
2867       # in the same condition, because we can only specify one
2868       # `-rpath' option.
2869       $var->traverse_recursively
2870         (sub
2871          {
2872            my ($var, $val, $cond, $full_cond) = @_;
2873            my $hcond = $full_cond->human;
2874            my $where = $var->rdef ($cond)->location;
2875            my $ldir = '';
2876            $ldir = '/' . dirname ($val)
2877              if (!$strip_subdir);
2878            # A library cannot be installed in different directories
2879            # in overlapping conditions.
2880            if (exists $instconds{$val})
2881              {
2882                my ($msg, $acond) =
2883                  $instconds{$val}->ambiguous_p ($val, $full_cond);
2884
2885                if ($msg)
2886                  {
2887                    error ($where, $msg, partial => 1);
2888                    my $dirtxt = "installed " . ($strip_subdir ? "in" : "below") . " `$dir'";
2889                    $dirtxt = "built for `$dir'"
2890                      if $dir eq 'EXTRA' || $dir eq 'noinst' || $dir eq 'check';
2891                    my $dircond =
2892                      $full_cond->true ? "" : " in condition $hcond";
2893
2894                    error ($where, "`$val' should be $dirtxt$dircond ...",
2895                           partial => 1);
2896
2897                    my $hacond = $acond->human;
2898                    my $adir = $instdirs{$val}{$acond};
2899                    my $adirtxt = "installed in `$adir'";
2900                    $adirtxt = "built for `$adir'"
2901                      if ($adir eq 'EXTRA' || $adir eq 'noinst'
2902                          || $adir eq 'check');
2903                    my $adircond = $acond->true ? "" : " in condition $hacond";
2904
2905                    my $onlyone = ($dir ne $adir) ?
2906                      ("\nLibtool libraries can be built for only one "
2907                       . "destination.") : "";
2908
2909                    error ($liblocations{$val}{$acond},
2910                           "... and should also be $adirtxt$adircond.$onlyone");
2911                    return;
2912                  }
2913              }
2914            else
2915              {
2916                $instconds{$val} = new Automake::DisjConditions;
2917              }
2918            $instdirs{$val}{$full_cond} = $dir;
2919            $instsubdirs{$val}{$full_cond} = $ldir;
2920            $liblocations{$val}{$full_cond} = $where;
2921            $instconds{$val} = $instconds{$val}->merge ($full_cond);
2922          },
2923          sub
2924          {
2925            return ();
2926          },
2927          skip_ac_subst => 1);
2928     }
2929
2930   foreach my $pair (@liblist)
2931     {
2932       my ($where, $onelib) = @$pair;
2933
2934       my $seen_libobjs = 0;
2935       my $obj = get_object_extension '.lo';
2936
2937       # Canonicalize names and check for misspellings.
2938       my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_LDFLAGS',
2939                                             '_SOURCES', '_OBJECTS',
2940                                             '_DEPENDENCIES');
2941
2942       # Check that the library fits the standard naming convention.
2943       my $libname_rx = '^lib.*\.la';
2944       my $ldvar = var ("${xlib}_LDFLAGS") || var ('AM_LDFLAGS');
2945       my $ldvar2 = var ('LDFLAGS');
2946       if (($ldvar && grep (/-module/, $ldvar->value_as_list_recursive))
2947           || ($ldvar2 && grep (/-module/, $ldvar2->value_as_list_recursive)))
2948         {
2949           # Relax name checking for libtool modules.
2950           $libname_rx = '\.la';
2951         }
2952
2953       my $bn = basename ($onelib);
2954       if ($bn !~ /$libname_rx$/)
2955         {
2956           my $type = 'library';
2957           if ($libname_rx eq '\.la')
2958             {
2959               $bn =~ s/^(lib|)(.*?)(?:\.[^.]*)?$/$1$2.la/;
2960               $type = 'module';
2961             }
2962           else
2963             {
2964               $bn =~ s/^(?:lib)?(.*?)(?:\.[^.]*)?$/lib$1.la/;
2965             }
2966           my $suggestion = dirname ($onelib) . "/$bn";
2967           $suggestion =~ s|^\./||g;
2968           msg ('error-gnu/warn', $where,
2969                "`$onelib' is not a standard libtool $type name\n"
2970                . "did you mean `$suggestion'?")
2971         }
2972
2973       ($known_libraries{$onelib} = $bn) =~ s/\.la$//;
2974
2975       $where->push_context ("while processing Libtool library `$onelib'");
2976       $where->set (INTERNAL->get);
2977
2978       # Make sure we look at these.
2979       set_seen ($xlib . '_LDFLAGS');
2980       set_seen ($xlib . '_DEPENDENCIES');
2981
2982       # Generate support for conditional object inclusion in
2983       # libraries.
2984       if (var ($xlib . '_LIBADD'))
2985         {
2986           if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2987             {
2988               $seen_libobjs = 1;
2989             }
2990         }
2991       else
2992         {
2993           &define_variable ($xlib . "_LIBADD", '', $where);
2994         }
2995
2996       reject_var ("${xlib}_LDADD",
2997                   "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
2998
2999
3000       my $linker = &handle_source_transform ($xlib, $onelib, $obj, $where,
3001                                              NONLIBTOOL => 0, LIBTOOL => 1);
3002
3003       # Determine program to use for link.
3004       my($xlink, $vlink) = &define_per_target_linker_variable ($linker, $xlib);
3005       $vlink = verbose_flag ($vlink || 'GEN');
3006
3007       my $rpathvar = "am_${xlib}_rpath";
3008       my $rpath = "\$($rpathvar)";
3009       foreach my $rcond ($instconds{$onelib}->conds)
3010         {
3011           my $val;
3012           if ($instdirs{$onelib}{$rcond} eq 'EXTRA'
3013               || $instdirs{$onelib}{$rcond} eq 'noinst'
3014               || $instdirs{$onelib}{$rcond} eq 'check')
3015             {
3016               # It's an EXTRA_ library, so we can't specify -rpath,
3017               # because we don't know where the library will end up.
3018               # The user probably knows, but generally speaking automake
3019               # doesn't -- and in fact configure could decide
3020               # dynamically between two different locations.
3021               $val = '';
3022             }
3023           else
3024             {
3025               $val = ('-rpath $(' . $instdirs{$onelib}{$rcond} . 'dir)');
3026               $val .= $instsubdirs{$onelib}{$rcond}
3027                 if defined $instsubdirs{$onelib}{$rcond};
3028             }
3029           if ($rcond->true)
3030             {
3031               # If $rcond is true there is only one condition and
3032               # there is no point defining an helper variable.
3033               $rpath = $val;
3034             }
3035           else
3036             {
3037               define_pretty_variable ($rpathvar, $rcond, INTERNAL, $val);
3038             }
3039         }
3040
3041       # If the resulting library lies into a subdirectory,
3042       # make sure this directory will exist.
3043       my $dirstamp = require_build_directory_maybe ($onelib);
3044
3045       # Remember to cleanup .libs/ in this directory.
3046       my $dirname = dirname $onelib;
3047       $libtool_clean_directories{$dirname} = 1;
3048
3049       $output_rules .= &file_contents ('ltlibrary',
3050                                        $where,
3051                                        LTLIBRARY  => $onelib,
3052                                        XLTLIBRARY => $xlib,
3053                                        RPATH      => $rpath,
3054                                        XLINK      => $xlink,
3055                                        VERBOSE    => $vlink,
3056                                        DIRSTAMP   => $dirstamp);
3057       if ($seen_libobjs)
3058         {
3059           if (var ($xlib . '_LIBADD'))
3060             {
3061               &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
3062             }
3063         }
3064
3065       if (! $seen_ar)
3066         {
3067           msg ('extra-portability', $where,
3068                "`$onelib': linking libtool libraries using a non-POSIX\n"
3069                . "archiver requires `AM_PROG_AR' in `$configure_ac'")
3070         }
3071     }
3072 }
3073
3074 # See if any _SOURCES variable were misspelled.
3075 sub check_typos ()
3076 {
3077   # It is ok if the user sets this particular variable.
3078   set_seen 'AM_LDFLAGS';
3079
3080   foreach my $primary ('SOURCES', 'LIBADD', 'LDADD', 'LDFLAGS', 'DEPENDENCIES')
3081     {
3082       foreach my $var (variables $primary)
3083         {
3084           my $varname = $var->name;
3085           # A configure variable is always legitimate.
3086           next if exists $configure_vars{$varname};
3087
3088           for my $cond ($var->conditions->conds)
3089             {
3090               $varname =~ /^(?:nobase_)?(?:dist_|nodist_)?(.*)_[[:alnum:]]+$/;
3091               msg_var ('syntax', $var, "variable `$varname' is defined but no"
3092                        . " program or\nlibrary has `$1' as canonical name"
3093                        . " (possible typo)")
3094                 unless $var->rdef ($cond)->seen;
3095             }
3096         }
3097     }
3098 }
3099
3100
3101 # Handle scripts.
3102 sub handle_scripts
3103 {
3104     # NOTE we no longer automatically clean SCRIPTS, because it is
3105     # useful to sometimes distribute scripts verbatim.  This happens
3106     # e.g. in Automake itself.
3107     &am_install_var ('-candist', 'scripts', 'SCRIPTS',
3108                      'bin', 'sbin', 'libexec', 'pkgdata',
3109                      'noinst', 'check');
3110 }
3111
3112
3113
3114
3115 ## ------------------------ ##
3116 ## Handling Texinfo files.  ##
3117 ## ------------------------ ##
3118
3119 # ($OUTFILE, $VFILE, @CLEAN_FILES)
3120 # &scan_texinfo_file ($FILENAME)
3121 # ------------------------------
3122 # $OUTFILE     - name of the info file produced by $FILENAME.
3123 # $VFILE       - name of the version.texi file used (undef if none).
3124 # @CLEAN_FILES - list of byproducts (indexes etc.)
3125 sub scan_texinfo_file ($)
3126 {
3127   my ($filename) = @_;
3128
3129   # Some of the following extensions are always created, no matter
3130   # whether indexes are used or not.  Other (like cps, fns, ... pgs)
3131   # are only created when they are used.  We used to scan $FILENAME
3132   # for their use, but that is not enough: they could be used in
3133   # included files.  We can't scan included files because we don't
3134   # know the include path.  Therefore we always erase these files, no
3135   # matter whether they are used or not.
3136   #
3137   # (tmp is only created if an @macro is used and a certain e-TeX
3138   # feature is not available.)
3139   my %clean_suffixes =
3140     map { $_ => 1 } (qw(aux log toc tmp
3141                         cp cps
3142                         fn fns
3143                         ky kys
3144                         vr vrs
3145                         tp tps
3146                         pg pgs)); # grep 'new.*index' texinfo.tex
3147
3148   my $texi = new Automake::XFile "< $filename";
3149   verb "reading $filename";
3150
3151   my ($outfile, $vfile);
3152   while ($_ = $texi->getline)
3153     {
3154       if (/^\@setfilename +(\S+)/)
3155         {
3156           # Honor only the first @setfilename.  (It's possible to have
3157           # more occurrences later if the manual shows examples of how
3158           # to use @setfilename...)
3159           next if $outfile;
3160
3161           $outfile = $1;
3162           if ($outfile =~ /\.([^.]+)$/ && $1 ne 'info')
3163             {
3164               error ("$filename:$.",
3165                      "output `$outfile' has unrecognized extension");
3166               return;
3167             }
3168         }
3169       # A "version.texi" file is actually any file whose name matches
3170       # "vers*.texi".
3171       elsif (/^\@include\s+(vers[^.]*\.texi)\s*$/)
3172         {
3173           $vfile = $1;
3174         }
3175
3176       # Try to find new or unused indexes.
3177
3178       # Creating a new category of index.
3179       elsif (/^\@def(code)?index (\w+)/)
3180         {
3181           $clean_suffixes{$2} = 1;
3182           $clean_suffixes{"$2s"} = 1;
3183         }
3184
3185       # Merging an index into an another.
3186       elsif (/^\@syn(code)?index (\w+) (\w+)/)
3187         {
3188           delete $clean_suffixes{"$2s"};
3189           $clean_suffixes{"$3s"} = 1;
3190         }
3191
3192     }
3193
3194   if (! $outfile)
3195     {
3196       err_am "`$filename' missing \@setfilename";
3197       return;
3198     }
3199
3200   my $infobase = basename ($filename);
3201   $infobase =~ s/\.te?xi(nfo)?$//;
3202   return ($outfile, $vfile,
3203           map { "$infobase.$_" } (sort keys %clean_suffixes));
3204 }
3205
3206
3207 # ($DIRSTAMP, @CLEAN_FILES)
3208 # output_texinfo_build_rules ($SOURCE, $DEST, $INSRC, @DEPENDENCIES)
3209 # ------------------------------------------------------------------
3210 # SOURCE - the source Texinfo file
3211 # DEST - the destination Info file
3212 # INSRC - whether DEST should be built in the source tree
3213 # DEPENDENCIES - known dependencies
3214 sub output_texinfo_build_rules ($$$@)
3215 {
3216   my ($source, $dest, $insrc, @deps) = @_;
3217
3218   # Split `a.texi' into `a' and `.texi'.
3219   my ($spfx, $ssfx) = ($source =~ /^(.*?)(\.[^.]*)?$/);
3220   my ($dpfx, $dsfx) = ($dest =~ /^(.*?)(\.[^.]*)?$/);
3221
3222   $ssfx ||= "";
3223   $dsfx ||= "";
3224
3225   # We can output two kinds of rules: the "generic" rules use Make
3226   # suffix rules and are appropriate when $source and $dest do not lie
3227   # in a sub-directory; the "specific" rules are needed in the other
3228   # case.
3229   #
3230   # The former are output only once (this is not really apparent here,
3231   # but just remember that some logic deeper in Automake will not
3232   # output the same rule twice); while the later need to be output for
3233   # each Texinfo source.
3234   my $generic;
3235   my $makeinfoflags;
3236   my $sdir = dirname $source;
3237   if ($sdir eq '.' && dirname ($dest) eq '.')
3238     {
3239       $generic = 1;
3240       $makeinfoflags = '-I $(srcdir)';
3241     }
3242   else
3243     {
3244       $generic = 0;
3245       $makeinfoflags = "-I $sdir -I \$(srcdir)/$sdir";
3246     }
3247
3248   # A directory can contain two kinds of info files: some built in the
3249   # source tree, and some built in the build tree.  The rules are
3250   # different in each case.  However we cannot output two different
3251   # set of generic rules.  Because in-source builds are more usual, we
3252   # use generic rules in this case and fall back to "specific" rules
3253   # for build-dir builds.  (It should not be a problem to invert this
3254   # if needed.)
3255   $generic = 0 unless $insrc;
3256
3257   # We cannot use a suffix rule to build info files with an empty
3258   # extension.  Otherwise we would output a single suffix inference
3259   # rule, with separate dependencies, as in
3260   #
3261   #    .texi:
3262   #             $(MAKEINFO) ...
3263   #    foo.info: foo.texi
3264   #
3265   # which confuse Solaris make.  (See the Autoconf manual for
3266   # details.)  Therefore we use a specific rule in this case.  This
3267   # applies to info files only (dvi and pdf files always have an
3268   # extension).
3269   my $generic_info = ($generic && $dsfx) ? 1 : 0;
3270
3271   # If the resulting file lie into a subdirectory,
3272   # make sure this directory will exist.
3273   my $dirstamp = require_build_directory_maybe ($dest);
3274
3275   my $dipfx = ($insrc ? '$(srcdir)/' : '') . $dpfx;
3276
3277   $output_rules .= file_contents ('texibuild',
3278                                   new Automake::Location,
3279                                   DEPS             => "@deps",
3280                                   DEST_PREFIX      => $dpfx,
3281                                   DEST_INFO_PREFIX => $dipfx,
3282                                   DEST_SUFFIX      => $dsfx,
3283                                   DIRSTAMP         => $dirstamp,
3284                                   GENERIC          => $generic,
3285                                   GENERIC_INFO     => $generic_info,
3286                                   INSRC            => $insrc,
3287                                   MAKEINFOFLAGS    => $makeinfoflags,
3288                                   SOURCE           => ($generic
3289                                                        ? '$<' : $source),
3290                                   SOURCE_INFO      => ($generic_info
3291                                                        ? '$<' : $source),
3292                                   SOURCE_REAL      => $source,
3293                                   SOURCE_SUFFIX    => $ssfx,
3294                                   );
3295   return ($dirstamp, "$dpfx.dvi", "$dpfx.pdf", "$dpfx.ps", "$dpfx.html");
3296 }
3297
3298
3299 # ($MOSTLYCLEAN, $TEXICLEAN, $MAINTCLEAN)
3300 # handle_texinfo_helper ($info_texinfos)
3301 # --------------------------------------
3302 # Handle all Texinfo source; helper for handle_texinfo.
3303 sub handle_texinfo_helper ($)
3304 {
3305   my ($info_texinfos) = @_;
3306   my (@infobase, @info_deps_list, @texi_deps);
3307   my %versions;
3308   my $done = 0;
3309   my (@mostly_cleans, @texi_cleans, @maint_cleans) = ('', '', '');
3310
3311   # Build a regex matching user-cleaned files.
3312   my $d = var 'DISTCLEANFILES';
3313   my $c = var 'CLEANFILES';
3314   my @f = ();
3315   push @f, $d->value_as_list_recursive (inner_expand => 1) if $d;
3316   push @f, $c->value_as_list_recursive (inner_expand => 1) if $c;
3317   @f = map { s|[^A-Za-z_0-9*\[\]\-]|\\$&|g; s|\*|[^/]*|g; $_; } @f;
3318   my $user_cleaned_files = '^(?:' . join ('|', @f) . ')$';
3319
3320   foreach my $texi
3321       ($info_texinfos->value_as_list_recursive (inner_expand => 1))
3322     {
3323       my $infobase = $texi;
3324       $infobase =~ s/\.(txi|texinfo|texi)$//;
3325
3326       if ($infobase eq $texi)
3327         {
3328           # FIXME: report line number.
3329           err_am "texinfo file `$texi' has unrecognized extension";
3330           next;
3331         }
3332
3333       push @infobase, $infobase;
3334
3335       # If 'version.texi' is referenced by input file, then include
3336       # automatic versioning capability.
3337       my ($out_file, $vtexi, @clean_files) =
3338         scan_texinfo_file ("$relative_dir/$texi")
3339         or next;
3340       push (@mostly_cleans, @clean_files);
3341
3342       # If the Texinfo source is in a subdirectory, create the
3343       # resulting info in this subdirectory.  If it is in the current
3344       # directory, try hard to not prefix "./" because it breaks the
3345       # generic rules.
3346       my $outdir = dirname ($texi) . '/';
3347       $outdir = "" if $outdir eq './';
3348       $out_file =  $outdir . $out_file;
3349
3350       # Until Automake 1.6.3, .info files were built in the
3351       # source tree.  This was an obstacle to the support of
3352       # non-distributed .info files, and non-distributed .texi
3353       # files.
3354       #
3355       # * Non-distributed .texi files is important in some packages
3356       #   where .texi files are built at make time, probably using
3357       #   other binaries built in the package itself, maybe using
3358       #   tools or information found on the build host.  Because
3359       #   these files are not distributed they are always rebuilt
3360       #   at make time; they should therefore not lie in the source
3361       #   directory.  One plan was to support this using
3362       #   nodist_info_TEXINFOS or something similar.  (Doing this
3363       #   requires some sanity checks.  For instance Automake should
3364       #   not allow:
3365       #      dist_info_TEXINFOS = foo.texi
3366       #      nodist_foo_TEXINFOS = included.texi
3367       #   because a distributed file should never depend on a
3368       #   non-distributed file.)
3369       #
3370       # * If .texi files are not distributed, then .info files should
3371       #   not be distributed either.  There are also cases where one
3372       #   wants to distribute .texi files, but does not want to
3373       #   distribute the .info files.  For instance the Texinfo package
3374       #   distributes the tool used to build these files; it would
3375       #   be a waste of space to distribute them.  It's not clear
3376       #   which syntax we should use to indicate that .info files should
3377       #   not be distributed.  Akim Demaille suggested that eventually
3378       #   we switch to a new syntax:
3379       #   |  Maybe we should take some inspiration from what's already
3380       #   |  done in the rest of Automake.  Maybe there is too much
3381       #   |  syntactic sugar here, and you want
3382       #   |     nodist_INFO = bar.info
3383       #   |     dist_bar_info_SOURCES = bar.texi
3384       #   |     bar_texi_DEPENDENCIES = foo.texi
3385       #   |  with a bit of magic to have bar.info represent the whole
3386       #   |  bar*info set.  That's a lot more verbose that the current
3387       #   |  situation, but it is # not new, hence the user has less
3388       #   |  to learn.
3389       #   |
3390       #   |  But there is still too much room for meaningless specs:
3391       #   |     nodist_INFO = bar.info
3392       #   |     dist_bar_info_SOURCES = bar.texi
3393       #   |     dist_PS = bar.ps something-written-by-hand.ps
3394       #   |     nodist_bar_ps_SOURCES = bar.texi
3395       #   |     bar_texi_DEPENDENCIES = foo.texi
3396       #   |  here bar.texi is dist_ in line 2, and nodist_ in 4.
3397       #
3398       # Back to the point, it should be clear that in order to support
3399       # non-distributed .info files, we need to build them in the
3400       # build tree, not in the source tree (non-distributed .texi
3401       # files are less of a problem, because we do not output build
3402       # rules for them).  In Automake 1.7 .info build rules have been
3403       # largely cleaned up so that .info files get always build in the
3404       # build tree, even when distributed.  The idea was that
3405       #   (1) if during a VPATH build the .info file was found to be
3406       #       absent or out-of-date (in the source tree or in the
3407       #       build tree), Make would rebuild it in the build tree.
3408       #       If an up-to-date source-tree of the .info file existed,
3409       #       make would not rebuild it in the build tree.
3410       #   (2) having two copies of .info files, one in the source tree
3411       #       and one (newer) in the build tree is not a problem
3412       #       because `make dist' always pick files in the build tree
3413       #       first.
3414       # However it turned out the be a bad idea for several reasons:
3415       #   * Tru64, OpenBSD, and FreeBSD (not NetBSD) Make do not behave
3416       #     like GNU Make on point (1) above.  These implementations
3417       #     of Make would always rebuild .info files in the build
3418       #     tree, even if such files were up to date in the source
3419       #     tree.  Consequently, it was impossible to perform a VPATH
3420       #     build of a package containing Texinfo files using these
3421       #     Make implementations.
3422       #     (Refer to the Autoconf Manual, section "Limitation of
3423       #     Make", paragraph "VPATH", item "target lookup", for
3424       #     an account of the differences between these
3425       #     implementations.)
3426       #   * The GNU Coding Standards require these files to be built
3427       #     in the source-tree (when they are distributed, that is).
3428       #   * Keeping a fresher copy of distributed files in the
3429       #     build tree can be annoying during development because
3430       #     - if the files is kept under CVS, you really want it
3431       #       to be updated in the source tree
3432       #     - it is confusing that `make distclean' does not erase
3433       #       all files in the build tree.
3434       #
3435       # Consequently, starting with Automake 1.8, .info files are
3436       # built in the source tree again.  Because we still plan to
3437       # support non-distributed .info files at some point, we
3438       # have a single variable ($INSRC) that controls whether
3439       # the current .info file must be built in the source tree
3440       # or in the build tree.  Actually this variable is switched
3441       # off for .info files that appear to be cleaned; this is
3442       # for backward compatibility with package such as Texinfo,
3443       # which do things like
3444       #   info_TEXINFOS = texinfo.txi info-stnd.texi info.texi
3445       #   DISTCLEANFILES = texinfo texinfo-* info*.info*
3446       #   # Do not create info files for distribution.
3447       #   dist-info:
3448       # in order not to distribute .info files.
3449       my $insrc = ($out_file =~ $user_cleaned_files) ? 0 : 1;
3450
3451       my $soutdir = '$(srcdir)/' . $outdir;
3452       $outdir = $soutdir if $insrc;
3453
3454       # If user specified file_TEXINFOS, then use that as explicit
3455       # dependency list.
3456       @texi_deps = ();
3457       push (@texi_deps, "$soutdir$vtexi") if $vtexi;
3458
3459       my $canonical = canonicalize ($infobase);
3460       if (var ($canonical . "_TEXINFOS"))
3461         {
3462           push (@texi_deps, '$(' . $canonical . '_TEXINFOS)');
3463           push_dist_common ('$(' . $canonical . '_TEXINFOS)');
3464         }
3465
3466       my ($dirstamp, @cfiles) =
3467         output_texinfo_build_rules ($texi, $out_file, $insrc, @texi_deps);
3468       push (@texi_cleans, @cfiles);
3469
3470       push (@info_deps_list, $out_file);
3471
3472       # If a vers*.texi file is needed, emit the rule.
3473       if ($vtexi)
3474         {
3475           err_am ("`$vtexi', included in `$texi', "
3476                   . "also included in `$versions{$vtexi}'")
3477             if defined $versions{$vtexi};
3478           $versions{$vtexi} = $texi;
3479
3480           # We number the stamp-vti files.  This is doable since the
3481           # actual names don't matter much.  We only number starting
3482           # with the second one, so that the common case looks nice.
3483           my $vti = ($done ? $done : 'vti');
3484           ++$done;
3485
3486           # This is ugly, but it is our historical practice.
3487           if ($config_aux_dir_set_in_configure_ac)
3488             {
3489               require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
3490                                             'mdate-sh');
3491             }
3492           else
3493             {
3494               require_file_with_macro (TRUE, 'info_TEXINFOS',
3495                                        FOREIGN, 'mdate-sh');
3496             }
3497
3498           my $conf_dir;
3499           if ($config_aux_dir_set_in_configure_ac)
3500             {
3501               $conf_dir = "$am_config_aux_dir/";
3502             }
3503           else
3504             {
3505               $conf_dir = '$(srcdir)/';
3506             }
3507           $output_rules .= file_contents ('texi-vers',
3508                                           new Automake::Location,
3509                                           TEXI     => $texi,
3510                                           VTI      => $vti,
3511                                           STAMPVTI => "${soutdir}stamp-$vti",
3512                                           VTEXI    => "$soutdir$vtexi",
3513                                           MDDIR    => $conf_dir,
3514                                           DIRSTAMP => $dirstamp);
3515         }
3516     }
3517
3518   # Handle location of texinfo.tex.
3519   my $need_texi_file = 0;
3520   my $texinfodir;
3521   if (var ('TEXINFO_TEX'))
3522     {
3523       # The user defined TEXINFO_TEX so assume he knows what he is
3524       # doing.
3525       $texinfodir = ('$(srcdir)/'
3526                      . dirname (variable_value ('TEXINFO_TEX')));
3527     }
3528   elsif (option 'cygnus')
3529     {
3530       $texinfodir = '$(top_srcdir)/../texinfo';
3531       define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
3532     }
3533   elsif ($config_aux_dir_set_in_configure_ac)
3534     {
3535       $texinfodir = $am_config_aux_dir;
3536       define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
3537       $need_texi_file = 2; # so that we require_conf_file later
3538     }
3539   else
3540     {
3541       $texinfodir = '$(srcdir)';
3542       $need_texi_file = 1;
3543     }
3544   define_variable ('am__TEXINFO_TEX_DIR', $texinfodir, INTERNAL);
3545
3546   push (@dist_targets, 'dist-info');
3547
3548   if (! option 'no-installinfo')
3549     {
3550       # Make sure documentation is made and installed first.  Use
3551       # $(INFO_DEPS), not 'info', because otherwise recursive makes
3552       # get run twice during "make all".
3553       unshift (@all, '$(INFO_DEPS)');
3554     }
3555
3556   define_files_variable ("DVIS", @infobase, 'dvi', INTERNAL);
3557   define_files_variable ("PDFS", @infobase, 'pdf', INTERNAL);
3558   define_files_variable ("PSS", @infobase, 'ps', INTERNAL);
3559   define_files_variable ("HTMLS", @infobase, 'html', INTERNAL);
3560
3561   # This next isn't strictly needed now -- the places that look here
3562   # could easily be changed to look in info_TEXINFOS.  But this is
3563   # probably better, in case noinst_TEXINFOS is ever supported.
3564   define_variable ("TEXINFOS", variable_value ('info_TEXINFOS'), INTERNAL);
3565
3566   # Do some error checking.  Note that this file is not required
3567   # when in Cygnus mode; instead we defined TEXINFO_TEX explicitly
3568   # up above.
3569   if ($need_texi_file && ! option 'no-texinfo.tex')
3570     {
3571       if ($need_texi_file > 1)
3572         {
3573           require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
3574                                         'texinfo.tex');
3575         }
3576       else
3577         {
3578           require_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
3579                                    'texinfo.tex');
3580         }
3581     }
3582
3583   return (makefile_wrap ("", "\t  ", @mostly_cleans),
3584           makefile_wrap ("", "\t  ", @texi_cleans),
3585           makefile_wrap ("", "\t  ", @maint_cleans));
3586 }
3587
3588
3589 # handle_texinfo ()
3590 # -----------------
3591 # Handle all Texinfo source.
3592 sub handle_texinfo ()
3593 {
3594   reject_var 'TEXINFOS', "`TEXINFOS' is an anachronism; use `info_TEXINFOS'";
3595   # FIXME: I think this is an obsolete future feature name.
3596   reject_var 'html_TEXINFOS', "HTML generation not yet supported";
3597
3598   my $info_texinfos = var ('info_TEXINFOS');
3599   my ($mostlyclean, $clean, $maintclean) = ('', '', '');
3600   if ($info_texinfos)
3601     {
3602       ($mostlyclean, $clean, $maintclean) = handle_texinfo_helper ($info_texinfos);
3603       chomp $mostlyclean;
3604       chomp $clean;
3605       chomp $maintclean;
3606     }
3607
3608   $output_rules .=  file_contents ('texinfos',
3609                                    new Automake::Location,
3610                                    MOSTLYCLEAN   => $mostlyclean,
3611                                    TEXICLEAN     => $clean,
3612                                    MAINTCLEAN    => $maintclean,
3613                                    'LOCAL-TEXIS' => !!$info_texinfos);
3614 }
3615
3616
3617 # Handle any man pages.
3618 sub handle_man_pages
3619 {
3620   reject_var 'MANS', "`MANS' is an anachronism; use `man_MANS'";
3621
3622   # Find all the sections in use.  We do this by first looking for
3623   # "standard" sections, and then looking for any additional
3624   # sections used in man_MANS.
3625   my (%sections, %notrans_sections, %trans_sections,
3626       %notrans_vars, %trans_vars, %notrans_sect_vars, %trans_sect_vars);
3627   # We handle nodist_ for uniformity.  man pages aren't distributed
3628   # by default so it isn't actually very important.
3629   foreach my $npfx ('', 'notrans_')
3630     {
3631       foreach my $pfx ('', 'dist_', 'nodist_')
3632         {
3633           # Add more sections as needed.
3634           foreach my $section ('0'..'9', 'n', 'l')
3635             {
3636               my $varname = $npfx . $pfx . 'man' . $section . '_MANS';
3637               if (var ($varname))
3638                 {
3639                   $sections{$section} = 1;
3640                   $varname = '$(' . $varname . ')';
3641                   if ($npfx eq 'notrans_')
3642                     {
3643                       $notrans_sections{$section} = 1;
3644                       $notrans_sect_vars{$varname} = 1;
3645                     }
3646                   else
3647                     {
3648                       $trans_sections{$section} = 1;
3649                       $trans_sect_vars{$varname} = 1;
3650                     }
3651
3652                   &push_dist_common ($varname)
3653                     if $pfx eq 'dist_';
3654                 }
3655             }
3656
3657           my $varname = $npfx . $pfx . 'man_MANS';
3658           my $var = var ($varname);
3659           if ($var)
3660             {
3661               foreach ($var->value_as_list_recursive)
3662                 {
3663                   # A page like `foo.1c' goes into man1dir.
3664                   if (/\.([0-9a-z])([a-z]*)$/)
3665                     {
3666                       $sections{$1} = 1;
3667                       if ($npfx eq 'notrans_')
3668                         {
3669                           $notrans_sections{$1} = 1;
3670                         }
3671                       else
3672                         {
3673                           $trans_sections{$1} = 1;
3674                         }
3675                     }
3676                 }
3677
3678               $varname = '$(' . $varname . ')';
3679               if ($npfx eq 'notrans_')
3680                 {
3681                   $notrans_vars{$varname} = 1;
3682                 }
3683               else
3684                 {
3685                   $trans_vars{$varname} = 1;
3686                 }
3687               &push_dist_common ($varname)
3688                 if $pfx eq 'dist_';
3689             }
3690         }
3691     }
3692
3693   return unless %sections;
3694
3695   my @unsorted_deps;
3696
3697   # Build section independent variables.
3698   my $have_notrans = %notrans_vars;
3699   my @notrans_list = sort keys %notrans_vars;
3700   my $have_trans = %trans_vars;
3701   my @trans_list = sort keys %trans_vars;
3702
3703   # Now for each section, generate an install and uninstall rule.
3704   # Sort sections so output is deterministic.
3705   foreach my $section (sort keys %sections)
3706     {
3707       # Build section dependent variables.
3708       my $notrans_mans = $have_notrans || exists $notrans_sections{$section};
3709       my $trans_mans = $have_trans || exists $trans_sections{$section};
3710       my (%notrans_this_sect, %trans_this_sect);
3711       my $expr = 'man' . $section . '_MANS';
3712       foreach my $varname (keys %notrans_sect_vars)
3713         {
3714           if ($varname =~ /$expr/)
3715             {
3716               $notrans_this_sect{$varname} = 1;
3717             }
3718         }
3719       foreach my $varname (keys %trans_sect_vars)
3720         {
3721           if ($varname =~ /$expr/)
3722             {
3723               $trans_this_sect{$varname} = 1;
3724             }
3725         }
3726       my @notrans_sect_list = sort keys %notrans_this_sect;
3727       my @trans_sect_list = sort keys %trans_this_sect;
3728       @unsorted_deps = (keys %notrans_vars, keys %trans_vars,
3729                         keys %notrans_this_sect, keys %trans_this_sect);
3730       my @deps = sort @unsorted_deps;
3731       $output_rules .= &file_contents ('mans',
3732                                        new Automake::Location,
3733                                        SECTION           => $section,
3734                                        DEPS              => "@deps",
3735                                        NOTRANS_MANS      => $notrans_mans,
3736                                        NOTRANS_SECT_LIST => "@notrans_sect_list",
3737                                        HAVE_NOTRANS      => $have_notrans,
3738                                        NOTRANS_LIST      => "@notrans_list",
3739                                        TRANS_MANS        => $trans_mans,
3740                                        TRANS_SECT_LIST   => "@trans_sect_list",
3741                                        HAVE_TRANS        => $have_trans,
3742                                        TRANS_LIST        => "@trans_list");
3743     }
3744
3745   @unsorted_deps  = (keys %notrans_vars, keys %trans_vars,
3746                      keys %notrans_sect_vars, keys %trans_sect_vars);
3747   my @mans = sort @unsorted_deps;
3748   $output_vars .= file_contents ('mans-vars',
3749                                  new Automake::Location,
3750                                  MANS => "@mans");
3751
3752   push (@all, '$(MANS)')
3753     unless option 'no-installman';
3754 }
3755
3756 # Handle DATA variables.
3757 sub handle_data
3758 {
3759     &am_install_var ('-noextra', '-candist', 'data', 'DATA',
3760                      'data', 'dataroot', 'doc', 'dvi', 'html', 'pdf',
3761                      'ps', 'sysconf', 'sharedstate', 'localstate',
3762                      'pkgdata', 'lisp', 'noinst', 'check');
3763 }
3764
3765 # Handle TAGS.
3766 sub handle_tags
3767 {
3768     my @tag_deps = ();
3769     my @ctag_deps = ();
3770     if (var ('SUBDIRS'))
3771     {
3772         $output_rules .= ("tags-recursive:\n"
3773                           . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3774                           # Never fail here if a subdir fails; it
3775                           # isn't important.
3776                           . "\t  test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir"
3777                           . " && \$(MAKE) \$(AM_MAKEFLAGS) tags); \\\n"
3778                           . "\tdone\n");
3779         push (@tag_deps, 'tags-recursive');
3780         &depend ('.PHONY', 'tags-recursive');
3781         &depend ('.MAKE', 'tags-recursive');
3782
3783         $output_rules .= ("ctags-recursive:\n"
3784                           . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3785                           # Never fail here if a subdir fails; it
3786                           # isn't important.
3787                           . "\t  test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir"
3788                           . " && \$(MAKE) \$(AM_MAKEFLAGS) ctags); \\\n"
3789                           . "\tdone\n");
3790         push (@ctag_deps, 'ctags-recursive');
3791         &depend ('.PHONY', 'ctags-recursive');
3792         &depend ('.MAKE', 'ctags-recursive');
3793     }
3794
3795     if (&saw_sources_p (1)
3796         || var ('ETAGS_ARGS')
3797         || @tag_deps)
3798     {
3799         my @config;
3800         foreach my $spec (@config_headers)
3801         {
3802             my ($out, @ins) = split_config_file_spec ($spec);
3803             foreach my $in (@ins)
3804               {
3805                 # If the config header source is in this directory,
3806                 # require it.
3807                 push @config, basename ($in)
3808                   if $relative_dir eq dirname ($in);
3809               }
3810         }
3811         $output_rules .= &file_contents ('tags',
3812                                          new Automake::Location,
3813                                          CONFIG    => "@config",
3814                                          TAGSDIRS  => "@tag_deps",
3815                                          CTAGSDIRS => "@ctag_deps");
3816
3817         set_seen 'TAGS_DEPENDENCIES';
3818     }
3819     elsif (reject_var ('TAGS_DEPENDENCIES',
3820                        "doesn't make sense to define `TAGS_DEPENDENCIES'"
3821                        . "without\nsources or `ETAGS_ARGS'"))
3822     {
3823     }
3824     else
3825     {
3826         # Every Makefile must define some sort of TAGS rule.
3827         # Otherwise, it would be possible for a top-level "make TAGS"
3828         # to fail because some subdirectory failed.
3829         $output_rules .= "tags: TAGS\nTAGS:\n\n";
3830         # Ditto ctags.
3831         $output_rules .= "ctags: CTAGS\nCTAGS:\n\n";
3832     }
3833 }
3834
3835 # Handle multilib support.
3836 sub handle_multilib
3837 {
3838   if ($seen_multilib && $relative_dir eq '.')
3839     {
3840       $output_rules .= &file_contents ('multilib', new Automake::Location);
3841       push (@all, 'all-multi');
3842     }
3843 }
3844
3845
3846 # user_phony_rule ($NAME)
3847 # -----------------------
3848 # Return false if rule $NAME does not exist.  Otherwise,
3849 # declare it as phony, complete its definition (in case it is
3850 # conditional), and return its Automake::Rule instance.
3851 sub user_phony_rule ($)
3852 {
3853   my ($name) = @_;
3854   my $rule = rule $name;
3855   if ($rule)
3856     {
3857       depend ('.PHONY', $name);
3858       # Define $NAME in all condition where it is not already defined,
3859       # so that it is always OK to depend on $NAME.
3860       for my $c ($rule->not_always_defined_in_cond (TRUE)->conds)
3861         {
3862           Automake::Rule::define ($name, 'internal', RULE_AUTOMAKE,
3863                                   $c, INTERNAL);
3864           $output_rules .= $c->subst_string . "$name:\n";
3865         }
3866     }
3867   return $rule;
3868 }
3869
3870
3871 # $BOOLEAN
3872 # &for_dist_common ($A, $B)
3873 # -------------------------
3874 # Subroutine for &handle_dist: sort files to dist.
3875 #
3876 # We put README first because it then becomes easier to make a
3877 # Usenet-compliant shar file (in these, README must be first).
3878 #
3879 # FIXME: do more ordering of files here.
3880 sub for_dist_common
3881 {
3882     return 0
3883         if $a eq $b;
3884     return -1
3885         if $a eq 'README';
3886     return 1
3887         if $b eq 'README';
3888     return $a cmp $b;
3889 }
3890
3891 # handle_dist
3892 # -----------
3893 # Handle 'dist' target.
3894 sub handle_dist ()
3895 {
3896   # Substitutions for distdir.am
3897   my %transform;
3898
3899   # Define DIST_SUBDIRS.  This must always be done, regardless of the
3900   # no-dist setting: target like `distclean' or `maintainer-clean' use it.
3901   my $subdirs = var ('SUBDIRS');
3902   if ($subdirs)
3903     {
3904       # If SUBDIRS is conditionally defined, then set DIST_SUBDIRS
3905       # to all possible directories, and use it.  If DIST_SUBDIRS is
3906       # defined, just use it.
3907
3908       # Note that we check DIST_SUBDIRS first on purpose, so that
3909       # we don't call has_conditional_contents for now reason.
3910       # (In the past one project used so many conditional subdirectories
3911       # that calling has_conditional_contents on SUBDIRS caused
3912       # automake to grow to 150Mb -- this should not happen with
3913       # the current implementation of has_conditional_contents,
3914       # but it's more efficient to avoid the call anyway.)
3915       if (var ('DIST_SUBDIRS'))
3916         {
3917         }
3918       elsif ($subdirs->has_conditional_contents)
3919         {
3920           define_pretty_variable
3921             ('DIST_SUBDIRS', TRUE, INTERNAL,
3922              uniq ($subdirs->value_as_list_recursive));
3923         }
3924       else
3925         {
3926           # We always define this because that is what `distclean'
3927           # wants.
3928           define_pretty_variable ('DIST_SUBDIRS', TRUE, INTERNAL,
3929                                   '$(SUBDIRS)');
3930         }
3931     }
3932
3933   # The remaining definitions are only required when a dist target is used.
3934   return if option 'no-dist';
3935
3936   # At least one of the archive formats must be enabled.
3937   if ($relative_dir eq '.')
3938     {
3939       my $archive_defined = option 'no-dist-gzip' ? 0 : 1;
3940       $archive_defined ||=
3941         grep { option "dist-$_" } qw(shar zip tarZ bzip2 lzip lzma xz);
3942       error (option 'no-dist-gzip',
3943              "no-dist-gzip specified but no dist-* specified, "
3944              . "at least one archive format must be enabled")
3945         unless $archive_defined;
3946     }
3947
3948   # Look for common files that should be included in distribution.
3949   # If the aux dir is set, and it does not have a Makefile.am, then
3950   # we check for these files there as well.
3951   my $check_aux = 0;
3952   if ($relative_dir eq '.'
3953       && $config_aux_dir_set_in_configure_ac)
3954     {
3955       if (! &is_make_dir ($config_aux_dir))
3956         {
3957           $check_aux = 1;
3958         }
3959     }
3960   foreach my $cfile (@common_files)
3961     {
3962       if (dir_has_case_matching_file ($relative_dir, $cfile)
3963           # The file might be absent, but if it can be built it's ok.
3964           || rule $cfile)
3965         {
3966           &push_dist_common ($cfile);
3967         }
3968
3969       # Don't use `elsif' here because a file might meaningfully
3970       # appear in both directories.
3971       if ($check_aux && dir_has_case_matching_file ($config_aux_dir, $cfile))
3972         {
3973           &push_dist_common ("$config_aux_dir/$cfile")
3974         }
3975     }
3976
3977   # We might copy elements from $configure_dist_common to
3978   # %dist_common if we think we need to.  If the file appears in our
3979   # directory, we would have discovered it already, so we don't
3980   # check that.  But if the file is in a subdir without a Makefile,
3981   # we want to distribute it here if we are doing `.'.  Ugly!
3982   if ($relative_dir eq '.')
3983     {
3984       foreach my $file (split (' ' , $configure_dist_common))
3985         {
3986           push_dist_common ($file)
3987             unless is_make_dir (dirname ($file));
3988         }
3989     }
3990
3991   # Files to distributed.  Don't use ->value_as_list_recursive
3992   # as it recursively expands `$(dist_pkgdata_DATA)' etc.
3993   my @dist_common = split (' ', rvar ('DIST_COMMON')->variable_value);
3994   @dist_common = uniq (sort for_dist_common (@dist_common));
3995   variable_delete 'DIST_COMMON';
3996   define_pretty_variable ('DIST_COMMON', TRUE, INTERNAL, @dist_common);
3997
3998   # Now that we've processed DIST_COMMON, disallow further attempts
3999   # to set it.
4000   $handle_dist_run = 1;
4001
4002   # Scan EXTRA_DIST to see if we need to distribute anything from a
4003   # subdir.  If so, add it to the list.  I didn't want to do this
4004   # originally, but there were so many requests that I finally
4005   # relented.
4006   my $extra_dist = var ('EXTRA_DIST');
4007
4008   $transform{'DISTCHECK-HOOK'} = !! rule 'distcheck-hook';
4009   $transform{'GETTEXT'} = $seen_gettext && !$seen_gettext_external;
4010
4011   # If the target `dist-hook' exists, make sure it is run.  This
4012   # allows users to do random weird things to the distribution
4013   # before it is packaged up.
4014   push (@dist_targets, 'dist-hook')
4015     if user_phony_rule 'dist-hook';
4016   $transform{'DIST-TARGETS'} = join (' ', @dist_targets);
4017
4018   my $flm = option ('filename-length-max');
4019   my $filename_filter = $flm ? '.' x $flm->[1] : '';
4020
4021   $output_rules .= &file_contents ('distdir',
4022                                    new Automake::Location,
4023                                    %transform,
4024                                    FILENAME_FILTER => $filename_filter);
4025 }
4026
4027
4028 # check_directory ($NAME, $WHERE)
4029 # -------------------------------
4030 # Ensure $NAME is a directory, and that it uses a sane name.
4031 # Use $WHERE as a location in the diagnostic, if any.
4032 sub check_directory ($$)
4033 {
4034   my ($dir, $where) = @_;
4035
4036   error $where, "required directory $relative_dir/$dir does not exist"
4037     unless -d "$relative_dir/$dir";
4038
4039   # If an `obj/' directory exists, BSD make will enter it before
4040   # reading `Makefile'.  Hence the `Makefile' in the current directory
4041   # will not be read.
4042   #
4043   #  % cat Makefile
4044   #  all:
4045   #          echo Hello
4046   #  % cat obj/Makefile
4047   #  all:
4048   #          echo World
4049   #  % make      # GNU make
4050   #  echo Hello
4051   #  Hello
4052   #  % pmake     # BSD make
4053   #  echo World
4054   #  World
4055   msg ('portability', $where,
4056        "naming a subdirectory `obj' causes troubles with BSD make")
4057     if $dir eq 'obj';
4058
4059   # `aux' is probably the most important of the following forbidden name,
4060   # since it's tempting to use it as an AC_CONFIG_AUX_DIR.
4061   msg ('portability', $where,
4062        "name `$dir' is reserved on W32 and DOS platforms")
4063     if grep (/^\Q$dir\E$/i, qw/aux lpt1 lpt2 lpt3 com1 com2 com3 com4 con prn/);
4064 }
4065
4066 # check_directories_in_var ($VARIABLE)
4067 # ------------------------------------
4068 # Recursively check all items in variables $VARIABLE as directories
4069 sub check_directories_in_var ($)
4070 {
4071   my ($var) = @_;
4072   $var->traverse_recursively
4073     (sub
4074      {
4075        my ($var, $val, $cond, $full_cond) = @_;
4076        check_directory ($val, $var->rdef ($cond)->location);
4077        return ();
4078      },
4079      undef,
4080      skip_ac_subst => 1);
4081 }
4082
4083 # &handle_subdirs ()
4084 # ------------------
4085 # Handle subdirectories.
4086 sub handle_subdirs ()
4087 {
4088   my $subdirs = var ('SUBDIRS');
4089   return
4090     unless $subdirs;
4091
4092   check_directories_in_var $subdirs;
4093
4094   my $dsubdirs = var ('DIST_SUBDIRS');
4095   check_directories_in_var $dsubdirs
4096     if $dsubdirs;
4097
4098   $output_rules .= &file_contents ('subdirs', new Automake::Location);
4099   rvar ('RECURSIVE_TARGETS')->rdef (TRUE)->{'pretty'} = VAR_SORTED; # Gross!
4100 }
4101
4102
4103 # ($REGEN, @DEPENDENCIES)
4104 # &scan_aclocal_m4
4105 # ----------------
4106 # If aclocal.m4 creation is automated, return the list of its dependencies.
4107 sub scan_aclocal_m4 ()
4108 {
4109   my $regen_aclocal = 0;
4110
4111   set_seen 'CONFIG_STATUS_DEPENDENCIES';
4112   set_seen 'CONFIGURE_DEPENDENCIES';
4113
4114   if (-f 'aclocal.m4')
4115     {
4116       &define_variable ("ACLOCAL_M4", '$(top_srcdir)/aclocal.m4', INTERNAL);
4117
4118       my $aclocal = new Automake::XFile "< aclocal.m4";
4119       my $line = $aclocal->getline;
4120       $regen_aclocal = $line =~ 'generated automatically by aclocal';
4121     }
4122
4123   my @ac_deps = ();
4124
4125   if (set_seen ('ACLOCAL_M4_SOURCES'))
4126     {
4127       push (@ac_deps, '$(ACLOCAL_M4_SOURCES)');
4128       msg_var ('obsolete', 'ACLOCAL_M4_SOURCES',
4129                "`ACLOCAL_M4_SOURCES' is obsolete.\n"
4130                . "It should be safe to simply remove it.");
4131     }
4132
4133   # Note that it might be possible that aclocal.m4 doesn't exist but
4134   # should be auto-generated.  This case probably isn't very
4135   # important.
4136
4137   return ($regen_aclocal, @ac_deps);
4138 }
4139
4140
4141 # Helper function for substitute_ac_subst_variables.
4142 sub substitute_ac_subst_variables_worker($)
4143 {
4144   my ($token) = @_;
4145   return "\@$token\@" if var $token;
4146   return "\${$token\}";
4147 }
4148
4149 # substitute_ac_subst_variables ($TEXT)
4150 # -------------------------------------
4151 # Replace any occurrence of ${FOO} in $TEXT by @FOO@ if FOO is an AC_SUBST
4152 # variable.
4153 sub substitute_ac_subst_variables ($)
4154 {
4155   my ($text) = @_;
4156   $text =~ s/\${([^ \t=:+{}]+)}/&substitute_ac_subst_variables_worker ($1)/ge;
4157   return $text;
4158 }
4159
4160 # @DEPENDENCIES
4161 # &prepend_srcdir (@INPUTS)
4162 # -------------------------
4163 # Prepend $(srcdir) or $(top_srcdir) to all @INPUTS.  The idea is that
4164 # if an input file has a directory part the same as the current
4165 # directory, then the directory part is simply replaced by $(srcdir).
4166 # But if the directory part is different, then $(top_srcdir) is
4167 # prepended.
4168 sub prepend_srcdir (@)
4169 {
4170   my (@inputs) = @_;
4171   my @newinputs;
4172
4173   foreach my $single (@inputs)
4174     {
4175       if (dirname ($single) eq $relative_dir)
4176         {
4177           push (@newinputs, '$(srcdir)/' . basename ($single));
4178         }
4179       else
4180         {
4181           push (@newinputs, '$(top_srcdir)/' . $single);
4182         }
4183     }
4184   return @newinputs;
4185 }
4186
4187 # @DEPENDENCIES
4188 # rewrite_inputs_into_dependencies ($OUTPUT, @INPUTS)
4189 # ---------------------------------------------------
4190 # Compute a list of dependencies appropriate for the rebuild
4191 # rule of
4192 #   AC_CONFIG_FILES($OUTPUT:$INPUT[0]:$INPUTS[1]:...)
4193 # Also distribute $INPUTs which are not built by another AC_CONFIG_FOOs.
4194 sub rewrite_inputs_into_dependencies ($@)
4195 {
4196   my ($file, @inputs) = @_;
4197   my @res = ();
4198
4199   for my $i (@inputs)
4200     {
4201       # We cannot create dependencies on shell variables.
4202       next if (substitute_ac_subst_variables $i) =~ /\$/;
4203
4204       if (exists $ac_config_files_location{$i} && $i ne $file)
4205         {
4206           my $di = dirname $i;
4207           if ($di eq $relative_dir)
4208             {
4209               $i = basename $i;
4210             }
4211           # In the top-level Makefile we do not use $(top_builddir), because
4212           # we are already there, and since the targets are built without
4213           # a $(top_builddir), it helps BSD Make to match them with
4214           # dependencies.
4215           elsif ($relative_dir ne '.')
4216             {
4217               $i = '$(top_builddir)/' . $i;
4218             }
4219         }
4220       else
4221         {
4222           msg ('error', $ac_config_files_location{$file},
4223                "required file `$i' not found")
4224             unless $i =~ /\$/ || exists $output_files{$i} || -f $i;
4225           ($i) = prepend_srcdir ($i);
4226           push_dist_common ($i);
4227         }
4228       push @res, $i;
4229     }
4230   return @res;
4231 }
4232
4233
4234
4235 # &handle_configure ($MAKEFILE_AM, $MAKEFILE_IN, $MAKEFILE, @INPUTS)
4236 # ------------------------------------------------------------------
4237 # Handle remaking and configure stuff.
4238 # We need the name of the input file, to do proper remaking rules.
4239 sub handle_configure ($$$@)
4240 {
4241   my ($makefile_am, $makefile_in, $makefile, @inputs) = @_;
4242
4243   prog_error 'empty @inputs'
4244     unless @inputs;
4245
4246   my ($rel_makefile_am, $rel_makefile_in) = prepend_srcdir ($makefile_am,
4247                                                             $makefile_in);
4248   my $rel_makefile = basename $makefile;
4249
4250   my $colon_infile = ':' . join (':', @inputs);
4251   $colon_infile = '' if $colon_infile eq ":$makefile.in";
4252   my @rewritten = rewrite_inputs_into_dependencies ($makefile, @inputs);
4253   my ($regen_aclocal_m4, @aclocal_m4_deps) = scan_aclocal_m4;
4254   define_pretty_variable ('am__aclocal_m4_deps', TRUE, INTERNAL,
4255                           @configure_deps, @aclocal_m4_deps,
4256                           '$(top_srcdir)/' . $configure_ac);
4257   my @configuredeps = ('$(am__aclocal_m4_deps)', '$(CONFIGURE_DEPENDENCIES)');
4258   push @configuredeps, '$(ACLOCAL_M4)' if -f 'aclocal.m4';
4259   define_pretty_variable ('am__configure_deps', TRUE, INTERNAL,
4260                           @configuredeps);
4261
4262   my $automake_options = '--' . (global_option 'cygnus' ? 'cygnus' : $strictness_name)
4263                          . (global_option 'no-dependencies' ? ' --ignore-deps' : '');
4264
4265   $output_rules .= file_contents
4266     ('configure',
4267      new Automake::Location,
4268      MAKEFILE              => $rel_makefile,
4269      'MAKEFILE-DEPS'       => "@rewritten",
4270      'CONFIG-MAKEFILE'     => ($relative_dir eq '.') ? '$@' : '$(subdir)/$@',
4271      'MAKEFILE-IN'         => $rel_makefile_in,
4272      'HAVE-MAKEFILE-IN-DEPS' => (@include_stack > 0),
4273      'MAKEFILE-IN-DEPS'    => "@include_stack",
4274      'MAKEFILE-AM'         => $rel_makefile_am,
4275      'AUTOMAKE-OPTIONS'    => $automake_options,
4276      'MAKEFILE-AM-SOURCES' => "$makefile$colon_infile",
4277      'REGEN-ACLOCAL-M4'    => $regen_aclocal_m4,
4278      VERBOSE               => verbose_flag ('GEN'));
4279
4280   if ($relative_dir eq '.')
4281     {
4282       &push_dist_common ('acconfig.h')
4283         if -f 'acconfig.h';
4284     }
4285
4286   # If we have a configure header, require it.
4287   my $hdr_index = 0;
4288   my @distclean_config;
4289   foreach my $spec (@config_headers)
4290     {
4291       $hdr_index += 1;
4292       # $CONFIG_H_PATH: config.h from top level.
4293       my ($config_h_path, @ins) = split_config_file_spec ($spec);
4294       my $config_h_dir = dirname ($config_h_path);
4295
4296       # If the header is in the current directory we want to build
4297       # the header here.  Otherwise, if we're at the topmost
4298       # directory and the header's directory doesn't have a
4299       # Makefile, then we also want to build the header.
4300       if ($relative_dir eq $config_h_dir
4301           || ($relative_dir eq '.' && ! &is_make_dir ($config_h_dir)))
4302         {
4303           my ($cn_sans_dir, $stamp_dir);
4304           if ($relative_dir eq $config_h_dir)
4305             {
4306               $cn_sans_dir = basename ($config_h_path);
4307               $stamp_dir = '';
4308             }
4309           else
4310             {
4311               $cn_sans_dir = $config_h_path;
4312               if ($config_h_dir eq '.')
4313                 {
4314                   $stamp_dir = '';
4315                 }
4316               else
4317                 {
4318                   $stamp_dir = $config_h_dir . '/';
4319                 }
4320             }
4321
4322           # This will also distribute all inputs.
4323           @ins = rewrite_inputs_into_dependencies ($config_h_path, @ins);
4324
4325           # Cannot define rebuild rules for filenames with shell variables.
4326           next if (substitute_ac_subst_variables $config_h_path) =~ /\$/;
4327
4328           # Header defined in this directory.
4329           my @files;
4330           if (-f $config_h_path . '.top')
4331             {
4332               push (@files, "$cn_sans_dir.top");
4333             }
4334           if (-f $config_h_path . '.bot')
4335             {
4336               push (@files, "$cn_sans_dir.bot");
4337             }
4338
4339           push_dist_common (@files);
4340
4341           # For now, acconfig.h can only appear in the top srcdir.
4342           if (-f 'acconfig.h')
4343             {
4344               push (@files, '$(top_srcdir)/acconfig.h');
4345             }
4346
4347           my $stamp = "${stamp_dir}stamp-h${hdr_index}";
4348           $output_rules .=
4349             file_contents ('remake-hdr',
4350                            new Automake::Location,
4351                            FILES            => "@files",
4352                            CONFIG_H         => $cn_sans_dir,
4353                            CONFIG_HIN       => $ins[0],
4354                            CONFIG_H_DEPS    => "@ins",
4355                            CONFIG_H_PATH    => $config_h_path,
4356                            STAMP            => "$stamp");
4357
4358           push @distclean_config, $cn_sans_dir, $stamp;
4359         }
4360     }
4361
4362   $output_rules .= file_contents ('clean-hdr',
4363                                   new Automake::Location,
4364                                   FILES => "@distclean_config")
4365     if @distclean_config;
4366
4367   # Distribute and define mkinstalldirs only if it is already present
4368   # in the package, for backward compatibility (some people may still
4369   # use $(mkinstalldirs)).
4370   my $mkidpath = "$config_aux_dir/mkinstalldirs";
4371   if (-f $mkidpath)
4372     {
4373       # Use require_file so that any existing script gets updated
4374       # by --force-missing.
4375       require_conf_file ($mkidpath, FOREIGN, 'mkinstalldirs');
4376       define_variable ('mkinstalldirs',
4377                        "\$(SHELL) $am_config_aux_dir/mkinstalldirs", INTERNAL);
4378     }
4379   else
4380     {
4381       # Use $(install_sh), not $(MKDIR_P) because the latter requires
4382       # at least one argument, and $(mkinstalldirs) used to work
4383       # even without arguments (e.g. $(mkinstalldirs) $(conditional_dir)).
4384       define_variable ('mkinstalldirs', '$(install_sh) -d', INTERNAL);
4385     }
4386
4387   reject_var ('CONFIG_HEADER',
4388               "`CONFIG_HEADER' is an anachronism; now determined "
4389               . "automatically\nfrom `$configure_ac'");
4390
4391   my @config_h;
4392   foreach my $spec (@config_headers)
4393     {
4394       my ($out, @ins) = split_config_file_spec ($spec);
4395       # Generate CONFIG_HEADER define.
4396       if ($relative_dir eq dirname ($out))
4397         {
4398           push @config_h, basename ($out);
4399         }
4400       else
4401         {
4402           push @config_h, "\$(top_builddir)/$out";
4403         }
4404     }
4405   define_variable ("CONFIG_HEADER", "@config_h", INTERNAL)
4406     if @config_h;
4407
4408   # Now look for other files in this directory which must be remade
4409   # by config.status, and generate rules for them.
4410   my @actual_other_files = ();
4411   # These get cleaned only in a VPATH build.
4412   my @actual_other_vpath_files = ();
4413   foreach my $lfile (@other_input_files)
4414     {
4415       my $file;
4416       my @inputs;
4417       if ($lfile =~ /^([^:]*):(.*)$/)
4418         {
4419           # This is the ":" syntax of AC_OUTPUT.
4420           $file = $1;
4421           @inputs = split (':', $2);
4422         }
4423       else
4424         {
4425           # Normal usage.
4426           $file = $lfile;
4427           @inputs = $file . '.in';
4428         }
4429
4430       # Automake files should not be stored in here, but in %MAKE_LIST.
4431       prog_error ("$lfile in \@other_input_files\n"
4432                   . "\@other_input_files = (@other_input_files)")
4433         if -f $file . '.am';
4434
4435       my $local = basename ($file);
4436
4437       # We skip files that aren't in this directory.  However, if
4438       # the file's directory does not have a Makefile, and we are
4439       # currently doing `.', then we create a rule to rebuild the
4440       # file in the subdir.
4441       my $fd = dirname ($file);
4442       if ($fd ne $relative_dir)
4443         {
4444           if ($relative_dir eq '.' && ! &is_make_dir ($fd))
4445             {
4446               $local = $file;
4447             }
4448           else
4449             {
4450               next;
4451             }
4452         }
4453
4454       my @rewritten_inputs = rewrite_inputs_into_dependencies ($file, @inputs);
4455
4456       # Cannot output rules for shell variables.
4457       next if (substitute_ac_subst_variables $local) =~ /\$/;
4458
4459       my $condstr = '';
4460       my $cond = $ac_config_files_condition{$lfile};
4461       if (defined $cond)
4462         {
4463           $condstr = $cond->subst_string;
4464           Automake::Rule::define ($local, $configure_ac, RULE_AUTOMAKE, $cond,
4465                                   $ac_config_files_location{$file});
4466         }
4467       $output_rules .= ($condstr . $local . ': '
4468                         . '$(top_builddir)/config.status '
4469                         . "@rewritten_inputs\n"
4470                         . $condstr . "\t"
4471                         . 'cd $(top_builddir) && '
4472                         . '$(SHELL) ./config.status '
4473                         . ($relative_dir eq '.' ? '' : '$(subdir)/')
4474                         . '$@'
4475                         . "\n");
4476       push (@actual_other_files, $local);
4477     }
4478
4479   # For links we should clean destinations and distribute sources.
4480   foreach my $spec (@config_links)
4481     {
4482       my ($link, $file) = split /:/, $spec;
4483       # Some people do AC_CONFIG_LINKS($computed).  We only handle
4484       # the DEST:SRC form.
4485       next unless $file;
4486       my $where = $ac_config_files_location{$link};
4487
4488       # Skip destinations that contain shell variables.
4489       if ((substitute_ac_subst_variables $link) !~ /\$/)
4490         {
4491           # We skip links that aren't in this directory.  However, if
4492           # the link's directory does not have a Makefile, and we are
4493           # currently doing `.', then we add the link to CONFIG_CLEAN_FILES
4494           # in `.'s Makefile.in.
4495           my $local = basename ($link);
4496           my $fd = dirname ($link);
4497           if ($fd ne $relative_dir)
4498             {
4499               if ($relative_dir eq '.' && ! &is_make_dir ($fd))
4500                 {
4501                   $local = $link;
4502                 }
4503               else
4504                 {
4505                   $local = undef;
4506                 }
4507             }
4508           if ($file ne $link)
4509             {
4510               push @actual_other_files, $local if $local;
4511             }
4512           else
4513             {
4514               push @actual_other_vpath_files, $local if $local;
4515             }
4516         }
4517
4518       # Do not process sources that contain shell variables.
4519       if ((substitute_ac_subst_variables $file) !~ /\$/)
4520         {
4521           my $fd = dirname ($file);
4522
4523           # We distribute files that are in this directory.
4524           # At the top-level (`.') we also distribute files whose
4525           # directory does not have a Makefile.
4526           if (($fd eq $relative_dir)
4527               || ($relative_dir eq '.' && ! &is_make_dir ($fd)))
4528             {
4529               # The following will distribute $file as a side-effect when
4530               # it is appropriate (i.e., when $file is not already an output).
4531               # We do not need the result, just the side-effect.
4532               rewrite_inputs_into_dependencies ($link, $file);
4533             }
4534         }
4535     }
4536
4537   # These files get removed by "make distclean".
4538   define_pretty_variable ('CONFIG_CLEAN_FILES', TRUE, INTERNAL,
4539                           @actual_other_files);
4540   define_pretty_variable ('CONFIG_CLEAN_VPATH_FILES', TRUE, INTERNAL,
4541                           @actual_other_vpath_files);
4542 }
4543
4544 # Handle C headers.
4545 sub handle_headers
4546 {
4547     my @r = &am_install_var ('-defaultdist', 'header', 'HEADERS', 'include',
4548                              'oldinclude', 'pkginclude',
4549                              'noinst', 'check');
4550     foreach (@r)
4551     {
4552       next unless $_->[1] =~ /\..*$/;
4553       &saw_extension ($&);
4554     }
4555 }
4556
4557 sub handle_gettext
4558 {
4559   return if ! $seen_gettext || $relative_dir ne '.';
4560
4561   my $subdirs = var 'SUBDIRS';
4562
4563   if (! $subdirs)
4564     {
4565       err_ac "AM_GNU_GETTEXT used but SUBDIRS not defined";
4566       return;
4567     }
4568
4569   # Perform some sanity checks to help users get the right setup.
4570   # We disable these tests when po/ doesn't exist in order not to disallow
4571   # unusual gettext setups.
4572   #
4573   # Bruno Haible:
4574   # | The idea is:
4575   # |
4576   # |  1) If a package doesn't have a directory po/ at top level, it
4577   # |     will likely have multiple po/ directories in subpackages.
4578   # |
4579   # |  2) It is useful to warn for the absence of intl/ if AM_GNU_GETTEXT
4580   # |     is used without 'external'. It is also useful to warn for the
4581   # |     presence of intl/ if AM_GNU_GETTEXT([external]) is used. Both
4582   # |     warnings apply only to the usual layout of packages, therefore
4583   # |     they should both be disabled if no po/ directory is found at
4584   # |     top level.
4585
4586   if (-d 'po')
4587     {
4588       my @subdirs = $subdirs->value_as_list_recursive;
4589
4590       msg_var ('syntax', $subdirs,
4591                "AM_GNU_GETTEXT used but `po' not in SUBDIRS")
4592         if ! grep ($_ eq 'po', @subdirs);
4593
4594       # intl/ is not required when AM_GNU_GETTEXT is called with the
4595       # `external' option and AM_GNU_GETTEXT_INTL_SUBDIR is not called.
4596       msg_var ('syntax', $subdirs,
4597                "AM_GNU_GETTEXT used but `intl' not in SUBDIRS")
4598         if (! ($seen_gettext_external && ! $seen_gettext_intl)
4599             && ! grep ($_ eq 'intl', @subdirs));
4600
4601       # intl/ should not be used with AM_GNU_GETTEXT([external]), except
4602       # if AM_GNU_GETTEXT_INTL_SUBDIR is called.
4603       msg_var ('syntax', $subdirs,
4604                "`intl' should not be in SUBDIRS when "
4605                . "AM_GNU_GETTEXT([external]) is used")
4606         if ($seen_gettext_external && ! $seen_gettext_intl
4607             && grep ($_ eq 'intl', @subdirs));
4608     }
4609
4610   require_file ($ac_gettext_location, GNU, 'ABOUT-NLS');
4611 }
4612
4613 # Handle footer elements.
4614 sub handle_footer
4615 {
4616     reject_rule ('.SUFFIXES',
4617                  "use variable `SUFFIXES', not target `.SUFFIXES'");
4618
4619     # Note: AIX 4.1 /bin/make will fail if any suffix rule appears
4620     # before .SUFFIXES.  So we make sure that .SUFFIXES appears before
4621     # anything else, by sticking it right after the default: target.
4622     $output_header .= ".SUFFIXES:\n";
4623     my $suffixes = var 'SUFFIXES';
4624     my @suffixes = Automake::Rule::suffixes;
4625     if (@suffixes || $suffixes)
4626     {
4627         # Make sure SUFFIXES has unique elements.  Sort them to ensure
4628         # the output remains consistent.  However, $(SUFFIXES) is
4629         # always at the start of the list, unsorted.  This is done
4630         # because make will choose rules depending on the ordering of
4631         # suffixes, and this lets the user have some control.  Push
4632         # actual suffixes, and not $(SUFFIXES).  Some versions of make
4633         # do not like variable substitutions on the .SUFFIXES line.
4634         my @user_suffixes = ($suffixes
4635                              ? $suffixes->value_as_list_recursive : ());
4636
4637         my %suffixes = map { $_ => 1 } @suffixes;
4638         delete @suffixes{@user_suffixes};
4639
4640         $output_header .= (".SUFFIXES: "
4641                            . join (' ', @user_suffixes, sort keys %suffixes)
4642                            . "\n");
4643     }
4644
4645     $output_trailer .= file_contents ('footer', new Automake::Location);
4646 }
4647
4648
4649 # Generate `make install' rules.
4650 sub handle_install ()
4651 {
4652   $output_rules .= &file_contents
4653     ('install',
4654      new Automake::Location,
4655      maybe_BUILT_SOURCES => (set_seen ('BUILT_SOURCES')
4656                              ? (" \$(BUILT_SOURCES)\n"
4657                                 . "\t\$(MAKE) \$(AM_MAKEFLAGS)")
4658                              : ''),
4659      'installdirs-local' => (user_phony_rule 'installdirs-local'
4660                              ? ' installdirs-local' : ''),
4661      am__installdirs => variable_value ('am__installdirs') || '');
4662 }
4663
4664
4665 # Deal with all and all-am.
4666 sub handle_all ($)
4667 {
4668     my ($makefile) = @_;
4669
4670     # Output `all-am'.
4671
4672     # Put this at the beginning for the sake of non-GNU makes.  This
4673     # is still wrong if these makes can run parallel jobs.  But it is
4674     # right enough.
4675     unshift (@all, basename ($makefile));
4676
4677     foreach my $spec (@config_headers)
4678       {
4679         my ($out, @ins) = split_config_file_spec ($spec);
4680         push (@all, basename ($out))
4681           if dirname ($out) eq $relative_dir;
4682       }
4683
4684     # Install `all' hooks.
4685     push (@all, "all-local")
4686       if user_phony_rule "all-local";
4687
4688     &pretty_print_rule ("all-am:", "\t\t", @all);
4689     &depend ('.PHONY', 'all-am', 'all');
4690
4691
4692     # Output `all'.
4693
4694     my @local_headers = ();
4695     push @local_headers, '$(BUILT_SOURCES)'
4696       if var ('BUILT_SOURCES');
4697     foreach my $spec (@config_headers)
4698       {
4699         my ($out, @ins) = split_config_file_spec ($spec);
4700         push @local_headers, basename ($out)
4701           if dirname ($out) eq $relative_dir;
4702       }
4703
4704     if (@local_headers)
4705       {
4706         # We need to make sure config.h is built before we recurse.
4707         # We also want to make sure that built sources are built
4708         # before any ordinary `all' targets are run.  We can't do this
4709         # by changing the order of dependencies to the "all" because
4710         # that breaks when using parallel makes.  Instead we handle
4711         # things explicitly.
4712         $output_all .= ("all: @local_headers"
4713                         . "\n\t"
4714                         . '$(MAKE) $(AM_MAKEFLAGS) '
4715                         . (var ('SUBDIRS') ? 'all-recursive' : 'all-am')
4716                         . "\n\n");
4717         depend ('.MAKE', 'all');
4718       }
4719     else
4720       {
4721         $output_all .= "all: " . (var ('SUBDIRS')
4722                                   ? 'all-recursive' : 'all-am') . "\n\n";
4723       }
4724 }
4725
4726
4727 # &do_check_merge_target ()
4728 # -------------------------
4729 # Handle check merge target specially.
4730 sub do_check_merge_target ()
4731 {
4732   # Include user-defined local form of target.
4733   push @check_tests, 'check-local'
4734     if user_phony_rule 'check-local';
4735
4736   # In --cygnus mode, check doesn't depend on all.
4737   if (option 'cygnus')
4738     {
4739       # Just run the local check rules.
4740       pretty_print_rule ('check-am:', "\t\t", @check);
4741     }
4742   else
4743     {
4744       # The check target must depend on the local equivalent of
4745       # `all', to ensure all the primary targets are built.  Then it
4746       # must build the local check rules.
4747       $output_rules .= "check-am: all-am\n";
4748       if (@check)
4749         {
4750           pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t  ",
4751                              @check);
4752           depend ('.MAKE', 'check-am');
4753         }
4754     }
4755   if (@check_tests)
4756     {
4757       pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t  ",
4758                          @check_tests);
4759       depend ('.MAKE', 'check-am');
4760     }
4761
4762   depend '.PHONY', 'check', 'check-am';
4763   # Handle recursion.  We have to honor BUILT_SOURCES like for `all:'.
4764   $output_rules .= ("check: "
4765                     . (var ('BUILT_SOURCES')
4766                        ? "\$(BUILT_SOURCES)\n\t\$(MAKE) \$(AM_MAKEFLAGS) "
4767                        : '')
4768                     . (var ('SUBDIRS') ? 'check-recursive' : 'check-am')
4769                     . "\n");
4770   depend ('.MAKE', 'check')
4771     if var ('BUILT_SOURCES');
4772 }
4773
4774 # handle_clean ($MAKEFILE)
4775 # ------------------------
4776 # Handle all 'clean' targets.
4777 sub handle_clean ($)
4778 {
4779   my ($makefile) = @_;
4780
4781   # Clean the files listed in user variables if they exist.
4782   $clean_files{'$(MOSTLYCLEANFILES)'} = MOSTLY_CLEAN
4783     if var ('MOSTLYCLEANFILES');
4784   $clean_files{'$(CLEANFILES)'} = CLEAN
4785     if var ('CLEANFILES');
4786   $clean_files{'$(DISTCLEANFILES)'} = DIST_CLEAN
4787     if var ('DISTCLEANFILES');
4788   $clean_files{'$(MAINTAINERCLEANFILES)'} = MAINTAINER_CLEAN
4789     if var ('MAINTAINERCLEANFILES');
4790
4791   # Built sources are automatically removed by maintainer-clean.
4792   $clean_files{'$(BUILT_SOURCES)'} = MAINTAINER_CLEAN
4793     if var ('BUILT_SOURCES');
4794
4795   # Compute a list of "rm"s to run for each target.
4796   my %rms = (MOSTLY_CLEAN, [],
4797              CLEAN, [],
4798              DIST_CLEAN, [],
4799              MAINTAINER_CLEAN, []);
4800
4801   foreach my $file (keys %clean_files)
4802     {
4803       my $when = $clean_files{$file};
4804       prog_error 'invalid entry in %clean_files'
4805         unless exists $rms{$when};
4806
4807       my $rm = "rm -f $file";
4808       # If file is a variable, make sure when don't call `rm -f' without args.
4809       $rm ="test -z \"$file\" || $rm"
4810         if ($file =~ /^\s*\$(\(.*\)|\{.*\})\s*$/);
4811
4812       push @{$rms{$when}}, "\t-$rm\n";
4813     }
4814
4815   $output_rules .= &file_contents
4816     ('clean',
4817      new Automake::Location,
4818      MOSTLYCLEAN_RMS      => join ('', sort @{$rms{&MOSTLY_CLEAN}}),
4819      CLEAN_RMS            => join ('', sort @{$rms{&CLEAN}}),
4820      DISTCLEAN_RMS        => join ('', sort @{$rms{&DIST_CLEAN}}),
4821      MAINTAINER_CLEAN_RMS => join ('', sort @{$rms{&MAINTAINER_CLEAN}}),
4822      MAKEFILE             => basename $makefile,
4823      );
4824 }
4825
4826
4827 # &target_cmp ($A, $B)
4828 # --------------------
4829 # Subroutine for &handle_factored_dependencies to let `.PHONY' and
4830 # other `.TARGETS' be last.
4831 sub target_cmp
4832 {
4833   return 0 if $a eq $b;
4834
4835   my $a1 = substr ($a, 0, 1);
4836   my $b1 = substr ($b, 0, 1);
4837   if ($a1 ne $b1)
4838     {
4839       return -1 if $b1 eq '.';
4840       return 1 if $a1 eq '.';
4841     }
4842   return $a cmp $b;
4843 }
4844
4845
4846 # &handle_factored_dependencies ()
4847 # --------------------------------
4848 # Handle everything related to gathered targets.
4849 sub handle_factored_dependencies
4850 {
4851   # Reject bad hooks.
4852   foreach my $utarg ('uninstall-data-local', 'uninstall-data-hook',
4853                      'uninstall-exec-local', 'uninstall-exec-hook',
4854                      'uninstall-dvi-local',
4855                      'uninstall-html-local',
4856                      'uninstall-info-local',
4857                      'uninstall-pdf-local',
4858                      'uninstall-ps-local')
4859     {
4860       my $x = $utarg;
4861       $x =~ s/-.*-/-/;
4862       reject_rule ($utarg, "use `$x', not `$utarg'");
4863     }
4864
4865   reject_rule ('install-local',
4866                "use `install-data-local' or `install-exec-local', "
4867                . "not `install-local'");
4868
4869   reject_rule ('install-hook',
4870                "use `install-data-hook' or `install-exec-hook', "
4871                . "not `install-hook'");
4872
4873   # Install the -local hooks.
4874   foreach (keys %dependencies)
4875     {
4876       # Hooks are installed on the -am targets.
4877       s/-am$// or next;
4878       depend ("$_-am", "$_-local")
4879         if user_phony_rule "$_-local";
4880     }
4881
4882   # Install the -hook hooks.
4883   # FIXME: Why not be as liberal as we are with -local hooks?
4884   foreach ('install-exec', 'install-data', 'uninstall')
4885     {
4886       if (user_phony_rule "$_-hook")
4887         {
4888           depend ('.MAKE', "$_-am");
4889           register_action("$_-am",
4890                           ("\t\@\$(NORMAL_INSTALL)\n"
4891                            . "\t\$(MAKE) \$(AM_MAKEFLAGS) $_-hook"));
4892         }
4893     }
4894
4895   # All the required targets are phony.
4896   depend ('.PHONY', keys %required_targets);
4897
4898   # Actually output gathered targets.
4899   foreach (sort target_cmp keys %dependencies)
4900     {
4901       # If there is nothing about this guy, skip it.
4902       next
4903         unless (@{$dependencies{$_}}
4904                 || $actions{$_}
4905                 || $required_targets{$_});
4906
4907       # Define gathered targets in undefined conditions.
4908       # FIXME: Right now we must handle .PHONY as an exception,
4909       # because people write things like
4910       #    .PHONY: myphonytarget
4911       # to append dependencies.  This would not work if Automake
4912       # refrained from defining its own .PHONY target as it does
4913       # with other overridden targets.
4914       # Likewise for `.MAKE'.
4915       my @undefined_conds = (TRUE,);
4916       if ($_ ne '.PHONY' && $_ ne '.MAKE')
4917         {
4918           @undefined_conds =
4919             Automake::Rule::define ($_, 'internal',
4920                                     RULE_AUTOMAKE, TRUE, INTERNAL);
4921         }
4922       my @uniq_deps = uniq (sort @{$dependencies{$_}});
4923       foreach my $cond (@undefined_conds)
4924         {
4925           my $condstr = $cond->subst_string;
4926           &pretty_print_rule ("$condstr$_:", "$condstr\t", @uniq_deps);
4927           $output_rules .= $actions{$_} if defined $actions{$_};
4928           $output_rules .= "\n";
4929         }
4930     }
4931 }
4932
4933
4934 # &handle_tests_dejagnu ()
4935 # ------------------------
4936 sub handle_tests_dejagnu
4937 {
4938     push (@check_tests, 'check-DEJAGNU');
4939     $output_rules .= file_contents ('dejagnu', new Automake::Location);
4940 }
4941
4942 # is_valid_test_extension ($EXT)
4943 # ------------------------------
4944 # Return true if $EXT can appear in $(TEST_EXTENSIONS), return false
4945 # otherwise.
4946 sub is_valid_test_extension ($)
4947 {
4948   my $ext = shift;
4949   return 1
4950     if ($ext =~ /^\.[a-zA-Z_][a-zA-Z0-9_]*$/);
4951   return 1
4952     if (exists $configure_vars{'EXEEXT'} && $ext eq subst ('EXEEXT'));
4953   return 0;
4954 }
4955
4956 # Handle TESTS variable and other checks.
4957 sub handle_tests
4958 {
4959   if (option 'dejagnu')
4960     {
4961       &handle_tests_dejagnu;
4962     }
4963   else
4964     {
4965       foreach my $c ('DEJATOOL', 'RUNTEST', 'RUNTESTFLAGS')
4966         {
4967           reject_var ($c, "`$c' defined but `dejagnu' not in "
4968                       . "`AUTOMAKE_OPTIONS'");
4969         }
4970     }
4971
4972   if (var ('TESTS'))
4973     {
4974       push (@check_tests, 'check-TESTS');
4975       $output_rules .= &file_contents ('check', new Automake::Location,
4976                                        COLOR => !! option 'color-tests',
4977                                        PARALLEL_TESTS => !! option 'parallel-tests');
4978
4979       # Tests that are known programs should have $(EXEEXT) appended.
4980       # For matching purposes, we need to adjust XFAIL_TESTS as well.
4981       append_exeext { exists $known_programs{$_[0]} } 'TESTS';
4982       append_exeext { exists $known_programs{$_[0]} } 'XFAIL_TESTS'
4983         if (var ('XFAIL_TESTS'));
4984
4985       if (option 'parallel-tests')
4986         {
4987           define_variable ('TEST_SUITE_LOG', 'test-suite.log', INTERNAL);
4988           define_variable ('TEST_SUITE_HTML', '$(TEST_SUITE_LOG:.log=.html)', INTERNAL);
4989           my $suff = '.test';
4990           my $at_exeext = '';
4991           my $handle_exeext = exists $configure_vars{'EXEEXT'};
4992           if ($handle_exeext)
4993             {
4994               $at_exeext = subst ('EXEEXT');
4995               $suff = $at_exeext  . ' ' . $suff;
4996             }
4997           if (! var 'TEST_EXTENSIONS')
4998             {
4999               define_variable ('TEST_EXTENSIONS', $suff, INTERNAL);
5000             }
5001           my $var = var 'TEST_EXTENSIONS';
5002           # Currently, we are not able to deal with conditional contents
5003           # in TEST_EXTENSIONS.
5004           if ($var->has_conditional_contents)
5005            {
5006              msg_var 'unsupported', $var,
5007                      "`TEST_EXTENSIONS' cannot have conditional contents";
5008            }
5009           my @test_suffixes = $var->value_as_list_recursive;
5010           if ((my @invalid_test_suffixes =
5011                   grep { !is_valid_test_extension $_ } @test_suffixes) > 0)
5012             {
5013               error $var->rdef (TRUE)->location,
5014                     "invalid test extensions: @invalid_test_suffixes";
5015             }
5016           @test_suffixes = grep { is_valid_test_extension $_ } @test_suffixes;
5017           if ($handle_exeext)
5018             {
5019               unshift (@test_suffixes, $at_exeext)
5020                 unless $test_suffixes[0] eq $at_exeext;
5021             }
5022           unshift (@test_suffixes, '');
5023
5024           transform_variable_recursively
5025             ('TESTS', 'TEST_LOGS', 'am__testlogs', 1, INTERNAL,
5026               sub {
5027                 my ($subvar, $val, $cond, $full_cond) = @_;
5028                 my $obj = $val;
5029                 return $obj
5030                   if $val =~ /^\@.*\@$/;
5031                 $obj =~ s/\$\(EXEEXT\)$//o;
5032
5033                 if ($val =~ /(\$\((top_)?srcdir\))\//o)
5034                   {
5035                     msg ('error', $subvar->rdef ($cond)->location,
5036                          "parallel-tests: using `$1' in TESTS is currently broken: `$val'");
5037                   }
5038
5039                 foreach my $test_suffix (@test_suffixes)
5040                   {
5041                     next
5042                       if $test_suffix eq $at_exeext || $test_suffix eq '';
5043                     return substr ($obj, 0, length ($obj) - length ($test_suffix)) . '.log'
5044                       if substr ($obj, - length ($test_suffix)) eq $test_suffix;
5045                   }
5046                 $obj .= '.log';
5047                 my $compile = 'LOG_COMPILE';
5048                 define_variable ($compile,
5049                                  '$(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)', INTERNAL);
5050                 $output_rules .= file_contents ('check2', new Automake::Location,
5051                                                 GENERIC => 0,
5052                                                 OBJ => $obj,
5053                                                 SOURCE => $val,
5054                                                 COMPILE =>'$(' . $compile . ')',
5055                                                 EXT => '',
5056                                                 am__EXEEXT => 'FALSE');
5057                 return $obj;
5058               });
5059
5060           my $nhelper=1;
5061           my $prev = 'TESTS';
5062           my $post = '';
5063           my $last_suffix = $test_suffixes[$#test_suffixes];
5064           my $cur = '';
5065           foreach my $test_suffix (@test_suffixes)
5066             {
5067               if ($test_suffix eq $last_suffix)
5068                 {
5069                   $cur = 'TEST_LOGS';
5070                 }
5071               else
5072                 {
5073                   $cur = 'am__test_logs' . $nhelper;
5074                 }
5075               define_variable ($cur,
5076                 '$(' . $prev . ':' . $test_suffix . $post . '=.log)', INTERNAL);
5077               $post = '.log';
5078               $prev = $cur;
5079               $nhelper++;
5080               if ($test_suffix ne $at_exeext && $test_suffix ne '')
5081                 {
5082                   (my $ext = $test_suffix) =~ s/^\.//;
5083                   $ext = uc $ext;
5084                   my $compile = $ext . '_LOG_COMPILE';
5085                   define_variable ($compile,
5086                                    '$(' . $ext . '_LOG_COMPILER) $(AM_' .  $ext . '_LOG_FLAGS)'
5087                                    . ' $(' . $ext . '_LOG_FLAGS)', INTERNAL);
5088                   my $am_exeext = $handle_exeext ? 'am__EXEEXT' : 'FALSE';
5089                   $output_rules .= file_contents ('check2', new Automake::Location,
5090                                                   GENERIC => 1,
5091                                                   OBJ => '',
5092                                                   SOURCE => '$<',
5093                                                   COMPILE => '$(' . $compile . ')',
5094                                                   EXT => $test_suffix,
5095                                                   am__EXEEXT => $am_exeext);
5096                 }
5097             }
5098
5099           define_variable ('TEST_LOGS_TMP', '$(TEST_LOGS:.log=.log-t)', INTERNAL);
5100
5101           $clean_files{'$(TEST_LOGS_TMP)'} = MOSTLY_CLEAN;
5102           $clean_files{'$(TEST_LOGS)'} = MOSTLY_CLEAN;
5103           $clean_files{'$(TEST_SUITE_LOG)'} = MOSTLY_CLEAN;
5104           $clean_files{'$(TEST_SUITE_HTML)'} = MOSTLY_CLEAN;
5105         }
5106     }
5107 }
5108
5109 # Handle Emacs Lisp.
5110 sub handle_emacs_lisp
5111 {
5112   my @elfiles = &am_install_var ('-candist', 'lisp', 'LISP',
5113                                  'lisp', 'noinst');
5114
5115   return if ! @elfiles;
5116
5117   define_pretty_variable ('am__ELFILES', TRUE, INTERNAL,
5118                           map { $_->[1] } @elfiles);
5119   define_pretty_variable ('am__ELCFILES', TRUE, INTERNAL,
5120                           '$(am__ELFILES:.el=.elc)');
5121   # This one can be overridden by users.
5122   define_pretty_variable ('ELCFILES', TRUE, INTERNAL, '$(LISP:.el=.elc)');
5123
5124   push @all, '$(ELCFILES)';
5125
5126   require_variables ($elfiles[0][0], "Emacs Lisp sources seen", TRUE,
5127                      'EMACS', 'lispdir');
5128   require_conf_file ($elfiles[0][0], FOREIGN, 'elisp-comp');
5129   &define_variable ('elisp_comp', "$am_config_aux_dir/elisp-comp", INTERNAL);
5130 }
5131
5132 # Handle Python
5133 sub handle_python
5134 {
5135   my @pyfiles = &am_install_var ('-defaultdist', 'python', 'PYTHON',
5136                                  'noinst');
5137   return if ! @pyfiles;
5138
5139   require_variables ($pyfiles[0][0], "Python sources seen", TRUE, 'PYTHON');
5140   require_conf_file ($pyfiles[0][0], FOREIGN, 'py-compile');
5141   &define_variable ('py_compile', "$am_config_aux_dir/py-compile", INTERNAL);
5142 }
5143
5144 # Handle Java.
5145 sub handle_java
5146 {
5147     my @sourcelist = &am_install_var ('-candist',
5148                                       'java', 'JAVA',
5149                                       'noinst', 'check');
5150     return if ! @sourcelist;
5151
5152     my @prefixes = am_primary_prefixes ('JAVA', 1,
5153                                         'noinst', 'check');
5154
5155     my $dir;
5156     my @java_sources = ();
5157     foreach my $prefix (@prefixes)
5158       {
5159         (my $curs = $prefix) =~ s/^(?:nobase_)?(?:dist_|nodist_)?//;
5160
5161         next
5162           if $curs eq 'EXTRA';
5163
5164         push @java_sources, '$(' . $prefix . '_JAVA' . ')';
5165
5166         if (defined $dir)
5167           {
5168             err_var "${curs}_JAVA", "multiple _JAVA primaries in use"
5169              unless $curs eq $dir;
5170           }
5171
5172         $dir = $curs;
5173       }
5174
5175     define_pretty_variable ('am__java_sources', TRUE, INTERNAL,
5176                             "@java_sources");
5177
5178     if ($dir eq 'check')
5179       {
5180         push (@check, "class$dir.stamp");
5181       }
5182     else
5183       {
5184         push (@all, "class$dir.stamp");
5185       }
5186 }
5187
5188
5189 # Handle some of the minor options.
5190 sub handle_minor_options
5191 {
5192   if (option 'readme-alpha')
5193     {
5194       if ($relative_dir eq '.')
5195         {
5196           if ($package_version !~ /^$GNITS_VERSION_PATTERN$/)
5197             {
5198               msg ('error-gnits', $package_version_location,
5199                    "version `$package_version' doesn't follow " .
5200                    "Gnits standards");
5201             }
5202           if (defined $1 && -f 'README-alpha')
5203             {
5204               # This means we have an alpha release.  See
5205               # GNITS_VERSION_PATTERN for details.
5206               push_dist_common ('README-alpha');
5207             }
5208         }
5209     }
5210 }
5211
5212 ################################################################
5213
5214 # ($OUTPUT, @INPUTS)
5215 # &split_config_file_spec ($SPEC)
5216 # -------------------------------
5217 # Decode the Autoconf syntax for config files (files, headers, links
5218 # etc.).
5219 sub split_config_file_spec ($)
5220 {
5221   my ($spec) = @_;
5222   my ($output, @inputs) = split (/:/, $spec);
5223
5224   push @inputs, "$output.in"
5225     unless @inputs;
5226
5227   return ($output, @inputs);
5228 }
5229
5230 # $input
5231 # locate_am (@POSSIBLE_SOURCES)
5232 # -----------------------------
5233 # AC_CONFIG_FILES allow specifications such as Makefile:top.in:mid.in:bot.in
5234 # This functions returns the first *.in file for which a *.am exists.
5235 # It returns undef otherwise.
5236 sub locate_am (@)
5237 {
5238   my (@rest) = @_;
5239   my $input;
5240   foreach my $file (@rest)
5241     {
5242       if (($file =~ /^(.*)\.in$/) && -f "$1.am")
5243         {
5244           $input = $file;
5245           last;
5246         }
5247     }
5248   return $input;
5249 }
5250
5251 my %make_list;
5252
5253 # &scan_autoconf_config_files ($WHERE, $CONFIG-FILES)
5254 # ---------------------------------------------------
5255 # Study $CONFIG-FILES which is the first argument to AC_CONFIG_FILES
5256 # (or AC_OUTPUT).
5257 sub scan_autoconf_config_files ($$)
5258 {
5259   my ($where, $config_files) = @_;
5260
5261   # Look at potential Makefile.am's.
5262   foreach (split ' ', $config_files)
5263     {
5264       # Must skip empty string for Perl 4.
5265       next if $_ eq "\\" || $_ eq '';
5266
5267       # Handle $local:$input syntax.
5268       my ($local, @rest) = split (/:/);
5269       @rest = ("$local.in",) unless @rest;
5270       msg ('portability', $where,
5271           "Omit leading `./' from config file names such as `$local',"
5272           . "\nas not all make implementations treat `file' and `./file' equally.")
5273         if ($local =~ /^\.\//);
5274       my $input = locate_am @rest;
5275       if ($input)
5276         {
5277           # We have a file that automake should generate.
5278           $make_list{$input} = join (':', ($local, @rest));
5279         }
5280       else
5281         {
5282           # We have a file that automake should cause to be
5283           # rebuilt, but shouldn't generate itself.
5284           push (@other_input_files, $_);
5285         }
5286       $ac_config_files_location{$local} = $where;
5287       $ac_config_files_condition{$local} =
5288         new Automake::Condition (@cond_stack)
5289           if (@cond_stack);
5290     }
5291 }
5292
5293
5294 # &scan_autoconf_traces ($FILENAME)
5295 # ---------------------------------
5296 sub scan_autoconf_traces ($)
5297 {
5298   my ($filename) = @_;
5299
5300   # Macros to trace, with their minimal number of arguments.
5301   #
5302   # IMPORTANT: If you add a macro here, you should also add this macro
5303   # =========  to Automake-preselection in autoconf/lib/autom4te.in.
5304   my %traced = (
5305                 AC_CANONICAL_BUILD => 0,
5306                 AC_CANONICAL_HOST => 0,
5307                 AC_CANONICAL_TARGET => 0,
5308                 AC_CONFIG_AUX_DIR => 1,
5309                 AC_CONFIG_FILES => 1,
5310                 AC_CONFIG_HEADERS => 1,
5311                 AC_CONFIG_LIBOBJ_DIR => 1,
5312                 AC_CONFIG_LINKS => 1,
5313                 AC_FC_SRCEXT => 1,
5314                 AC_INIT => 0,
5315                 AC_LIBSOURCE => 1,
5316                 AC_REQUIRE_AUX_FILE => 1,
5317                 AC_SUBST_TRACE => 1,
5318                 AM_AUTOMAKE_VERSION => 1,
5319                 AM_CONDITIONAL => 2,
5320                 AM_ENABLE_MULTILIB => 0,
5321                 AM_GNU_GETTEXT => 0,
5322                 AM_GNU_GETTEXT_INTL_SUBDIR => 0,
5323                 AM_INIT_AUTOMAKE => 0,
5324                 AM_MAINTAINER_MODE => 0,
5325                 AM_PROG_AR => 0,
5326                 AM_PROG_CC_C_O => 0,
5327                 AM_SILENT_RULES => 0,
5328                 _AM_SUBST_NOTMAKE => 1,
5329                 _AM_COND_IF => 1,
5330                 _AM_COND_ELSE => 1,
5331                 _AM_COND_ENDIF => 1,
5332                 LT_SUPPORTED_TAG => 1,
5333                 _LT_AC_TAGCONFIG => 0,
5334                 m4_include => 1,
5335                 m4_sinclude => 1,
5336                 sinclude => 1,
5337               );
5338
5339   my $traces = ($ENV{AUTOCONF} || '@am_AUTOCONF@') . " ";
5340
5341   # Use a separator unlikely to be used, not `:', the default, which
5342   # has a precise meaning for AC_CONFIG_FILES and so on.
5343   $traces .= join (' ',
5344                    map { "--trace=$_" . ':\$f:\$l::\$d::\$n::\${::}%' }
5345                    (keys %traced));
5346
5347   my $tracefh = new Automake::XFile ("$traces $filename |");
5348   verb "reading $traces";
5349
5350   @cond_stack = ();
5351   my $where;
5352
5353   while ($_ = $tracefh->getline)
5354     {
5355       chomp;
5356       my ($here, $depth, @args) = split (/::/);
5357       $where = new Automake::Location $here;
5358       my $macro = $args[0];
5359
5360       prog_error ("unrequested trace `$macro'")
5361         unless exists $traced{$macro};
5362
5363       # Skip and diagnose malformed calls.
5364       if ($#args < $traced{$macro})
5365         {
5366           msg ('syntax', $where, "not enough arguments for $macro");
5367           next;
5368         }
5369
5370       # Alphabetical ordering please.
5371       if ($macro eq 'AC_CANONICAL_BUILD')
5372         {
5373           if ($seen_canonical <= AC_CANONICAL_BUILD)
5374             {
5375               $seen_canonical = AC_CANONICAL_BUILD;
5376               $canonical_location = $where;
5377             }
5378         }
5379       elsif ($macro eq 'AC_CANONICAL_HOST')
5380         {
5381           if ($seen_canonical <= AC_CANONICAL_HOST)
5382             {
5383               $seen_canonical = AC_CANONICAL_HOST;
5384               $canonical_location = $where;
5385             }
5386         }
5387       elsif ($macro eq 'AC_CANONICAL_TARGET')
5388         {
5389           $seen_canonical = AC_CANONICAL_TARGET;
5390           $canonical_location = $where;
5391         }
5392       elsif ($macro eq 'AC_CONFIG_AUX_DIR')
5393         {
5394           if ($seen_init_automake)
5395             {
5396               error ($where, "AC_CONFIG_AUX_DIR must be called before "
5397                      . "AM_INIT_AUTOMAKE...", partial => 1);
5398               error ($seen_init_automake, "... AM_INIT_AUTOMAKE called here");
5399             }
5400           $config_aux_dir = $args[1];
5401           $config_aux_dir_set_in_configure_ac = 1;
5402           $relative_dir = '.';
5403           check_directory ($config_aux_dir, $where);
5404         }
5405       elsif ($macro eq 'AC_CONFIG_FILES')
5406         {
5407           # Look at potential Makefile.am's.
5408           scan_autoconf_config_files ($where, $args[1]);
5409         }
5410       elsif ($macro eq 'AC_CONFIG_HEADERS')
5411         {
5412           foreach my $spec (split (' ', $args[1]))
5413             {
5414               my ($dest, @src) = split (':', $spec);
5415               $ac_config_files_location{$dest} = $where;
5416               push @config_headers, $spec;
5417             }
5418         }
5419       elsif ($macro eq 'AC_CONFIG_LIBOBJ_DIR')
5420         {
5421           $config_libobj_dir = $args[1];
5422           $relative_dir = '.';
5423           check_directory ($config_libobj_dir, $where);
5424         }
5425       elsif ($macro eq 'AC_CONFIG_LINKS')
5426         {
5427           foreach my $spec (split (' ', $args[1]))
5428             {
5429               my ($dest, $src) = split (':', $spec);
5430               $ac_config_files_location{$dest} = $where;
5431               push @config_links, $spec;
5432             }
5433         }
5434       elsif ($macro eq 'AC_FC_SRCEXT')
5435         {
5436           my $suffix = $args[1];
5437           # These flags are used as %SOURCEFLAG% in depend2.am,
5438           # where the trailing space is important.
5439           $sourceflags{'.' . $suffix} = '$(FCFLAGS_' . $suffix . ') '
5440             if ($suffix eq 'f90' || $suffix eq 'f95' || $suffix eq 'f03' || $suffix eq 'f08');
5441         }
5442       elsif ($macro eq 'AC_INIT')
5443         {
5444           if (defined $args[2])
5445             {
5446               $package_version = $args[2];
5447               $package_version_location = $where;
5448             }
5449         }
5450       elsif ($macro eq 'AC_LIBSOURCE')
5451         {
5452           $libsources{$args[1]} = $here;
5453         }
5454       elsif ($macro eq 'AC_REQUIRE_AUX_FILE')
5455         {
5456           # Only remember the first time a file is required.
5457           $required_aux_file{$args[1]} = $where
5458             unless exists $required_aux_file{$args[1]};
5459         }
5460       elsif ($macro eq 'AC_SUBST_TRACE')
5461         {
5462           # Just check for alphanumeric in AC_SUBST_TRACE.  If you do
5463           # AC_SUBST(5), then too bad.
5464           $configure_vars{$args[1]} = $where
5465             if $args[1] =~ /^\w+$/;
5466         }
5467       elsif ($macro eq 'AM_AUTOMAKE_VERSION')
5468         {
5469           error ($where,
5470                  "version mismatch.  This is Automake $VERSION,\n" .
5471                  "but the definition used by this AM_INIT_AUTOMAKE\n" .
5472                  "comes from Automake $args[1].  You should recreate\n" .
5473                  "aclocal.m4 with aclocal and run automake again.\n",
5474                  # $? = 63 is used to indicate version mismatch to missing.
5475                  exit_code => 63)
5476             if $VERSION ne $args[1];
5477
5478           $seen_automake_version = 1;
5479         }
5480       elsif ($macro eq 'AM_CONDITIONAL')
5481         {
5482           $configure_cond{$args[1]} = $where;
5483         }
5484       elsif ($macro eq 'AM_ENABLE_MULTILIB')
5485         {
5486           $seen_multilib = $where;
5487         }
5488       elsif ($macro eq 'AM_GNU_GETTEXT')
5489         {
5490           $seen_gettext = $where;
5491           $ac_gettext_location = $where;
5492           $seen_gettext_external = grep ($_ eq 'external', @args);
5493         }
5494       elsif ($macro eq 'AM_GNU_GETTEXT_INTL_SUBDIR')
5495         {
5496           $seen_gettext_intl = $where;
5497         }
5498       elsif ($macro eq 'AM_INIT_AUTOMAKE')
5499         {
5500           $seen_init_automake = $where;
5501           if (defined $args[2])
5502             {
5503               $package_version = $args[2];
5504               $package_version_location = $where;
5505             }
5506           elsif (defined $args[1])
5507             {
5508               exit $exit_code
5509                 if (process_global_option_list ($where,
5510                                                 split (' ', $args[1])));
5511             }
5512         }
5513       elsif ($macro eq 'AM_MAINTAINER_MODE')
5514         {
5515           $seen_maint_mode = $where;
5516         }
5517       elsif ($macro eq 'AM_PROG_AR')
5518         {
5519           $seen_ar = $where;
5520         }
5521       elsif ($macro eq 'AM_PROG_CC_C_O')
5522         {
5523           $seen_cc_c_o = $where;
5524         }
5525       elsif ($macro eq 'AM_SILENT_RULES')
5526         {
5527           set_global_option ('silent-rules', $where);
5528         }
5529       elsif ($macro eq '_AM_COND_IF')
5530         {
5531           cond_stack_if ('', $args[1], $where);
5532           error ($where, "missing m4 quoting, macro depth $depth")
5533             if ($depth != 1);
5534         }
5535       elsif ($macro eq '_AM_COND_ELSE')
5536         {
5537           cond_stack_else ('!', $args[1], $where);
5538           error ($where, "missing m4 quoting, macro depth $depth")
5539             if ($depth != 1);
5540         }
5541       elsif ($macro eq '_AM_COND_ENDIF')
5542         {
5543           cond_stack_endif (undef, undef, $where);
5544           error ($where, "missing m4 quoting, macro depth $depth")
5545             if ($depth != 1);
5546         }
5547       elsif ($macro eq '_AM_SUBST_NOTMAKE')
5548         {
5549           $ignored_configure_vars{$args[1]} = $where;
5550         }
5551       elsif ($macro eq 'm4_include'
5552              || $macro eq 'm4_sinclude'
5553              || $macro eq 'sinclude')
5554         {
5555           # Skip missing `sinclude'd files.
5556           next if $macro ne 'm4_include' && ! -f $args[1];
5557
5558           # Some modified versions of Autoconf don't use
5559           # frozen files.  Consequently it's possible that we see all
5560           # m4_include's performed during Autoconf's startup.
5561           # Obviously we don't want to distribute Autoconf's files
5562           # so we skip absolute filenames here.
5563           push @configure_deps, '$(top_srcdir)/' . $args[1]
5564             unless $here =~ m,^(?:\w:)?[\\/],;
5565           # Keep track of the greatest timestamp.
5566           if (-e $args[1])
5567             {
5568               my $mtime = mtime $args[1];
5569               $configure_deps_greatest_timestamp = $mtime
5570                 if $mtime > $configure_deps_greatest_timestamp;
5571             }
5572         }
5573       elsif ($macro eq 'LT_SUPPORTED_TAG')
5574         {
5575           $libtool_tags{$args[1]} = 1;
5576           $libtool_new_api = 1;
5577         }
5578       elsif ($macro eq '_LT_AC_TAGCONFIG')
5579         {
5580           # _LT_AC_TAGCONFIG is an old macro present in Libtool 1.5.
5581           # We use it to detect whether tags are supported.  Our
5582           # preferred interface is LT_SUPPORTED_TAG, but it was
5583           # introduced in Libtool 1.6.
5584           if (0 == keys %libtool_tags)
5585             {
5586               # Hardcode the tags supported by Libtool 1.5.
5587               %libtool_tags = (CC => 1, CXX => 1, GCJ => 1, F77 => 1);
5588             }
5589         }
5590     }
5591
5592   error ($where, "condition stack not properly closed")
5593     if (@cond_stack);
5594
5595   $tracefh->close;
5596 }
5597
5598
5599 # &scan_autoconf_files ()
5600 # -----------------------
5601 # Check whether we use `configure.ac' or `configure.in'.
5602 # Scan it (and possibly `aclocal.m4') for interesting things.
5603 # We must scan aclocal.m4 because there might be AC_SUBSTs and such there.
5604 sub scan_autoconf_files ()
5605 {
5606   # Reinitialize libsources here.  This isn't really necessary,
5607   # since we currently assume there is only one configure.ac.  But
5608   # that won't always be the case.
5609   %libsources = ();
5610
5611   # Keep track of the youngest configure dependency.
5612   $configure_deps_greatest_timestamp = mtime $configure_ac;
5613   if (-e 'aclocal.m4')
5614     {
5615       my $mtime = mtime 'aclocal.m4';
5616       $configure_deps_greatest_timestamp = $mtime
5617         if $mtime > $configure_deps_greatest_timestamp;
5618     }
5619
5620   scan_autoconf_traces ($configure_ac);
5621
5622   @configure_input_files = sort keys %make_list;
5623   # Set input and output files if not specified by user.
5624   if (! @input_files)
5625     {
5626       @input_files = @configure_input_files;
5627       %output_files = %make_list;
5628     }
5629
5630
5631   if (! $seen_init_automake)
5632     {
5633       err_ac ("no proper invocation of AM_INIT_AUTOMAKE was found.\nYou "
5634               . "should verify that $configure_ac invokes AM_INIT_AUTOMAKE,"
5635               . "\nthat aclocal.m4 is present in the top-level directory,\n"
5636               . "and that aclocal.m4 was recently regenerated "
5637               . "(using aclocal).");
5638     }
5639   else
5640     {
5641       if (! $seen_automake_version)
5642         {
5643           if (-f 'aclocal.m4')
5644             {
5645               error ($seen_init_automake,
5646                      "your implementation of AM_INIT_AUTOMAKE comes from " .
5647                      "an\nold Automake version.  You should recreate " .
5648                      "aclocal.m4\nwith aclocal and run automake again.\n",
5649                      # $? = 63 is used to indicate version mismatch to missing.
5650                      exit_code => 63);
5651             }
5652           else
5653             {
5654               error ($seen_init_automake,
5655                      "no proper implementation of AM_INIT_AUTOMAKE was " .
5656                      "found,\nprobably because aclocal.m4 is missing...\n" .
5657                      "You should run aclocal to create this file, then\n" .
5658                      "run automake again.\n");
5659             }
5660         }
5661     }
5662
5663   locate_aux_dir ();
5664
5665   # Reorder @input_files so that the Makefile that distributes aux
5666   # files is processed last.  This is important because each directory
5667   # can require auxiliary scripts and we should wait until they have
5668   # been installed before distributing them.
5669
5670   # The Makefile.in that distribute the aux files is the one in
5671   # $config_aux_dir or the top-level Makefile.
5672   my $auxdirdist = is_make_dir ($config_aux_dir) ? $config_aux_dir : '.';
5673   my @new_input_files = ();
5674   while (@input_files)
5675     {
5676       my $in = pop @input_files;
5677       my @ins = split (/:/, $output_files{$in});
5678       if (dirname ($ins[0]) eq $auxdirdist)
5679         {
5680           push @new_input_files, $in;
5681           $automake_will_process_aux_dir = 1;
5682         }
5683       else
5684         {
5685           unshift @new_input_files, $in;
5686         }
5687     }
5688   @input_files = @new_input_files;
5689
5690   # If neither the auxdir/Makefile nor the ./Makefile are generated
5691   # by Automake, we won't distribute the aux files anyway.  Assume
5692   # the user know what (s)he does, and pretend we will distribute
5693   # them to disable the error in require_file_internal.
5694   $automake_will_process_aux_dir = 1 if ! is_make_dir ($auxdirdist);
5695
5696   # Look for some files we need.  Always check for these.  This
5697   # check must be done for every run, even those where we are only
5698   # looking at a subdir Makefile.  We must set relative_dir for
5699   # maybe_push_required_file to work.
5700   # Sort the files for stable verbose output.
5701   $relative_dir = '.';
5702   foreach my $file (sort keys %required_aux_file)
5703     {
5704       require_conf_file ($required_aux_file{$file}->get, FOREIGN, $file)
5705     }
5706   err_am "`install.sh' is an anachronism; use `install-sh' instead"
5707     if -f $config_aux_dir . '/install.sh';
5708
5709   # Preserve dist_common for later.
5710   $configure_dist_common = variable_value ('DIST_COMMON') || '';
5711
5712 }
5713
5714 ################################################################
5715
5716 # Set up for Cygnus mode.
5717 sub check_cygnus
5718 {
5719   my $cygnus = option 'cygnus';
5720   return unless $cygnus;
5721
5722   set_strictness ('foreign');
5723   set_option ('no-installinfo', $cygnus);
5724   set_option ('no-dependencies', $cygnus);
5725   set_option ('no-dist', $cygnus);
5726
5727   err_ac "`AM_MAINTAINER_MODE' required when --cygnus specified"
5728     if !$seen_maint_mode;
5729 }
5730
5731 # Do any extra checking for GNU standards.
5732 sub check_gnu_standards
5733 {
5734   if ($relative_dir eq '.')
5735     {
5736       # In top level (or only) directory.
5737       require_file ("$am_file.am", GNU,
5738                     qw/INSTALL NEWS README AUTHORS ChangeLog/);
5739
5740       # Accept one of these three licenses; default to COPYING.
5741       # Make sure we do not overwrite an existing license.
5742       my $license;
5743       foreach (qw /COPYING COPYING.LIB COPYING.LESSER/)
5744         {
5745           if (-f $_)
5746             {
5747               $license = $_;
5748               last;
5749             }
5750         }
5751       require_file ("$am_file.am", GNU, 'COPYING')
5752         unless $license;
5753     }
5754
5755   for my $opt ('no-installman', 'no-installinfo')
5756     {
5757       msg ('error-gnu', option $opt,
5758            "option `$opt' disallowed by GNU standards")
5759         if option $opt;
5760     }
5761 }
5762
5763 # Do any extra checking for GNITS standards.
5764 sub check_gnits_standards
5765 {
5766   if ($relative_dir eq '.')
5767     {
5768       # In top level (or only) directory.
5769       require_file ("$am_file.am", GNITS, 'THANKS');
5770     }
5771 }
5772
5773 ################################################################
5774 #
5775 # Functions to handle files of each language.
5776
5777 # Each `lang_X_rewrite($DIRECTORY, $BASE, $EXT)' function follows a
5778 # simple formula: Return value is LANG_SUBDIR if the resulting object
5779 # file should be in a subdir if the source file is, LANG_PROCESS if
5780 # file is to be dealt with, LANG_IGNORE otherwise.
5781
5782 # Much of the actual processing is handled in
5783 # handle_single_transform.  These functions exist so that
5784 # auxiliary information can be recorded for a later cleanup pass.
5785 # Note that the calls to these functions are computed, so don't bother
5786 # searching for their precise names in the source.
5787
5788 # This is just a convenience function that can be used to determine
5789 # when a subdir object should be used.
5790 sub lang_sub_obj
5791 {
5792     return option 'subdir-objects' ? LANG_SUBDIR : LANG_PROCESS;
5793 }
5794
5795 # Rewrite a single C source file.
5796 sub lang_c_rewrite
5797 {
5798   my ($directory, $base, $ext, $nonansi_obj, $have_per_exec_flags, $var) = @_;
5799
5800   if (option 'ansi2knr' && $base =~ /_$/)
5801     {
5802       # FIXME: include line number in error.
5803       err_am "C source file `$base.c' would be deleted by ansi2knr rules";
5804     }
5805
5806   my $r = LANG_PROCESS;
5807   if (option 'subdir-objects')
5808     {
5809       $r = LANG_SUBDIR;
5810       if ($directory && $directory ne '.')
5811         {
5812           $base = $directory . '/' . $base;
5813
5814           # libtool is always able to put the object at the proper place,
5815           # so we do not have to require AM_PROG_CC_C_O when building .lo files.
5816           msg_var ('portability', $var,
5817                    "compiling `$base.c' in subdir requires "
5818                    . "`AM_PROG_CC_C_O' in `$configure_ac'",
5819                    uniq_scope => US_GLOBAL,
5820                    uniq_part => 'AM_PROG_CC_C_O subdir')
5821             unless $seen_cc_c_o || $nonansi_obj eq '.lo';
5822         }
5823
5824       # In this case we already have the directory information, so
5825       # don't add it again.
5826       $de_ansi_files{$base} = '';
5827     }
5828   else
5829     {
5830       $de_ansi_files{$base} = (($directory eq '.' || $directory eq '')
5831                                ? ''
5832                                : "$directory/");
5833     }
5834
5835   if (! $seen_cc_c_o
5836       && $have_per_exec_flags
5837       && ! option 'subdir-objects'
5838       && $nonansi_obj ne '.lo')
5839     {
5840       msg_var ('portability',
5841                $var, "compiling `$base.c' with per-target flags requires "
5842                . "`AM_PROG_CC_C_O' in `$configure_ac'",
5843                uniq_scope => US_GLOBAL,
5844                uniq_part => 'AM_PROG_CC_C_O per-target')
5845     }
5846
5847     return $r;
5848 }
5849
5850 # Rewrite a single C++ source file.
5851 sub lang_cxx_rewrite
5852 {
5853     return &lang_sub_obj;
5854 }
5855
5856 # Rewrite a single header file.
5857 sub lang_header_rewrite
5858 {
5859     # Header files are simply ignored.
5860     return LANG_IGNORE;
5861 }
5862
5863 # Rewrite a single Vala source file.
5864 sub lang_vala_rewrite
5865 {
5866     my ($directory, $base, $ext) = @_;
5867
5868     (my $newext = $ext) =~ s/vala$/c/;
5869     return (LANG_SUBDIR, $newext);
5870 }
5871
5872 # Rewrite a single yacc file.
5873 sub lang_yacc_rewrite
5874 {
5875     my ($directory, $base, $ext) = @_;
5876
5877     my $r = &lang_sub_obj;
5878     (my $newext = $ext) =~ tr/y/c/;
5879     return ($r, $newext);
5880 }
5881
5882 # Rewrite a single yacc++ file.
5883 sub lang_yaccxx_rewrite
5884 {
5885     my ($directory, $base, $ext) = @_;
5886
5887     my $r = &lang_sub_obj;
5888     (my $newext = $ext) =~ tr/y/c/;
5889     return ($r, $newext);
5890 }
5891
5892 # Rewrite a single lex file.
5893 sub lang_lex_rewrite
5894 {
5895     my ($directory, $base, $ext) = @_;
5896
5897     my $r = &lang_sub_obj;
5898     (my $newext = $ext) =~ tr/l/c/;
5899     return ($r, $newext);
5900 }
5901
5902 # Rewrite a single lex++ file.
5903 sub lang_lexxx_rewrite
5904 {
5905     my ($directory, $base, $ext) = @_;
5906
5907     my $r = &lang_sub_obj;
5908     (my $newext = $ext) =~ tr/l/c/;
5909     return ($r, $newext);
5910 }
5911
5912 # Rewrite a single assembly file.
5913 sub lang_asm_rewrite
5914 {
5915     return &lang_sub_obj;
5916 }
5917
5918 # Rewrite a single preprocessed assembly file.
5919 sub lang_cppasm_rewrite
5920 {
5921     return &lang_sub_obj;
5922 }
5923
5924 # Rewrite a single Fortran 77 file.
5925 sub lang_f77_rewrite
5926 {
5927     return &lang_sub_obj;
5928 }
5929
5930 # Rewrite a single Fortran file.
5931 sub lang_fc_rewrite
5932 {
5933     return &lang_sub_obj;
5934 }
5935
5936 # Rewrite a single preprocessed Fortran file.
5937 sub lang_ppfc_rewrite
5938 {
5939     return &lang_sub_obj;
5940 }
5941
5942 # Rewrite a single preprocessed Fortran 77 file.
5943 sub lang_ppf77_rewrite
5944 {
5945     return &lang_sub_obj;
5946 }
5947
5948 # Rewrite a single ratfor file.
5949 sub lang_ratfor_rewrite
5950 {
5951     return &lang_sub_obj;
5952 }
5953
5954 # Rewrite a single Objective C file.
5955 sub lang_objc_rewrite
5956 {
5957     return &lang_sub_obj;
5958 }
5959
5960 # Rewrite a single Unified Parallel C file.
5961 sub lang_upc_rewrite
5962 {
5963     return &lang_sub_obj;
5964 }
5965
5966 # Rewrite a single Java file.
5967 sub lang_java_rewrite
5968 {
5969     return LANG_SUBDIR;
5970 }
5971
5972 # The lang_X_finish functions are called after all source file
5973 # processing is done.  Each should handle defining rules for the
5974 # language, etc.  A finish function is only called if a source file of
5975 # the appropriate type has been seen.
5976
5977 sub lang_c_finish
5978 {
5979     # Push all libobjs files onto de_ansi_files.  We actually only
5980     # push files which exist in the current directory, and which are
5981     # genuine source files.
5982     foreach my $file (keys %libsources)
5983     {
5984         if ($file =~ /^(.*)\.[cly]$/ && -f "$relative_dir/$file")
5985         {
5986             $de_ansi_files{$1} = ''
5987         }
5988     }
5989
5990     if (option 'ansi2knr' && keys %de_ansi_files)
5991     {
5992         # Make all _.c files depend on their corresponding .c files.
5993         my @objects;
5994         foreach my $base (sort keys %de_ansi_files)
5995         {
5996             # Each _.c file must depend on ansi2knr; otherwise it
5997             # might be used in a parallel build before it is built.
5998             # We need to support files in the srcdir and in the build
5999             # dir (because these files might be auto-generated.  But
6000             # we can't use $< -- some makes only define $< during a
6001             # suffix rule.
6002             my $ansfile = $de_ansi_files{$base} . $base . '.c';
6003             $output_rules .= ($base . "_.c: $ansfile \$(ANSI2KNR)\n\t"
6004                               . '$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) '
6005                               . '`if test -f $(srcdir)/' . $ansfile
6006                               . '; then echo $(srcdir)/' . $ansfile
6007                               . '; else echo ' . $ansfile . '; fi` '
6008                               . "| sed 's/^# \\([0-9]\\)/#line \\1/' "
6009                               . '| $(ANSI2KNR) > $@'
6010                               # If ansi2knr fails then we shouldn't
6011                               # create the _.c file
6012                               . " || rm -f \$\@\n");
6013             push (@objects, $base . '_.$(OBJEXT)');
6014             push (@objects, $base . '_.lo')
6015               if var ('LIBTOOL');
6016
6017             # Explicitly clean the _.c files if they are in a
6018             # subdirectory. (In the current directory they get erased
6019             # by a `rm -f *_.c' rule.)
6020             $clean_files{$base . '_.c'} = MOSTLY_CLEAN
6021               if dirname ($base) ne '.';
6022         }
6023
6024         # Make all _.o (and _.lo) files depend on ansi2knr.
6025         # Use a sneaky little hack to make it print nicely.
6026         &pretty_print_rule ('', '', @objects, ':', '$(ANSI2KNR)');
6027     }
6028 }
6029
6030 sub lang_vala_finish_target ($$)
6031 {
6032   my ($self, $name) = @_;
6033
6034   my $derived = canonicalize ($name);
6035   my $varname = $derived . '_SOURCES';
6036   my $var = var ($varname);
6037
6038   if ($var)
6039     {
6040       foreach my $file ($var->value_as_list_recursive)
6041         {
6042           $output_rules .= "\$(srcdir)/$file: \$(srcdir)/${derived}_vala.stamp\n"
6043             . "\t\@if test -f \$@; then :; else rm -f \$(srcdir)/${derived}_vala.stamp; fi\n"
6044             . "\t\@if test -f \$@; then :; else \\\n"
6045             . "\t  \$(am__cd) \$(srcdir) && \$(MAKE) \$(AM_MAKEFLAGS) ${derived}_vala.stamp; \\\n"
6046             . "\tfi\n"
6047             if $file =~ s/(.*)\.vala$/$1.c/;
6048         }
6049     }
6050
6051   # Add rebuild rules for generated header and vapi files
6052   my $flags = var ($derived . '_VALAFLAGS');
6053   if ($flags)
6054     {
6055       my $lastflag = '';
6056       foreach my $flag ($flags->value_as_list_recursive)
6057         {
6058           if (grep (/$lastflag/, ('-H', '-h', '--header', '--internal-header',
6059                                   '--vapi', '--internal-vapi', '--gir')))
6060             {
6061               my $headerfile = $flag;
6062               $output_rules .= "\$(srcdir)/$headerfile: \$(srcdir)/${derived}_vala.stamp\n"
6063                 . "\t\@if test -f \$@; then :; else rm -f \$(srcdir)/${derived}_vala.stamp; fi\n"
6064                 . "\t\@if test -f \$@; then :; else \\\n"
6065                 . "\t  \$(am__cd) \$(srcdir) && \$(MAKE) \$(AM_MAKEFLAGS) ${derived}_vala.stamp; \\\n"
6066                 . "\tfi\n";
6067
6068               # valac is not used when building from dist tarballs
6069               # distribute the generated files
6070               push_dist_common ($headerfile);
6071               $clean_files{$headerfile} = MAINTAINER_CLEAN;
6072             }
6073           $lastflag = $flag;
6074         }
6075     }
6076
6077   my $compile = $self->compile;
6078
6079   # Rewrite each occurrence of `AM_VALAFLAGS' in the compile
6080   # rule into `${derived}_VALAFLAGS' if it exists.
6081   my $val = "${derived}_VALAFLAGS";
6082   $compile =~ s/\(AM_VALAFLAGS\)/\($val\)/
6083     if set_seen ($val);
6084
6085   # VALAFLAGS is a user variable (per GNU Standards),
6086   # it should not be overridden in the Makefile...
6087   check_user_variables ['VALAFLAGS'];
6088
6089   my $dirname = dirname ($name);
6090
6091   # Only generate C code, do not run C compiler
6092   $compile .= " -C";
6093
6094   my $verbose = verbose_flag ('VALAC');
6095   my $silent = silent_flag ();
6096
6097   $output_rules .=
6098     "${derived}_vala.stamp: \$(${derived}_SOURCES)\n".
6099     "\t${verbose}${compile} \$(${derived}_SOURCES)\n".
6100     "\t${silent}touch \$@\n";
6101
6102   push_dist_common ("${derived}_vala.stamp");
6103
6104   $clean_files{"${derived}_vala.stamp"} = MAINTAINER_CLEAN;
6105 }
6106
6107 # Add output rules to invoke valac and create stamp file as a witness
6108 # to handle multiple outputs. This function is called after all source
6109 # file processing is done.
6110 sub lang_vala_finish
6111 {
6112   my ($self) = @_;
6113
6114   foreach my $prog (keys %known_programs)
6115     {
6116       lang_vala_finish_target ($self, $prog);
6117     }
6118
6119   while (my ($name) = each %known_libraries)
6120     {
6121       lang_vala_finish_target ($self, $name);
6122     }
6123 }
6124
6125 # The built .c files should be cleaned only on maintainer-clean
6126 # as the .c files are distributed. This function is called for each
6127 # .vala source file.
6128 sub lang_vala_target_hook
6129 {
6130   my ($self, $aggregate, $output, $input, %transform) = @_;
6131
6132   $clean_files{$output} = MAINTAINER_CLEAN;
6133 }
6134
6135 # This is a yacc helper which is called whenever we have decided to
6136 # compile a yacc file.
6137 sub lang_yacc_target_hook
6138 {
6139     my ($self, $aggregate, $output, $input, %transform) = @_;
6140
6141     my $flag = $aggregate . "_YFLAGS";
6142     my $flagvar = var $flag;
6143     my $YFLAGSvar = var 'YFLAGS';
6144     if (($flagvar && $flagvar->variable_value =~ /$DASH_D_PATTERN/o)
6145         || ($YFLAGSvar && $YFLAGSvar->variable_value =~ /$DASH_D_PATTERN/o))
6146     {
6147         (my $output_base = $output) =~ s/$KNOWN_EXTENSIONS_PATTERN$//;
6148         my $header = $output_base . '.h';
6149
6150         # Found a `-d' that applies to the compilation of this file.
6151         # Add a dependency for the generated header file, and arrange
6152         # for that file to be included in the distribution.
6153         foreach my $cond (Automake::Rule::define (${header}, 'internal',
6154                                                   RULE_AUTOMAKE, TRUE,
6155                                                   INTERNAL))
6156           {
6157             my $condstr = $cond->subst_string;
6158             $output_rules .=
6159               "$condstr${header}: $output\n"
6160               # Recover from removal of $header
6161               . "$condstr\t\@if test ! -f \$@; then rm -f $output; else :; fi\n"
6162               . "$condstr\t\@if test ! -f \$@; then \$(MAKE) \$(AM_MAKEFLAGS) $output; else :; fi\n";
6163           }
6164         # Distribute the generated file, unless its .y source was
6165         # listed in a nodist_ variable.  (&handle_source_transform
6166         # will set DIST_SOURCE.)
6167         &push_dist_common ($header)
6168           if $transform{'DIST_SOURCE'};
6169
6170         # If the files are built in the build directory, then we want
6171         # to remove them with `make clean'.  If they are in srcdir
6172         # they shouldn't be touched.  However, we can't determine this
6173         # statically, and the GNU rules say that yacc/lex output files
6174         # should be removed by maintainer-clean.  So that's what we
6175         # do.
6176         $clean_files{$header} = MAINTAINER_CLEAN;
6177     }
6178     # Erase $OUTPUT on `make maintainer-clean' (by GNU standards).
6179     # See the comment above for $HEADER.
6180     $clean_files{$output} = MAINTAINER_CLEAN;
6181 }
6182
6183 # This is a lex helper which is called whenever we have decided to
6184 # compile a lex file.
6185 sub lang_lex_target_hook
6186 {
6187     my ($self, $aggregate, $output, $input) = @_;
6188     # If the files are built in the build directory, then we want to
6189     # remove them with `make clean'.  If they are in srcdir they
6190     # shouldn't be touched.  However, we can't determine this
6191     # statically, and the GNU rules say that yacc/lex output files
6192     # should be removed by maintainer-clean.  So that's what we do.
6193     $clean_files{$output} = MAINTAINER_CLEAN;
6194 }
6195
6196 # This is a helper for both lex and yacc.
6197 sub yacc_lex_finish_helper
6198 {
6199   return if defined $language_scratch{'lex-yacc-done'};
6200   $language_scratch{'lex-yacc-done'} = 1;
6201
6202   # FIXME: for now, no line number.
6203   require_conf_file ($configure_ac, FOREIGN, 'ylwrap');
6204   &define_variable ('YLWRAP', "$am_config_aux_dir/ylwrap", INTERNAL);
6205 }
6206
6207 sub lang_yacc_finish
6208 {
6209   return if defined $language_scratch{'yacc-done'};
6210   $language_scratch{'yacc-done'} = 1;
6211
6212   reject_var 'YACCFLAGS', "`YACCFLAGS' obsolete; use `YFLAGS' instead";
6213
6214   yacc_lex_finish_helper;
6215 }
6216
6217
6218 sub lang_lex_finish
6219 {
6220   return if defined $language_scratch{'lex-done'};
6221   $language_scratch{'lex-done'} = 1;
6222
6223   yacc_lex_finish_helper;
6224 }
6225
6226
6227 # Given a hash table of linker names, pick the name that has the most
6228 # precedence.  This is lame, but something has to have global
6229 # knowledge in order to eliminate the conflict.  Add more linkers as
6230 # required.
6231 sub resolve_linker
6232 {
6233     my (%linkers) = @_;
6234
6235     foreach my $l (qw(GCJLINK CXXLINK F77LINK FCLINK OBJCLINK UPCLINK))
6236     {
6237         return $l if defined $linkers{$l};
6238     }
6239     return 'LINK';
6240 }
6241
6242 # Called to indicate that an extension was used.
6243 sub saw_extension
6244 {
6245     my ($ext) = @_;
6246     if (! defined $extension_seen{$ext})
6247     {
6248         $extension_seen{$ext} = 1;
6249     }
6250     else
6251     {
6252         ++$extension_seen{$ext};
6253     }
6254 }
6255
6256 # Return the number of files seen for a given language.  Knows about
6257 # special cases we care about.  FIXME: this is hideous.  We need
6258 # something that involves real language objects.  For instance yacc
6259 # and yaccxx could both derive from a common yacc class which would
6260 # know about the strange ylwrap requirement.  (Or better yet we could
6261 # just not support legacy yacc!)
6262 sub count_files_for_language
6263 {
6264     my ($name) = @_;
6265
6266     my @names;
6267     if ($name eq 'yacc' || $name eq 'yaccxx')
6268     {
6269         @names = ('yacc', 'yaccxx');
6270     }
6271     elsif ($name eq 'lex' || $name eq 'lexxx')
6272     {
6273         @names = ('lex', 'lexxx');
6274     }
6275     else
6276     {
6277         @names = ($name);
6278     }
6279
6280     my $r = 0;
6281     foreach $name (@names)
6282     {
6283         my $lang = $languages{$name};
6284         foreach my $ext (@{$lang->extensions})
6285         {
6286             $r += $extension_seen{$ext}
6287                 if defined $extension_seen{$ext};
6288         }
6289     }
6290
6291     return $r
6292 }
6293
6294 # Called to ask whether source files have been seen . If HEADERS is 1,
6295 # headers can be included.
6296 sub saw_sources_p
6297 {
6298     my ($headers) = @_;
6299
6300     # count all the sources
6301     my $count = 0;
6302     foreach my $val (values %extension_seen)
6303     {
6304         $count += $val;
6305     }
6306
6307     if (!$headers)
6308     {
6309         $count -= count_files_for_language ('header');
6310     }
6311
6312     return $count > 0;
6313 }
6314
6315
6316 # register_language (%ATTRIBUTE)
6317 # ------------------------------
6318 # Register a single language.
6319 # Each %ATTRIBUTE is of the form ATTRIBUTE => VALUE.
6320 sub register_language (%)
6321 {
6322   my (%option) = @_;
6323
6324   # Set the defaults.
6325   $option{'ansi'} = 0
6326     unless defined $option{'ansi'};
6327   $option{'autodep'} = 'no'
6328     unless defined $option{'autodep'};
6329   $option{'linker'} = ''
6330     unless defined $option{'linker'};
6331   $option{'flags'} = []
6332     unless defined $option{'flags'};
6333   $option{'output_extensions'} = sub { return ( '.$(OBJEXT)', '.lo' ) }
6334     unless defined $option{'output_extensions'};
6335   $option{'nodist_specific'} = 0
6336     unless defined $option{'nodist_specific'};
6337
6338   my $lang = new Language (%option);
6339
6340   # Fill indexes.
6341   $extension_map{$_} = $lang->name foreach @{$lang->extensions};
6342   $languages{$lang->name} = $lang;
6343   my $link = $lang->linker;
6344   if ($link)
6345     {
6346       if (exists $link_languages{$link})
6347         {
6348           prog_error ("`$link' has different definitions in "
6349                       . $lang->name . " and " . $link_languages{$link}->name)
6350             if $lang->link ne $link_languages{$link}->link;
6351         }
6352       else
6353         {
6354           $link_languages{$link} = $lang;
6355         }
6356     }
6357
6358   # Update the pattern of known extensions.
6359   accept_extensions (@{$lang->extensions});
6360
6361   # Upate the $suffix_rule map.
6362   foreach my $suffix (@{$lang->extensions})
6363     {
6364       foreach my $dest (&{$lang->output_extensions} ($suffix))
6365         {
6366           register_suffix_rule (INTERNAL, $suffix, $dest);
6367         }
6368     }
6369 }
6370
6371 # derive_suffix ($EXT, $OBJ)
6372 # --------------------------
6373 # This function is used to find a path from a user-specified suffix $EXT
6374 # to $OBJ or to some other suffix we recognize internally, e.g. `cc'.
6375 sub derive_suffix ($$)
6376 {
6377   my ($source_ext, $obj) = @_;
6378
6379   while (! $extension_map{$source_ext}
6380          && $source_ext ne $obj
6381          && exists $suffix_rules->{$source_ext}
6382          && exists $suffix_rules->{$source_ext}{$obj})
6383     {
6384       $source_ext = $suffix_rules->{$source_ext}{$obj}[0];
6385     }
6386
6387   return $source_ext;
6388 }
6389
6390
6391 ################################################################
6392
6393 # Pretty-print something and append to output_rules.
6394 sub pretty_print_rule
6395 {
6396     $output_rules .= &makefile_wrap (@_);
6397 }
6398
6399
6400 ################################################################
6401
6402
6403 ## -------------------------------- ##
6404 ## Handling the conditional stack.  ##
6405 ## -------------------------------- ##
6406
6407
6408 # $STRING
6409 # make_conditional_string ($NEGATE, $COND)
6410 # ----------------------------------------
6411 sub make_conditional_string ($$)
6412 {
6413   my ($negate, $cond) = @_;
6414   $cond = "${cond}_TRUE"
6415     unless $cond =~ /^TRUE|FALSE$/;
6416   $cond = Automake::Condition::conditional_negate ($cond)
6417     if $negate;
6418   return $cond;
6419 }
6420
6421
6422 my %_am_macro_for_cond =
6423   (
6424   AMDEP => "one of the compiler tests\n"
6425            . "    AC_PROG_CC, AC_PROG_CXX, AC_PROG_CXX, AC_PROG_OBJC,\n"
6426            . "    AM_PROG_AS, AM_PROG_GCJ, AM_PROG_UPC",
6427   am__fastdepCC => 'AC_PROG_CC',
6428   am__fastdepCCAS => 'AM_PROG_AS',
6429   am__fastdepCXX => 'AC_PROG_CXX',
6430   am__fastdepGCJ => 'AM_PROG_GCJ',
6431   am__fastdepOBJC => 'AC_PROG_OBJC',
6432   am__fastdepUPC => 'AM_PROG_UPC'
6433   );
6434
6435 # $COND
6436 # cond_stack_if ($NEGATE, $COND, $WHERE)
6437 # --------------------------------------
6438 sub cond_stack_if ($$$)
6439 {
6440   my ($negate, $cond, $where) = @_;
6441
6442   if (! $configure_cond{$cond} && $cond !~ /^TRUE|FALSE$/)
6443     {
6444       my $text = "$cond does not appear in AM_CONDITIONAL";
6445       my $scope = US_LOCAL;
6446       if (exists $_am_macro_for_cond{$cond})
6447         {
6448           my $mac = $_am_macro_for_cond{$cond};
6449           $text .= "\n  The usual way to define `$cond' is to add ";
6450           $text .= ($mac =~ / /) ? $mac : "`$mac'";
6451           $text .= "\n  to `$configure_ac' and run `aclocal' and `autoconf' again.";
6452           # These warnings appear in Automake files (depend2.am),
6453           # so there is no need to display them more than once:
6454           $scope = US_GLOBAL;
6455         }
6456       error $where, $text, uniq_scope => $scope;
6457     }
6458
6459   push (@cond_stack, make_conditional_string ($negate, $cond));
6460
6461   return new Automake::Condition (@cond_stack);
6462 }
6463
6464
6465 # $COND
6466 # cond_stack_else ($NEGATE, $COND, $WHERE)
6467 # ----------------------------------------
6468 sub cond_stack_else ($$$)
6469 {
6470   my ($negate, $cond, $where) = @_;
6471
6472   if (! @cond_stack)
6473     {
6474       error $where, "else without if";
6475       return FALSE;
6476     }
6477
6478   $cond_stack[$#cond_stack] =
6479     Automake::Condition::conditional_negate ($cond_stack[$#cond_stack]);
6480
6481   # If $COND is given, check against it.
6482   if (defined $cond)
6483     {
6484       $cond = make_conditional_string ($negate, $cond);
6485
6486       error ($where, "else reminder ($negate$cond) incompatible with "
6487              . "current conditional: $cond_stack[$#cond_stack]")
6488         if $cond_stack[$#cond_stack] ne $cond;
6489     }
6490
6491   return new Automake::Condition (@cond_stack);
6492 }
6493
6494
6495 # $COND
6496 # cond_stack_endif ($NEGATE, $COND, $WHERE)
6497 # -----------------------------------------
6498 sub cond_stack_endif ($$$)
6499 {
6500   my ($negate, $cond, $where) = @_;
6501   my $old_cond;
6502
6503   if (! @cond_stack)
6504     {
6505       error $where, "endif without if";
6506       return TRUE;
6507     }
6508
6509   # If $COND is given, check against it.
6510   if (defined $cond)
6511     {
6512       $cond = make_conditional_string ($negate, $cond);
6513
6514       error ($where, "endif reminder ($negate$cond) incompatible with "
6515              . "current conditional: $cond_stack[$#cond_stack]")
6516         if $cond_stack[$#cond_stack] ne $cond;
6517     }
6518
6519   pop @cond_stack;
6520
6521   return new Automake::Condition (@cond_stack);
6522 }
6523
6524
6525
6526
6527
6528 ## ------------------------ ##
6529 ## Handling the variables.  ##
6530 ## ------------------------ ##
6531
6532
6533 # &define_pretty_variable ($VAR, $COND, $WHERE, @VALUE)
6534 # -----------------------------------------------------
6535 # Like define_variable, but the value is a list, and the variable may
6536 # be defined conditionally.  The second argument is the condition
6537 # under which the value should be defined; this should be the empty
6538 # string to define the variable unconditionally.  The third argument
6539 # is a list holding the values to use for the variable.  The value is
6540 # pretty printed in the output file.
6541 sub define_pretty_variable ($$$@)
6542 {
6543     my ($var, $cond, $where, @value) = @_;
6544
6545     if (! vardef ($var, $cond))
6546     {
6547         Automake::Variable::define ($var, VAR_AUTOMAKE, '', $cond, "@value",
6548                                     '', $where, VAR_PRETTY);
6549         rvar ($var)->rdef ($cond)->set_seen;
6550     }
6551 }
6552
6553
6554 # define_variable ($VAR, $VALUE, $WHERE)
6555 # --------------------------------------
6556 # Define a new Automake Makefile variable VAR to VALUE, but only if
6557 # not already defined.
6558 sub define_variable ($$$)
6559 {
6560     my ($var, $value, $where) = @_;
6561     define_pretty_variable ($var, TRUE, $where, $value);
6562 }
6563
6564
6565 # define_files_variable ($VAR, \@BASENAME, $EXTENSION, $WHERE)
6566 # ------------------------------------------------------------
6567 # Define the $VAR which content is the list of file names composed of
6568 # a @BASENAME and the $EXTENSION.
6569 sub define_files_variable ($\@$$)
6570 {
6571   my ($var, $basename, $extension, $where) = @_;
6572   define_variable ($var,
6573                    join (' ', map { "$_.$extension" } @$basename),
6574                    $where);
6575 }
6576
6577
6578 # Like define_variable, but define a variable to be the configure
6579 # substitution by the same name.
6580 sub define_configure_variable ($)
6581 {
6582   my ($var) = @_;
6583
6584   my $pretty = VAR_ASIS;
6585   my $owner = VAR_CONFIGURE;
6586
6587   # Some variables we do not want to output.  For instance it
6588   # would be a bad idea to output `U = @U@` when `@U@` can be
6589   # substituted as `\`.
6590   $pretty = VAR_SILENT if exists $ignored_configure_vars{$var};
6591
6592   # ANSI2KNR is a variable that Automake wants to redefine, so
6593   # it must be owned by Automake.  (It is also used as a proof
6594   # that AM_C_PROTOTYPES has been run, that's why we do not simply
6595   # omit the AC_SUBST.)
6596   $owner = VAR_AUTOMAKE if $var eq 'ANSI2KNR';
6597
6598   Automake::Variable::define ($var, $owner, '', TRUE, subst $var,
6599                               '', $configure_vars{$var}, $pretty);
6600 }
6601
6602
6603 # define_compiler_variable ($LANG)
6604 # --------------------------------
6605 # Define a compiler variable.  We also handle defining the `LT'
6606 # version of the command when using libtool.
6607 sub define_compiler_variable ($)
6608 {
6609     my ($lang) = @_;
6610
6611     my ($var, $value) = ($lang->compiler, $lang->compile);
6612     my $libtool_tag = '';
6613     $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
6614       if $lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag};
6615     &define_variable ($var, $value, INTERNAL);
6616     if (var ('LIBTOOL'))
6617       {
6618         my $verbose = define_verbose_libtool ();
6619         &define_variable ("LT$var",
6620                           "\$(LIBTOOL) $verbose $libtool_tag\$(AM_LIBTOOLFLAGS) "
6621                           . "\$(LIBTOOLFLAGS) --mode=compile $value",
6622                           INTERNAL);
6623       }
6624     define_verbose_tagvar ($lang->ccer || 'GEN');
6625 }
6626
6627
6628 # define_linker_variable ($LANG)
6629 # ------------------------------
6630 # Define linker variables.
6631 sub define_linker_variable ($)
6632 {
6633     my ($lang) = @_;
6634
6635     my $libtool_tag = '';
6636     $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
6637       if $lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag};
6638     # CCLD = $(CC).
6639     &define_variable ($lang->lder, $lang->ld, INTERNAL);
6640     # CCLINK = $(CCLD) blah blah...
6641     my $link = '';
6642     if (var ('LIBTOOL'))
6643       {
6644         my $verbose = define_verbose_libtool ();
6645         $link = "\$(LIBTOOL) $verbose $libtool_tag\$(AM_LIBTOOLFLAGS) "
6646                 . "\$(LIBTOOLFLAGS) --mode=link ";
6647       }
6648     &define_variable ($lang->linker, $link . $lang->link, INTERNAL);
6649     &define_variable ($lang->compiler,  $lang);
6650     &define_verbose_tagvar ($lang->lder || 'GEN');
6651 }
6652
6653 sub define_per_target_linker_variable ($$)
6654 {
6655   my ($linker, $target) = @_;
6656
6657   # If the user wrote a custom link command, we don't define ours.
6658   return "${target}_LINK"
6659     if set_seen "${target}_LINK";
6660
6661   my $xlink = $linker ? $linker : 'LINK';
6662
6663   my $lang = $link_languages{$xlink};
6664   prog_error "Unknown language for linker variable `$xlink'"
6665     unless $lang;
6666
6667   my $link_command = $lang->link;
6668   if (var 'LIBTOOL')
6669     {
6670       my $libtool_tag = '';
6671       $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
6672         if $lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag};
6673
6674       my $verbose = define_verbose_libtool ();
6675       $link_command =
6676         "\$(LIBTOOL) $verbose $libtool_tag\$(AM_LIBTOOLFLAGS) \$(LIBTOOLFLAGS) "
6677         . "--mode=link " . $link_command;
6678     }
6679
6680   # Rewrite each occurrence of `AM_$flag' in the link
6681   # command into `${derived}_$flag' if it exists.
6682   my $orig_command = $link_command;
6683   my @flags = (@{$lang->flags}, 'LDFLAGS');
6684   push @flags, 'LIBTOOLFLAGS' if var 'LIBTOOL';
6685   for my $flag (@flags)
6686     {
6687       my $val = "${target}_$flag";
6688       $link_command =~ s/\(AM_$flag\)/\($val\)/
6689         if set_seen ($val);
6690     }
6691
6692   # If the computed command is the same as the generic command, use
6693   # the command linker variable.
6694   return ($lang->linker, $lang->lder)
6695     if $link_command eq $orig_command;
6696
6697   &define_variable ("${target}_LINK", $link_command, INTERNAL);
6698   return ("${target}_LINK", $lang->lder);
6699 }
6700
6701 ################################################################
6702
6703 # &check_trailing_slash ($WHERE, $LINE)
6704 # -------------------------------------
6705 # Return 1 iff $LINE ends with a slash.
6706 # Might modify $LINE.
6707 sub check_trailing_slash ($\$)
6708 {
6709   my ($where, $line) = @_;
6710
6711   # Ignore `##' lines.
6712   return 0 if $$line =~ /$IGNORE_PATTERN/o;
6713
6714   # Catch and fix a common error.
6715   msg "syntax", $where, "whitespace following trailing backslash"
6716     if $$line =~ s/\\\s+\n$/\\\n/;
6717
6718   return $$line =~ /\\$/;
6719 }
6720
6721
6722 # &read_am_file ($AMFILE, $WHERE)
6723 # -------------------------------
6724 # Read Makefile.am and set up %contents.  Simultaneously copy lines
6725 # from Makefile.am into $output_trailer, or define variables as
6726 # appropriate.  NOTE we put rules in the trailer section.  We want
6727 # user rules to come after our generated stuff.
6728 sub read_am_file ($$)
6729 {
6730     my ($amfile, $where) = @_;
6731
6732     my $am_file = new Automake::XFile ("< $amfile");
6733     verb "reading $amfile";
6734
6735     # Keep track of the youngest output dependency.
6736     my $mtime = mtime $amfile;
6737     $output_deps_greatest_timestamp = $mtime
6738       if $mtime > $output_deps_greatest_timestamp;
6739
6740     my $spacing = '';
6741     my $comment = '';
6742     my $blank = 0;
6743     my $saw_bk = 0;
6744     my $var_look = VAR_ASIS;
6745
6746     use constant IN_VAR_DEF => 0;
6747     use constant IN_RULE_DEF => 1;
6748     use constant IN_COMMENT => 2;
6749     my $prev_state = IN_RULE_DEF;
6750
6751     while ($_ = $am_file->getline)
6752     {
6753         $where->set ("$amfile:$.");
6754         if (/$IGNORE_PATTERN/o)
6755         {
6756             # Merely delete comments beginning with two hashes.
6757         }
6758         elsif (/$WHITE_PATTERN/o)
6759         {
6760             error $where, "blank line following trailing backslash"
6761               if $saw_bk;
6762             # Stick a single white line before the incoming macro or rule.
6763             $spacing = "\n";
6764             $blank = 1;
6765             # Flush all comments seen so far.
6766             if ($comment ne '')
6767             {
6768                 $output_vars .= $comment;
6769                 $comment = '';
6770             }
6771         }
6772         elsif (/$COMMENT_PATTERN/o)
6773         {
6774             # Stick comments before the incoming macro or rule.  Make
6775             # sure a blank line precedes the first block of comments.
6776             $spacing = "\n" unless $blank;
6777             $blank = 1;
6778             $comment .= $spacing . $_;
6779             $spacing = '';
6780             $prev_state = IN_COMMENT;
6781         }
6782         else
6783         {
6784             last;
6785         }
6786         $saw_bk = check_trailing_slash ($where, $_);
6787     }
6788
6789     # We save the conditional stack on entry, and then check to make
6790     # sure it is the same on exit.  This lets us conditionally include
6791     # other files.
6792     my @saved_cond_stack = @cond_stack;
6793     my $cond = new Automake::Condition (@cond_stack);
6794
6795     my $last_var_name = '';
6796     my $last_var_type = '';
6797     my $last_var_value = '';
6798     my $last_where;
6799     # FIXME: shouldn't use $_ in this loop; it is too big.
6800     while ($_)
6801     {
6802         $where->set ("$amfile:$.");
6803
6804         # Make sure the line is \n-terminated.
6805         chomp;
6806         $_ .= "\n";
6807
6808         # Don't look at MAINTAINER_MODE_TRUE here.  That shouldn't be
6809         # used by users.  @MAINT@ is an anachronism now.
6810         $_ =~ s/\@MAINT\@//g
6811             unless $seen_maint_mode;
6812
6813         my $new_saw_bk = check_trailing_slash ($where, $_);
6814
6815         if (/$IGNORE_PATTERN/o)
6816         {
6817             # Merely delete comments beginning with two hashes.
6818
6819             # Keep any backslash from the previous line.
6820             $new_saw_bk = $saw_bk;
6821         }
6822         elsif (/$WHITE_PATTERN/o)
6823         {
6824             # Stick a single white line before the incoming macro or rule.
6825             $spacing = "\n";
6826             error $where, "blank line following trailing backslash"
6827               if $saw_bk;
6828         }
6829         elsif (/$COMMENT_PATTERN/o)
6830         {
6831             error $where, "comment following trailing backslash"
6832               if $saw_bk && $prev_state != IN_COMMENT;
6833
6834             # Stick comments before the incoming macro or rule.
6835             $comment .= $spacing . $_;
6836             $spacing = '';
6837             $prev_state = IN_COMMENT;
6838         }
6839         elsif ($saw_bk)
6840         {
6841             if ($prev_state == IN_RULE_DEF)
6842             {
6843               my $cond = new Automake::Condition @cond_stack;
6844               $output_trailer .= $cond->subst_string;
6845               $output_trailer .= $_;
6846             }
6847             elsif ($prev_state == IN_COMMENT)
6848             {
6849                 # If the line doesn't start with a `#', add it.
6850                 # We do this because a continued comment like
6851                 #   # A = foo \
6852                 #         bar \
6853                 #         baz
6854                 # is not portable.  BSD make doesn't honor
6855                 # escaped newlines in comments.
6856                 s/^#?/#/;
6857                 $comment .= $spacing . $_;
6858             }
6859             else # $prev_state == IN_VAR_DEF
6860             {
6861               $last_var_value .= ' '
6862                 unless $last_var_value =~ /\s$/;
6863               $last_var_value .= $_;
6864
6865               if (!/\\$/)
6866                 {
6867                   Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
6868                                               $last_var_type, $cond,
6869                                               $last_var_value, $comment,
6870                                               $last_where, VAR_ASIS)
6871                     if $cond != FALSE;
6872                   $comment = $spacing = '';
6873                 }
6874             }
6875         }
6876
6877         elsif (/$IF_PATTERN/o)
6878           {
6879             $cond = cond_stack_if ($1, $2, $where);
6880           }
6881         elsif (/$ELSE_PATTERN/o)
6882           {
6883             $cond = cond_stack_else ($1, $2, $where);
6884           }
6885         elsif (/$ENDIF_PATTERN/o)
6886           {
6887             $cond = cond_stack_endif ($1, $2, $where);
6888           }
6889
6890         elsif (/$RULE_PATTERN/o)
6891         {
6892             # Found a rule.
6893             $prev_state = IN_RULE_DEF;
6894
6895             # For now we have to output all definitions of user rules
6896             # and can't diagnose duplicates (see the comment in
6897             # Automake::Rule::define). So we go on and ignore the return value.
6898             Automake::Rule::define ($1, $amfile, RULE_USER, $cond, $where);
6899
6900             check_variable_expansions ($_, $where);
6901
6902             $output_trailer .= $comment . $spacing;
6903             my $cond = new Automake::Condition @cond_stack;
6904             $output_trailer .= $cond->subst_string;
6905             $output_trailer .= $_;
6906             $comment = $spacing = '';
6907         }
6908         elsif (/$ASSIGNMENT_PATTERN/o)
6909         {
6910             # Found a macro definition.
6911             $prev_state = IN_VAR_DEF;
6912             $last_var_name = $1;
6913             $last_var_type = $2;
6914             $last_var_value = $3;
6915             $last_where = $where->clone;
6916             if ($3 ne '' && substr ($3, -1) eq "\\")
6917               {
6918                 # We preserve the `\' because otherwise the long lines
6919                 # that are generated will be truncated by broken
6920                 # `sed's.
6921                 $last_var_value = $3 . "\n";
6922               }
6923             # Normally we try to output variable definitions in the
6924             # same format they were input.  However, POSIX compliant
6925             # systems are not required to support lines longer than
6926             # 2048 bytes (most notably, some sed implementation are
6927             # limited to 4000 bytes, and sed is used by config.status
6928             # to rewrite Makefile.in into Makefile).  Moreover nobody
6929             # would really write such long lines by hand since it is
6930             # hardly maintainable.  So if a line is longer that 1000
6931             # bytes (an arbitrary limit), assume it has been
6932             # automatically generated by some tools, and flatten the
6933             # variable definition.  Otherwise, keep the variable as it
6934             # as been input.
6935             $var_look = VAR_PRETTY if length ($last_var_value) >= 1000;
6936
6937             if (!/\\$/)
6938               {
6939                 Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
6940                                             $last_var_type, $cond,
6941                                             $last_var_value, $comment,
6942                                             $last_where, $var_look)
6943                   if $cond != FALSE;
6944                 $comment = $spacing = '';
6945                 $var_look = VAR_ASIS;
6946               }
6947         }
6948         elsif (/$INCLUDE_PATTERN/o)
6949         {
6950             my $path = $1;
6951
6952             if ($path =~ s/^\$\(top_srcdir\)\///)
6953               {
6954                 push (@include_stack, "\$\(top_srcdir\)/$path");
6955                 # Distribute any included file.
6956
6957                 # Always use the $(top_srcdir) prefix in DIST_COMMON,
6958                 # otherwise OSF make will implicitly copy the included
6959                 # file in the build tree during `make distdir' to satisfy
6960                 # the dependency.
6961                 # (subdircond2.test and subdircond3.test will fail.)
6962                 push_dist_common ("\$\(top_srcdir\)/$path");
6963               }
6964             else
6965               {
6966                 $path =~ s/\$\(srcdir\)\///;
6967                 push (@include_stack, "\$\(srcdir\)/$path");
6968                 # Always use the $(srcdir) prefix in DIST_COMMON,
6969                 # otherwise OSF make will implicitly copy the included
6970                 # file in the build tree during `make distdir' to satisfy
6971                 # the dependency.
6972                 # (subdircond2.test and subdircond3.test will fail.)
6973                 push_dist_common ("\$\(srcdir\)/$path");
6974                 $path = $relative_dir . "/" . $path if $relative_dir ne '.';
6975               }
6976             $where->push_context ("`$path' included from here");
6977             &read_am_file ($path, $where);
6978             $where->pop_context;
6979         }
6980         else
6981         {
6982             # This isn't an error; it is probably a continued rule.
6983             # In fact, this is what we assume.
6984             $prev_state = IN_RULE_DEF;
6985             check_variable_expansions ($_, $where);
6986             $output_trailer .= $comment . $spacing;
6987             my $cond = new Automake::Condition @cond_stack;
6988             $output_trailer .= $cond->subst_string;
6989             $output_trailer .= $_;
6990             $comment = $spacing = '';
6991             error $where, "`#' comment at start of rule is unportable"
6992               if $_ =~ /^\t\s*\#/;
6993         }
6994
6995         $saw_bk = $new_saw_bk;
6996         $_ = $am_file->getline;
6997     }
6998
6999     $output_trailer .= $comment;
7000
7001     error ($where, "trailing backslash on last line")
7002       if $saw_bk;
7003
7004     error ($where, (@cond_stack ? "unterminated conditionals: @cond_stack"
7005                     : "too many conditionals closed in include file"))
7006       if "@saved_cond_stack" ne "@cond_stack";
7007 }
7008
7009
7010 # define_standard_variables ()
7011 # ----------------------------
7012 # A helper for read_main_am_file which initializes configure variables
7013 # and variables from header-vars.am.
7014 sub define_standard_variables
7015 {
7016   my $saved_output_vars = $output_vars;
7017   my ($comments, undef, $rules) =
7018     file_contents_internal (1, "$libdir/am/header-vars.am",
7019                             new Automake::Location);
7020
7021   foreach my $var (sort keys %configure_vars)
7022     {
7023       &define_configure_variable ($var);
7024     }
7025
7026   $output_vars .= $comments . $rules;
7027 }
7028
7029 # Read main am file.
7030 sub read_main_am_file
7031 {
7032     my ($amfile) = @_;
7033
7034     # This supports the strange variable tricks we are about to play.
7035     prog_error ("variable defined before read_main_am_file\n" . variables_dump ())
7036       if (scalar (variables) > 0);
7037
7038     # Generate copyright header for generated Makefile.in.
7039     # We do discard the output of predefined variables, handled below.
7040     $output_vars = ("# $in_file_name generated by automake "
7041                    . $VERSION . " from $am_file_name.\n");
7042     $output_vars .= '# ' . subst ('configure_input') . "\n";
7043     $output_vars .= $gen_copyright;
7044
7045     # We want to predefine as many variables as possible.  This lets
7046     # the user set them with `+=' in Makefile.am.
7047     &define_standard_variables;
7048
7049     # Read user file, which might override some of our values.
7050     &read_am_file ($amfile, new Automake::Location);
7051 }
7052
7053
7054
7055 ################################################################
7056
7057 # $FLATTENED
7058 # &flatten ($STRING)
7059 # ------------------
7060 # Flatten the $STRING and return the result.
7061 sub flatten
7062 {
7063   $_ = shift;
7064
7065   s/\\\n//somg;
7066   s/\s+/ /g;
7067   s/^ //;
7068   s/ $//;
7069
7070   return $_;
7071 }
7072
7073
7074 # transform_token ($TOKEN, \%PAIRS, $KEY)
7075 # =======================================
7076 # Return the value associated to $KEY in %PAIRS, as used on $TOKEN
7077 # (which should be ?KEY? or any of the special %% requests)..
7078 sub transform_token ($$$)
7079 {
7080   my ($token, $transform, $key) = @_;
7081   my $res = $transform->{$key};
7082   prog_error "Unknown key `$key' in `$token'" unless defined $res;
7083   return $res;
7084 }
7085
7086
7087 # transform ($TOKEN, \%PAIRS)
7088 # ===========================
7089 # If ($TOKEN, $VAL) is in %PAIRS:
7090 #   - replaces %KEY% with $VAL,
7091 #   - enables/disables ?KEY? and ?!KEY?,
7092 #   - replaces %?KEY% with TRUE or FALSE.
7093 #   - replaces %KEY?IFTRUE%, %KEY:IFFALSE%, and %KEY?IFTRUE:IFFALSE% with
7094 #     IFTRUE / IFFALSE, as appropriate.
7095 sub transform ($$)
7096 {
7097   my ($token, $transform) = @_;
7098
7099   # %KEY%.
7100   # Must be before the following pattern to exclude the case
7101   # when there is neither IFTRUE nor IFFALSE.
7102   if ($token =~ /^%([\w\-]+)%$/)
7103     {
7104       return transform_token ($token, $transform, $1);
7105     }
7106   # %KEY?IFTRUE%, %KEY:IFFALSE%, and %KEY?IFTRUE:IFFALSE%.
7107   elsif ($token =~ /^%([\w\-]+)(?:\?([^?:%]+))?(?::([^?:%]+))?%$/)
7108     {
7109       return transform_token ($token, $transform, $1) ? ($2 || '') : ($3 || '');
7110     }
7111   # %?KEY%.
7112   elsif ($token =~ /^%\?([\w\-]+)%$/)
7113     {
7114       return transform_token ($token, $transform, $1) ? 'TRUE' : 'FALSE';
7115     }
7116   # ?KEY? and ?!KEY?.
7117   elsif ($token =~ /^ \? (!?) ([\w\-]+) \? $/x)
7118     {
7119       my $neg = ($1 eq '!') ? 1 : 0;
7120       my $val = transform_token ($token, $transform, $2);
7121       return (!!$val == $neg) ? '##%' : '';
7122     }
7123   else
7124     {
7125       prog_error "Unknown request format: $token";
7126     }
7127 }
7128
7129
7130 # @PARAGRAPHS
7131 # &make_paragraphs ($MAKEFILE, [%TRANSFORM])
7132 # ------------------------------------------
7133 # Load a $MAKEFILE, apply the %TRANSFORM, and return it as a list of
7134 # paragraphs.
7135 sub make_paragraphs ($%)
7136 {
7137   my ($file, %transform) = @_;
7138
7139   # Complete %transform with global options.
7140   # Note that %transform goes last, so it overrides global options.
7141   %transform = ('CYGNUS'      => !! option 'cygnus',
7142                  'MAINTAINER-MODE'
7143                  => $seen_maint_mode ? subst ('MAINTAINER_MODE_TRUE') : '',
7144
7145                  'XZ'          => !! option 'dist-xz',
7146                  'LZMA'        => !! option 'dist-lzma',
7147                  'LZIP'        => !! option 'dist-lzip',
7148                  'BZIP2'       => !! option 'dist-bzip2',
7149                  'COMPRESS'    => !! option 'dist-tarZ',
7150                  'GZIP'        =>  ! option 'no-dist-gzip',
7151                  'SHAR'        => !! option 'dist-shar',
7152                  'ZIP'         => !! option 'dist-zip',
7153
7154                  'INSTALL-INFO' =>  ! option 'no-installinfo',
7155                  'INSTALL-MAN'  =>  ! option 'no-installman',
7156                  'HAVE-MANS'    => !! var ('MANS'),
7157                  'CK-NEWS'      => !! option 'check-news',
7158
7159                  'SUBDIRS'      => !! var ('SUBDIRS'),
7160                  'TOPDIR_P'     => $relative_dir eq '.',
7161
7162                  'BUILD'    => ($seen_canonical >= AC_CANONICAL_BUILD),
7163                  'HOST'     => ($seen_canonical >= AC_CANONICAL_HOST),
7164                  'TARGET'   => ($seen_canonical >= AC_CANONICAL_TARGET),
7165
7166                  'LIBTOOL'      => !! var ('LIBTOOL'),
7167                  'NONLIBTOOL'   => 1,
7168                  'FIRST'        => ! $transformed_files{$file},
7169                 %transform);
7170
7171   $transformed_files{$file} = 1;
7172   $_ = $am_file_cache{$file};
7173
7174   if (! defined $_)
7175     {
7176       verb "reading $file";
7177       # Swallow the whole file.
7178       my $fc_file = new Automake::XFile "< $file";
7179       my $saved_dollar_slash = $/;
7180       undef $/;
7181       $_ = $fc_file->getline;
7182       $/ = $saved_dollar_slash;
7183       $fc_file->close;
7184
7185       # Remove ##-comments.
7186       # Besides we don't need more than two consecutive new-lines.
7187       s/(?:$IGNORE_PATTERN|(?<=\n\n)\n+)//gom;
7188
7189       $am_file_cache{$file} = $_;
7190     }
7191
7192   # Substitute Automake template tokens.
7193   s/(?: % \?? [\w\-]+ %
7194       | % [\w\-]+ (?:\?[^?:%]+)? (?::[^?:%]+)? %
7195       | \? !? [\w\-]+ \?
7196     )/transform($&, \%transform)/gex;
7197   # transform() may have added some ##%-comments to strip.
7198   # (we use `##%' instead of `##' so we can distinguish ##%##%##% from
7199   # ####### and do not remove the latter.)
7200   s/^[ \t]*(?:##%)+.*\n//gm;
7201
7202   # Split at unescaped new lines.
7203   my @lines = split (/(?<!\\)\n/, $_);
7204   my @res;
7205
7206   while (defined ($_ = shift @lines))
7207     {
7208       my $paragraph = $_;
7209       # If we are a rule, eat as long as we start with a tab.
7210       if (/$RULE_PATTERN/smo)
7211         {
7212           while (defined ($_ = shift @lines) && $_ =~ /^\t/)
7213             {
7214               $paragraph .= "\n$_";
7215             }
7216           unshift (@lines, $_);
7217         }
7218
7219       # If we are a comments, eat as much comments as you can.
7220       elsif (/$COMMENT_PATTERN/smo)
7221         {
7222           while (defined ($_ = shift @lines)
7223                  && $_ =~ /$COMMENT_PATTERN/smo)
7224             {
7225               $paragraph .= "\n$_";
7226             }
7227           unshift (@lines, $_);
7228         }
7229
7230       push @res, $paragraph;
7231     }
7232
7233   return @res;
7234 }
7235
7236
7237
7238 # ($COMMENT, $VARIABLES, $RULES)
7239 # &file_contents_internal ($IS_AM, $FILE, $WHERE, [%TRANSFORM])
7240 # -------------------------------------------------------------
7241 # Return contents of a file from $libdir/am, automatically skipping
7242 # macros or rules which are already known. $IS_AM iff the caller is
7243 # reading an Automake file (as opposed to the user's Makefile.am).
7244 sub file_contents_internal ($$$%)
7245 {
7246     my ($is_am, $file, $where, %transform) = @_;
7247
7248     $where->set ($file);
7249
7250     my $result_vars = '';
7251     my $result_rules = '';
7252     my $comment = '';
7253     my $spacing = '';
7254
7255     # The following flags are used to track rules spanning across
7256     # multiple paragraphs.
7257     my $is_rule = 0;            # 1 if we are processing a rule.
7258     my $discard_rule = 0;       # 1 if the current rule should not be output.
7259
7260     # We save the conditional stack on entry, and then check to make
7261     # sure it is the same on exit.  This lets us conditionally include
7262     # other files.
7263     my @saved_cond_stack = @cond_stack;
7264     my $cond = new Automake::Condition (@cond_stack);
7265
7266     foreach (make_paragraphs ($file, %transform))
7267     {
7268         # FIXME: no line number available.
7269         $where->set ($file);
7270
7271         # Sanity checks.
7272         error $where, "blank line following trailing backslash:\n$_"
7273           if /\\$/;
7274         error $where, "comment following trailing backslash:\n$_"
7275           if /\\#/;
7276
7277         if (/^$/)
7278         {
7279             $is_rule = 0;
7280             # Stick empty line before the incoming macro or rule.
7281             $spacing = "\n";
7282         }
7283         elsif (/$COMMENT_PATTERN/mso)
7284         {
7285             $is_rule = 0;
7286             # Stick comments before the incoming macro or rule.
7287             $comment = "$_\n";
7288         }
7289
7290         # Handle inclusion of other files.
7291         elsif (/$INCLUDE_PATTERN/o)
7292         {
7293             if ($cond != FALSE)
7294               {
7295                 my $file = ($is_am ? "$libdir/am/" : '') . $1;
7296                 $where->push_context ("`$file' included from here");
7297                 # N-ary `.=' fails.
7298                 my ($com, $vars, $rules)
7299                   = file_contents_internal ($is_am, $file, $where, %transform);
7300                 $where->pop_context;
7301                 $comment .= $com;
7302                 $result_vars .= $vars;
7303                 $result_rules .= $rules;
7304               }
7305         }
7306
7307         # Handling the conditionals.
7308         elsif (/$IF_PATTERN/o)
7309           {
7310             $cond = cond_stack_if ($1, $2, $file);
7311           }
7312         elsif (/$ELSE_PATTERN/o)
7313           {
7314             $cond = cond_stack_else ($1, $2, $file);
7315           }
7316         elsif (/$ENDIF_PATTERN/o)
7317           {
7318             $cond = cond_stack_endif ($1, $2, $file);
7319           }
7320
7321         # Handling rules.
7322         elsif (/$RULE_PATTERN/mso)
7323         {
7324           $is_rule = 1;
7325           $discard_rule = 0;
7326           # Separate relationship from optional actions: the first
7327           # `new-line tab" not preceded by backslash (continuation
7328           # line).
7329           my $paragraph = $_;
7330           /^(.*?)(?:(?<!\\)\n(\t.*))?$/s;
7331           my ($relationship, $actions) = ($1, $2 || '');
7332
7333           # Separate targets from dependencies: the first colon.
7334           $relationship =~ /^([^:]+\S+) *: *(.*)$/som;
7335           my ($targets, $dependencies) = ($1, $2);
7336           # Remove the escaped new lines.
7337           # I don't know why, but I have to use a tmp $flat_deps.
7338           my $flat_deps = &flatten ($dependencies);
7339           my @deps = split (' ', $flat_deps);
7340
7341           foreach (split (' ', $targets))
7342             {
7343               # FIXME: 1. We are not robust to people defining several targets
7344               # at once, only some of them being in %dependencies.  The
7345               # actions from the targets in %dependencies are usually generated
7346               # from the content of %actions, but if some targets in $targets
7347               # are not in %dependencies the ELSE branch will output
7348               # a rule for all $targets (i.e. the targets which are both
7349               # in %dependencies and $targets will have two rules).
7350
7351               # FIXME: 2. The logic here is not able to output a
7352               # multi-paragraph rule several time (e.g. for each condition
7353               # it is defined for) because it only knows the first paragraph.
7354
7355               # FIXME: 3. We are not robust to people defining a subset
7356               # of a previously defined "multiple-target" rule.  E.g.
7357               # `foo:' after `foo bar:'.
7358
7359               # Output only if not in FALSE.
7360               if (defined $dependencies{$_} && $cond != FALSE)
7361                 {
7362                   &depend ($_, @deps);
7363                   register_action ($_, $actions);
7364                 }
7365               else
7366                 {
7367                   # Free-lance dependency.  Output the rule for all the
7368                   # targets instead of one by one.
7369                   my @undefined_conds =
7370                     Automake::Rule::define ($targets, $file,
7371                                             $is_am ? RULE_AUTOMAKE : RULE_USER,
7372                                             $cond, $where);
7373                   for my $undefined_cond (@undefined_conds)
7374                     {
7375                       my $condparagraph = $paragraph;
7376                       $condparagraph =~ s/^/$undefined_cond->subst_string/gme;
7377                       $result_rules .= "$spacing$comment$condparagraph\n";
7378                     }
7379                   if (scalar @undefined_conds == 0)
7380                     {
7381                       # Remember to discard next paragraphs
7382                       # if they belong to this rule.
7383                       # (but see also FIXME: #2 above.)
7384                       $discard_rule = 1;
7385                     }
7386                   $comment = $spacing = '';
7387                   last;
7388                 }
7389             }
7390         }
7391
7392         elsif (/$ASSIGNMENT_PATTERN/mso)
7393         {
7394             my ($var, $type, $val) = ($1, $2, $3);
7395             error $where, "variable `$var' with trailing backslash"
7396               if /\\$/;
7397
7398             $is_rule = 0;
7399
7400             Automake::Variable::define ($var,
7401                                         $is_am ? VAR_AUTOMAKE : VAR_MAKEFILE,
7402                                         $type, $cond, $val, $comment, $where,
7403                                         VAR_ASIS)
7404               if $cond != FALSE;
7405
7406             $comment = $spacing = '';
7407         }
7408         else
7409         {
7410             # This isn't an error; it is probably some tokens which
7411             # configure is supposed to replace, such as `@SET-MAKE@',
7412             # or some part of a rule cut by an if/endif.
7413             if (! $cond->false && ! ($is_rule && $discard_rule))
7414               {
7415                 s/^/$cond->subst_string/gme;
7416                 $result_rules .= "$spacing$comment$_\n";
7417               }
7418             $comment = $spacing = '';
7419         }
7420     }
7421
7422     error ($where, @cond_stack ?
7423            "unterminated conditionals: @cond_stack" :
7424            "too many conditionals closed in include file")
7425       if "@saved_cond_stack" ne "@cond_stack";
7426
7427     return ($comment, $result_vars, $result_rules);
7428 }
7429
7430
7431 # $CONTENTS
7432 # &file_contents ($BASENAME, $WHERE, [%TRANSFORM])
7433 # ------------------------------------------------
7434 # Return contents of a file from $libdir/am, automatically skipping
7435 # macros or rules which are already known.
7436 sub file_contents ($$%)
7437 {
7438     my ($basename, $where, %transform) = @_;
7439     my ($comments, $variables, $rules) =
7440       file_contents_internal (1, "$libdir/am/$basename.am", $where,
7441                               %transform);
7442     return "$comments$variables$rules";
7443 }
7444
7445
7446 # @PREFIX
7447 # &am_primary_prefixes ($PRIMARY, $CAN_DIST, @PREFIXES)
7448 # -----------------------------------------------------
7449 # Find all variable prefixes that are used for install directories.  A
7450 # prefix `zar' qualifies iff:
7451 #
7452 # * `zardir' is a variable.
7453 # * `zar_PRIMARY' is a variable.
7454 #
7455 # As a side effect, it looks for misspellings.  It is an error to have
7456 # a variable ending in a "reserved" suffix whose prefix is unknown, e.g.
7457 # "bni_PROGRAMS".  However, unusual prefixes are allowed if a variable
7458 # of the same name (with "dir" appended) exists.  For instance, if the
7459 # variable "zardir" is defined, then "zar_PROGRAMS" becomes valid.
7460 # This is to provide a little extra flexibility in those cases which
7461 # need it.
7462 sub am_primary_prefixes ($$@)
7463 {
7464   my ($primary, $can_dist, @prefixes) = @_;
7465
7466   local $_;
7467   my %valid = map { $_ => 0 } @prefixes;
7468   $valid{'EXTRA'} = 0;
7469   foreach my $var (variables $primary)
7470     {
7471       # Automake is allowed to define variables that look like primaries
7472       # but which aren't.  E.g. INSTALL_sh_DATA.
7473       # Autoconf can also define variables like INSTALL_DATA, so
7474       # ignore all configure variables (at least those which are not
7475       # redefined in Makefile.am).
7476       # FIXME: We should make sure that these variables are not
7477       # conditionally defined (or else adjust the condition below).
7478       my $def = $var->def (TRUE);
7479       next if $def && $def->owner != VAR_MAKEFILE;
7480
7481       my $varname = $var->name;
7482
7483       if ($varname =~ /^(nobase_)?(dist_|nodist_)?(.*)_[[:alnum:]]+$/)
7484         {
7485           my ($base, $dist, $X) = ($1 || '', $2 || '', $3 || '');
7486           if ($dist ne '' && ! $can_dist)
7487             {
7488               err_var ($var,
7489                        "invalid variable `$varname': `dist' is forbidden");
7490             }
7491           # Standard directories must be explicitly allowed.
7492           elsif (! defined $valid{$X} && exists $standard_prefix{$X})
7493             {
7494               err_var ($var,
7495                        "`${X}dir' is not a legitimate directory " .
7496                        "for `$primary'");
7497             }
7498           # A not explicitly valid directory is allowed if Xdir is defined.
7499           elsif (! defined $valid{$X} &&
7500                  $var->requires_variables ("`$varname' is used", "${X}dir"))
7501             {
7502               # Nothing to do.  Any error message has been output
7503               # by $var->requires_variables.
7504             }
7505           else
7506             {
7507               # Ensure all extended prefixes are actually used.
7508               $valid{"$base$dist$X"} = 1;
7509             }
7510         }
7511       else
7512         {
7513           prog_error "unexpected variable name: $varname";
7514         }
7515     }
7516
7517   # Return only those which are actually defined.
7518   return sort grep { var ($_ . '_' . $primary) } keys %valid;
7519 }
7520
7521
7522 # Handle `where_HOW' variable magic.  Does all lookups, generates
7523 # install code, and possibly generates code to define the primary
7524 # variable.  The first argument is the name of the .am file to munge,
7525 # the second argument is the primary variable (e.g. HEADERS), and all
7526 # subsequent arguments are possible installation locations.
7527 #
7528 # Returns list of [$location, $value] pairs, where
7529 # $value's are the values in all where_HOW variable, and $location
7530 # there associated location (the place here their parent variables were
7531 # defined).
7532 #
7533 # FIXME: this should be rewritten to be cleaner.  It should be broken
7534 # up into multiple functions.
7535 #
7536 # Usage is: am_install_var (OPTION..., file, HOW, where...)
7537 sub am_install_var
7538 {
7539   my (@args) = @_;
7540
7541   my $do_require = 1;
7542   my $can_dist = 0;
7543   my $default_dist = 0;
7544   while (@args)
7545     {
7546       if ($args[0] eq '-noextra')
7547         {
7548           $do_require = 0;
7549         }
7550       elsif ($args[0] eq '-candist')
7551         {
7552           $can_dist = 1;
7553         }
7554       elsif ($args[0] eq '-defaultdist')
7555         {
7556           $default_dist = 1;
7557           $can_dist = 1;
7558         }
7559       elsif ($args[0] !~ /^-/)
7560         {
7561           last;
7562         }
7563       shift (@args);
7564     }
7565
7566   my ($file, $primary, @prefix) = @args;
7567
7568   # Now that configure substitutions are allowed in where_HOW
7569   # variables, it is an error to actually define the primary.  We
7570   # allow `JAVA', as it is customarily used to mean the Java
7571   # interpreter.  This is but one of several Java hacks.  Similarly,
7572   # `PYTHON' is customarily used to mean the Python interpreter.
7573   reject_var $primary, "`$primary' is an anachronism"
7574     unless $primary eq 'JAVA' || $primary eq 'PYTHON';
7575
7576   # Get the prefixes which are valid and actually used.
7577   @prefix = am_primary_prefixes ($primary, $can_dist, @prefix);
7578
7579   # If a primary includes a configure substitution, then the EXTRA_
7580   # form is required.  Otherwise we can't properly do our job.
7581   my $require_extra;
7582
7583   my @used = ();
7584   my @result = ();
7585
7586   foreach my $X (@prefix)
7587     {
7588       my $nodir_name = $X;
7589       my $one_name = $X . '_' . $primary;
7590       my $one_var = var $one_name;
7591
7592       my $strip_subdir = 1;
7593       # If subdir prefix should be preserved, do so.
7594       if ($nodir_name =~ /^nobase_/)
7595         {
7596           $strip_subdir = 0;
7597           $nodir_name =~ s/^nobase_//;
7598         }
7599
7600       # If files should be distributed, do so.
7601       my $dist_p = 0;
7602       if ($can_dist)
7603         {
7604           $dist_p = (($default_dist && $nodir_name !~ /^nodist_/)
7605                      || (! $default_dist && $nodir_name =~ /^dist_/));
7606           $nodir_name =~ s/^(dist|nodist)_//;
7607         }
7608
7609
7610       # Use the location of the currently processed variable.
7611       # We are not processing a particular condition, so pick the first
7612       # available.
7613       my $tmpcond = $one_var->conditions->one_cond;
7614       my $where = $one_var->rdef ($tmpcond)->location->clone;
7615
7616       # Append actual contents of where_PRIMARY variable to
7617       # @result, skipping @substitutions@.
7618       foreach my $locvals ($one_var->value_as_list_recursive (location => 1))
7619         {
7620           my ($loc, $value) = @$locvals;
7621           # Skip configure substitutions.
7622           if ($value =~ /^\@.*\@$/)
7623             {
7624               if ($nodir_name eq 'EXTRA')
7625                 {
7626                   error ($where,
7627                          "`$one_name' contains configure substitution, "
7628                          . "but shouldn't");
7629                 }
7630               # Check here to make sure variables defined in
7631               # configure.ac do not imply that EXTRA_PRIMARY
7632               # must be defined.
7633               elsif (! defined $configure_vars{$one_name})
7634                 {
7635                   $require_extra = $one_name
7636                     if $do_require;
7637                 }
7638             }
7639           else
7640             {
7641               # Strip any $(EXEEXT) suffix the user might have added, or this
7642               # will confuse &handle_source_transform and &check_canonical_spelling.
7643               # We'll add $(EXEEXT) back later anyway.
7644               # Do it here rather than in handle_programs so the uniquifying at the
7645               # end of this function works.
7646               ${$locvals}[1] =~ s/\$\(EXEEXT\)$//
7647                 if $primary eq 'PROGRAMS';
7648
7649               push (@result, $locvals);
7650             }
7651         }
7652       # A blatant hack: we rewrite each _PROGRAMS primary to include
7653       # EXEEXT.
7654       append_exeext { 1 } $one_name
7655         if $primary eq 'PROGRAMS';
7656       # "EXTRA" shouldn't be used when generating clean targets,
7657       # all, or install targets.  We used to warn if EXTRA_FOO was
7658       # defined uselessly, but this was annoying.
7659       next
7660         if $nodir_name eq 'EXTRA';
7661
7662       if ($nodir_name eq 'check')
7663         {
7664           push (@check, '$(' . $one_name . ')');
7665         }
7666       else
7667         {
7668           push (@used, '$(' . $one_name . ')');
7669         }
7670
7671       # Is this to be installed?
7672       my $install_p = $nodir_name ne 'noinst' && $nodir_name ne 'check';
7673
7674       # If so, with install-exec? (or install-data?).
7675       my $exec_p = ($nodir_name =~ /$EXEC_DIR_PATTERN/o);
7676
7677       my $check_options_p = $install_p && !! option 'std-options';
7678
7679       # Use the location of the currently processed variable as context.
7680       $where->push_context ("while processing `$one_name'");
7681
7682       # The variable containing all files to distribute.
7683       my $distvar = "\$($one_name)";
7684       $distvar = shadow_unconditionally ($one_name, $where)
7685         if ($dist_p && $one_var->has_conditional_contents);
7686
7687       # Singular form of $PRIMARY.
7688       (my $one_primary = $primary) =~ s/S$//;
7689       $output_rules .= &file_contents ($file, $where,
7690                                        PRIMARY     => $primary,
7691                                        ONE_PRIMARY => $one_primary,
7692                                        DIR         => $X,
7693                                        NDIR        => $nodir_name,
7694                                        BASE        => $strip_subdir,
7695
7696                                        EXEC      => $exec_p,
7697                                        INSTALL   => $install_p,
7698                                        DIST      => $dist_p,
7699                                        DISTVAR   => $distvar,
7700                                        'CK-OPTS' => $check_options_p);
7701     }
7702
7703   # The JAVA variable is used as the name of the Java interpreter.
7704   # The PYTHON variable is used as the name of the Python interpreter.
7705   if (@used && $primary ne 'JAVA' && $primary ne 'PYTHON')
7706     {
7707       # Define it.
7708       define_pretty_variable ($primary, TRUE, INTERNAL, @used);
7709       $output_vars .= "\n";
7710     }
7711
7712   err_var ($require_extra,
7713            "`$require_extra' contains configure substitution,\n"
7714            . "but `EXTRA_$primary' not defined")
7715     if ($require_extra && ! var ('EXTRA_' . $primary));
7716
7717   # Push here because PRIMARY might be configure time determined.
7718   push (@all, '$(' . $primary . ')')
7719     if @used && $primary ne 'JAVA' && $primary ne 'PYTHON';
7720
7721   # Make the result unique.  This lets the user use conditionals in
7722   # a natural way, but still lets us program lazily -- we don't have
7723   # to worry about handling a particular object more than once.
7724   # We will keep only one location per object.
7725   my %result = ();
7726   for my $pair (@result)
7727     {
7728       my ($loc, $val) = @$pair;
7729       $result{$val} = $loc;
7730     }
7731   my @l = sort keys %result;
7732   return map { [$result{$_}->clone, $_] } @l;
7733 }
7734
7735
7736 ################################################################
7737
7738 # Each key in this hash is the name of a directory holding a
7739 # Makefile.in.  These variables are local to `is_make_dir'.
7740 my %make_dirs = ();
7741 my $make_dirs_set = 0;
7742
7743 sub is_make_dir
7744 {
7745     my ($dir) = @_;
7746     if (! $make_dirs_set)
7747     {
7748         foreach my $iter (@configure_input_files)
7749         {
7750             $make_dirs{dirname ($iter)} = 1;
7751         }
7752         # We also want to notice Makefile.in's.
7753         foreach my $iter (@other_input_files)
7754         {
7755             if ($iter =~ /Makefile\.in$/)
7756             {
7757                 $make_dirs{dirname ($iter)} = 1;
7758             }
7759         }
7760         $make_dirs_set = 1;
7761     }
7762     return defined $make_dirs{$dir};
7763 }
7764
7765 ################################################################
7766
7767 # Find the aux dir.  This should match the algorithm used by
7768 # ./configure. (See the Autoconf documentation for for
7769 # AC_CONFIG_AUX_DIR.)
7770 sub locate_aux_dir ()
7771 {
7772   if (! $config_aux_dir_set_in_configure_ac)
7773     {
7774       # The default auxiliary directory is the first
7775       # of ., .., or ../.. that contains install-sh.
7776       # Assume . if install-sh doesn't exist yet.
7777       for my $dir (qw (. .. ../..))
7778         {
7779           if (-f "$dir/install-sh")
7780             {
7781               $config_aux_dir = $dir;
7782               last;
7783             }
7784         }
7785       $config_aux_dir = '.' unless $config_aux_dir;
7786     }
7787   # Avoid unsightly '/.'s.
7788   $am_config_aux_dir =
7789     '$(top_srcdir)' . ($config_aux_dir eq '.' ? "" : "/$config_aux_dir");
7790   $am_config_aux_dir =~ s,/*$,,;
7791 }
7792
7793
7794 # &maybe_push_required_file ($DIR, $FILE, $FULLFILE)
7795 # --------------------------------------------------
7796 # See if we want to push this file onto dist_common.  This function
7797 # encodes the rules for deciding when to do so.
7798 sub maybe_push_required_file
7799 {
7800   my ($dir, $file, $fullfile) = @_;
7801
7802   if ($dir eq $relative_dir)
7803     {
7804       push_dist_common ($file);
7805       return 1;
7806     }
7807   elsif ($relative_dir eq '.' && ! &is_make_dir ($dir))
7808     {
7809       # If we are doing the topmost directory, and the file is in a
7810       # subdir which does not have a Makefile, then we distribute it
7811       # here.
7812
7813       # If a required file is above the source tree, it is important
7814       # to prefix it with `$(srcdir)' so that no VPATH search is
7815       # performed.  Otherwise problems occur with Make implementations
7816       # that rewrite and simplify rules whose dependencies are found in a
7817       # VPATH location.  Here is an example with OSF1/Tru64 Make.
7818       #
7819       #   % cat Makefile
7820       #   VPATH = sub
7821       #   distdir: ../a
7822       #           echo ../a
7823       #   % ls
7824       #   Makefile a
7825       #   % make
7826       #   echo a
7827       #   a
7828       #
7829       # Dependency `../a' was found in `sub/../a', but this make
7830       # implementation simplified it as `a'.  (Note that the sub/
7831       # directory does not even exist.)
7832       #
7833       # This kind of VPATH rewriting seems hard to cancel.  The
7834       # distdir.am hack against VPATH rewriting works only when no
7835       # simplification is done, i.e., for dependencies which are in
7836       # subdirectories, not in enclosing directories.  Hence, in
7837       # the latter case we use a full path to make sure no VPATH
7838       # search occurs.
7839       $fullfile = '$(srcdir)/' . $fullfile
7840         if $dir =~ m,^\.\.(?:$|/),;
7841
7842       push_dist_common ($fullfile);
7843       return 1;
7844     }
7845   return 0;
7846 }
7847
7848
7849 # If a file name appears as a key in this hash, then it has already
7850 # been checked for.  This allows us not to report the same error more
7851 # than once.
7852 my %required_file_not_found = ();
7853
7854 # &require_file_internal ($WHERE, $MYSTRICT, $DIRECTORY, @FILES)
7855 # --------------------------------------------------------------
7856 # Verify that the file must exist in $DIRECTORY, or install it.
7857 # $MYSTRICT is the strictness level at which this file becomes required.
7858 sub require_file_internal ($$$@)
7859 {
7860   my ($where, $mystrict, $dir, @files) = @_;
7861
7862   foreach my $file (@files)
7863     {
7864       my $fullfile = "$dir/$file";
7865       my $found_it = 0;
7866       my $dangling_sym = 0;
7867
7868       if (-l $fullfile && ! -f $fullfile)
7869         {
7870           $dangling_sym = 1;
7871         }
7872       elsif (dir_has_case_matching_file ($dir, $file))
7873         {
7874           $found_it = 1;
7875           maybe_push_required_file ($dir, $file, $fullfile);
7876         }
7877
7878       # `--force-missing' only has an effect if `--add-missing' is
7879       # specified.
7880       if ($found_it && (! $add_missing || ! $force_missing))
7881         {
7882           next;
7883         }
7884       else
7885         {
7886           # If we've already looked for it, we're done.  You might
7887           # wonder why we don't do this before searching for the
7888           # file.  If we do that, then something like
7889           # AC_OUTPUT(subdir/foo foo) will fail to put foo.in into
7890           # DIST_COMMON.
7891           if (! $found_it)
7892             {
7893               next if defined $required_file_not_found{$fullfile};
7894               $required_file_not_found{$fullfile} = 1;
7895             }
7896
7897           if ($strictness >= $mystrict)
7898             {
7899               if ($dangling_sym && $add_missing)
7900                 {
7901                   unlink ($fullfile);
7902                 }
7903
7904               my $trailer = '';
7905               my $trailer2 = '';
7906               my $suppress = 0;
7907
7908               # Only install missing files according to our desired
7909               # strictness level.
7910               my $message = "required file `$fullfile' not found";
7911               if ($add_missing)
7912                 {
7913                   if (-f "$libdir/$file")
7914                     {
7915                       $suppress = 1;
7916
7917                       # Install the missing file.  Symlink if we
7918                       # can, copy if we must.  Note: delete the file
7919                       # first, in case it is a dangling symlink.
7920                       $message = "installing `$fullfile'";
7921
7922                       # The license file should not be volatile.
7923                       if ($file eq "COPYING")
7924                         {
7925                           $message .= " using GNU General Public License v3 file";
7926                           $trailer2 = "\n    Consider adding the COPYING file"
7927                                     . " to the version control system"
7928                                     . "\n    for your code, to avoid questions"
7929                                     . " about which license your project uses.";
7930                         }
7931
7932                       # Windows Perl will hang if we try to delete a
7933                       # file that doesn't exist.
7934                       unlink ($fullfile) if -f $fullfile;
7935                       if ($symlink_exists && ! $copy_missing)
7936                         {
7937                           if (! symlink ("$libdir/$file", $fullfile)
7938                               || ! -e $fullfile)
7939                             {
7940                               $suppress = 0;
7941                               $trailer = "; error while making link: $!";
7942                             }
7943                         }
7944                       elsif (system ('cp', "$libdir/$file", $fullfile))
7945                         {
7946                           $suppress = 0;
7947                           $trailer = "\n    error while copying";
7948                         }
7949                       set_dir_cache_file ($dir, $file);
7950                     }
7951
7952                   if (! maybe_push_required_file (dirname ($fullfile),
7953                                                   $file, $fullfile))
7954                     {
7955                       if (! $found_it && ! $automake_will_process_aux_dir)
7956                         {
7957                           # We have added the file but could not push it
7958                           # into DIST_COMMON, probably because this is
7959                           # an auxiliary file and we are not processing
7960                           # the top level Makefile.  Furthermore Automake
7961                           # hasn't been asked to create the Makefile.in
7962                           # that distributes the aux dir files.
7963                           error ($where, 'Please make a full run of automake'
7964                                  . " so $fullfile gets distributed.");
7965                         }
7966                     }
7967                 }
7968               else
7969                 {
7970                   $trailer = "\n  `automake --add-missing' can install `$file'"
7971                     if -f "$libdir/$file";
7972                 }
7973
7974               # If --force-missing was specified, and we have
7975               # actually found the file, then do nothing.
7976               next
7977                 if $found_it && $force_missing;
7978
7979               # If we couldn't install the file, but it is a target in
7980               # the Makefile, don't print anything.  This allows files
7981               # like README, AUTHORS, or THANKS to be generated.
7982               next
7983                 if !$suppress && rule $file;
7984
7985               msg ($suppress ? 'note' : 'error', $where, "$message$trailer$trailer2");
7986             }
7987         }
7988     }
7989 }
7990
7991 # &require_file ($WHERE, $MYSTRICT, @FILES)
7992 # -----------------------------------------
7993 sub require_file ($$@)
7994 {
7995     my ($where, $mystrict, @files) = @_;
7996     require_file_internal ($where, $mystrict, $relative_dir, @files);
7997 }
7998
7999 # &require_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
8000 # -----------------------------------------------------------
8001 sub require_file_with_macro ($$$@)
8002 {
8003     my ($cond, $macro, $mystrict, @files) = @_;
8004     $macro = rvar ($macro) unless ref $macro;
8005     require_file ($macro->rdef ($cond)->location, $mystrict, @files);
8006 }
8007
8008 # &require_libsource_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
8009 # ----------------------------------------------------------------
8010 # Require an AC_LIBSOURCEd file.  If AC_CONFIG_LIBOBJ_DIR was called, it
8011 # must be in that directory.  Otherwise expect it in the current directory.
8012 sub require_libsource_with_macro ($$$@)
8013 {
8014     my ($cond, $macro, $mystrict, @files) = @_;
8015     $macro = rvar ($macro) unless ref $macro;
8016     if ($config_libobj_dir)
8017       {
8018         require_file_internal ($macro->rdef ($cond)->location, $mystrict,
8019                                $config_libobj_dir, @files);
8020       }
8021     else
8022       {
8023         require_file ($macro->rdef ($cond)->location, $mystrict, @files);
8024       }
8025 }
8026
8027 # Queue to push require_conf_file requirements to.
8028 my $required_conf_file_queue;
8029
8030 # &queue_required_conf_file ($QUEUE, $KEY, $DIR, $WHERE, $MYSTRICT, @FILES)
8031 # -------------------------------------------------------------------------
8032 sub queue_required_conf_file ($$$$@)
8033 {
8034     my ($queue, $key, $dir, $where, $mystrict, @files) = @_;
8035     my @serial_loc;
8036     if (ref $where)
8037       {
8038         @serial_loc = (QUEUE_LOCATION, $where->serialize ());
8039       }
8040     else
8041       {
8042         @serial_loc = (QUEUE_STRING, $where);
8043       }
8044     $queue->enqueue ($key, $dir, @serial_loc, $mystrict, 0 + @files, @files);
8045 }
8046
8047 # &require_queued_conf_file ($QUEUE)
8048 # ----------------------------------
8049 sub require_queued_conf_file ($)
8050 {
8051     my ($queue) = @_;
8052     my $where;
8053     my $dir = $queue->dequeue ();
8054     my $loc_key = $queue->dequeue ();
8055     if ($loc_key eq QUEUE_LOCATION)
8056       {
8057         $where = Automake::Location::deserialize ($queue);
8058       }
8059     elsif ($loc_key eq QUEUE_STRING)
8060       {
8061         $where = $queue->dequeue ();
8062       }
8063     else
8064       {
8065         prog_error "unexpected key $loc_key";
8066       }
8067     my $mystrict = $queue->dequeue ();
8068     my $nfiles = $queue->dequeue ();
8069     my @files;
8070     push @files, $queue->dequeue ()
8071       foreach (1 .. $nfiles);
8072
8073     # Dequeuing happens outside of per-makefile context, so we have to
8074     # set the variables used by require_file_internal and the functions
8075     # it calls.  Gross!
8076     $relative_dir = $dir;
8077     require_file_internal ($where, $mystrict, $config_aux_dir, @files);
8078 }
8079
8080 # &require_conf_file ($WHERE, $MYSTRICT, @FILES)
8081 # ----------------------------------------------
8082 # Looks in configuration path, as specified by AC_CONFIG_AUX_DIR;
8083 # worker threads may queue up the action to be serialized by the master.
8084 #
8085 # FIXME: this seriously relies on the semantics of require_file_internal
8086 # and maybe_push_required_file, in that we exploit the fact that only the
8087 # contents of the last handled output file may be impacted (which in turn
8088 # is dealt with by the master thread).
8089 sub require_conf_file ($$@)
8090 {
8091     my ($where, $mystrict, @files) = @_;
8092     if (defined $required_conf_file_queue)
8093       {
8094         queue_required_conf_file ($required_conf_file_queue, QUEUE_CONF_FILE,
8095                                   $relative_dir, $where, $mystrict, @files);
8096       }
8097     else
8098       {
8099         require_file_internal ($where, $mystrict, $config_aux_dir, @files);
8100       }
8101 }
8102
8103
8104 # &require_conf_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
8105 # ----------------------------------------------------------------
8106 sub require_conf_file_with_macro ($$$@)
8107 {
8108     my ($cond, $macro, $mystrict, @files) = @_;
8109     require_conf_file (rvar ($macro)->rdef ($cond)->location,
8110                        $mystrict, @files);
8111 }
8112
8113 ################################################################
8114
8115 # &require_build_directory ($DIRECTORY)
8116 # -------------------------------------
8117 # Emit rules to create $DIRECTORY if needed, and return
8118 # the file that any target requiring this directory should be made
8119 # dependent upon.
8120 # We don't want to emit the rule twice, and want to reuse it
8121 # for directories with equivalent names (e.g., `foo/bar' and `./foo//bar').
8122 sub require_build_directory ($)
8123 {
8124   my $directory = shift;
8125
8126   return $directory_map{$directory} if exists $directory_map{$directory};
8127
8128   my $cdir = File::Spec->canonpath ($directory);
8129
8130   if (exists $directory_map{$cdir})
8131     {
8132       my $stamp = $directory_map{$cdir};
8133       $directory_map{$directory} = $stamp;
8134       return $stamp;
8135     }
8136
8137   my $dirstamp = "$cdir/\$(am__dirstamp)";
8138
8139   $directory_map{$directory} = $dirstamp;
8140   $directory_map{$cdir} = $dirstamp;
8141
8142   # Set a variable for the dirstamp basename.
8143   define_pretty_variable ('am__dirstamp', TRUE, INTERNAL,
8144                           '$(am__leading_dot)dirstamp');
8145
8146   # Directory must be removed by `make distclean'.
8147   $clean_files{$dirstamp} = DIST_CLEAN;
8148
8149   $output_rules .= ("$dirstamp:\n"
8150                     . "\t\@\$(MKDIR_P) $directory\n"
8151                     . "\t\@: > $dirstamp\n");
8152
8153   return $dirstamp;
8154 }
8155
8156 # &require_build_directory_maybe ($FILE)
8157 # --------------------------------------
8158 # If $FILE lies in a subdirectory, emit a rule to create this
8159 # directory and return the file that $FILE should be made
8160 # dependent upon.  Otherwise, just return the empty string.
8161 sub require_build_directory_maybe ($)
8162 {
8163     my $file = shift;
8164     my $directory = dirname ($file);
8165
8166     if ($directory ne '.')
8167     {
8168         return require_build_directory ($directory);
8169     }
8170     else
8171     {
8172         return '';
8173     }
8174 }
8175
8176 ################################################################
8177
8178 # Push a list of files onto dist_common.
8179 sub push_dist_common
8180 {
8181   prog_error "push_dist_common run after handle_dist"
8182     if $handle_dist_run;
8183   Automake::Variable::define ('DIST_COMMON', VAR_AUTOMAKE, '+', TRUE, "@_",
8184                               '', INTERNAL, VAR_PRETTY);
8185 }
8186
8187
8188 ################################################################
8189
8190 # generate_makefile ($MAKEFILE_AM, $MAKEFILE_IN)
8191 # ----------------------------------------------
8192 # Generate a Makefile.in given the name of the corresponding Makefile and
8193 # the name of the file output by config.status.
8194 sub generate_makefile ($$)
8195 {
8196   my ($makefile_am, $makefile_in) = @_;
8197
8198   # Reset all the Makefile.am related variables.
8199   initialize_per_input;
8200
8201   # AUTOMAKE_OPTIONS can contains -W flags to disable or enable
8202   # warnings for this file.  So hold any warning issued before
8203   # we have processed AUTOMAKE_OPTIONS.
8204   buffer_messages ('warning');
8205
8206   # Name of input file ("Makefile.am") and output file
8207   # ("Makefile.in").  These have no directory components.
8208   $am_file_name = basename ($makefile_am);
8209   $in_file_name = basename ($makefile_in);
8210
8211   # $OUTPUT is encoded.  If it contains a ":" then the first element
8212   # is the real output file, and all remaining elements are input
8213   # files.  We don't scan or otherwise deal with these input files,
8214   # other than to mark them as dependencies.  See
8215   # &scan_autoconf_files for details.
8216   my ($makefile, @inputs) = split (/:/, $output_files{$makefile_in});
8217
8218   $relative_dir = dirname ($makefile);
8219   $am_relative_dir = dirname ($makefile_am);
8220   $topsrcdir = backname ($relative_dir);
8221
8222   read_main_am_file ($makefile_am);
8223   if (handle_options)
8224     {
8225       # Process buffered warnings.
8226       flush_messages;
8227       # Fatal error.  Just return, so we can continue with next file.
8228       return;
8229     }
8230   # Process buffered warnings.
8231   flush_messages;
8232
8233   # There are a few install-related variables that you should not define.
8234   foreach my $var ('PRE_INSTALL', 'POST_INSTALL', 'NORMAL_INSTALL')
8235     {
8236       my $v = var $var;
8237       if ($v)
8238         {
8239           my $def = $v->def (TRUE);
8240           prog_error "$var not defined in condition TRUE"
8241             unless $def;
8242           reject_var $var, "`$var' should not be defined"
8243             if $def->owner != VAR_AUTOMAKE;
8244         }
8245     }
8246
8247   # Catch some obsolete variables.
8248   msg_var ('obsolete', 'INCLUDES',
8249            "`INCLUDES' is the old name for `AM_CPPFLAGS' (or `*_CPPFLAGS')")
8250     if var ('INCLUDES');
8251
8252   # Must do this after reading .am file.
8253   define_variable ('subdir', $relative_dir, INTERNAL);
8254
8255   # If DIST_SUBDIRS is defined, make sure SUBDIRS is, so that
8256   # recursive rules are enabled.
8257   define_pretty_variable ('SUBDIRS', TRUE, INTERNAL, '')
8258     if var 'DIST_SUBDIRS' && ! var 'SUBDIRS';
8259
8260   # Check first, because we might modify some state.
8261   check_cygnus;
8262   check_gnu_standards;
8263   check_gnits_standards;
8264
8265   handle_configure ($makefile_am, $makefile_in, $makefile, @inputs);
8266   handle_gettext;
8267   handle_libraries;
8268   handle_ltlibraries;
8269   handle_programs;
8270   handle_scripts;
8271
8272   # These must be run after all the sources are scanned.  They
8273   # use variables defined by &handle_libraries, &handle_ltlibraries,
8274   # or &handle_programs.
8275   handle_compile;
8276   handle_languages;
8277   handle_libtool;
8278
8279   # Variables used by distdir.am and tags.am.
8280   define_pretty_variable ('SOURCES', TRUE, INTERNAL, @sources);
8281   if (! option 'no-dist')
8282     {
8283       define_pretty_variable ('DIST_SOURCES', TRUE, INTERNAL, @dist_sources);
8284     }
8285
8286   handle_multilib;
8287   handle_texinfo;
8288   handle_emacs_lisp;
8289   handle_python;
8290   handle_java;
8291   handle_man_pages;
8292   handle_data;
8293   handle_headers;
8294   handle_subdirs;
8295   handle_tags;
8296   handle_minor_options;
8297   # Must come after handle_programs so that %known_programs is up-to-date.
8298   handle_tests;
8299
8300   # This must come after most other rules.
8301   handle_dist;
8302
8303   handle_footer;
8304   do_check_merge_target;
8305   handle_all ($makefile);
8306
8307   # FIXME: Gross!
8308   if (var ('lib_LTLIBRARIES') && var ('bin_PROGRAMS'))
8309     {
8310       $output_rules .= "install-binPROGRAMS: install-libLTLIBRARIES\n\n";
8311     }
8312   if (var ('nobase_lib_LTLIBRARIES') && var ('bin_PROGRAMS'))
8313     {
8314       $output_rules .= "install-binPROGRAMS: install-nobase_libLTLIBRARIES\n\n";
8315     }
8316
8317   handle_install;
8318   handle_clean ($makefile);
8319   handle_factored_dependencies;
8320
8321   # Comes last, because all the above procedures may have
8322   # defined or overridden variables.
8323   $output_vars .= output_variables;
8324
8325   check_typos;
8326
8327   my ($out_file) = $output_directory . '/' . $makefile_in;
8328
8329   if ($exit_code != 0)
8330     {
8331       verb "not writing $out_file because of earlier errors";
8332       return;
8333     }
8334
8335   if (! -d ($output_directory . '/' . $am_relative_dir))
8336     {
8337       mkdir ($output_directory . '/' . $am_relative_dir, 0755);
8338     }
8339
8340   # We make sure that `all:' is the first target.
8341   my $output =
8342     "$output_vars$output_all$output_header$output_rules$output_trailer";
8343
8344   # Decide whether we must update the output file or not.
8345   # We have to update in the following situations.
8346   #  * $force_generation is set.
8347   #  * any of the output dependencies is younger than the output
8348   #  * the contents of the output is different (this can happen
8349   #    if the project has been populated with a file listed in
8350   #    @common_files since the last run).
8351   # Output's dependencies are split in two sets:
8352   #  * dependencies which are also configure dependencies
8353   #    These do not change between each Makefile.am
8354   #  * other dependencies, specific to the Makefile.am being processed
8355   #    (such as the Makefile.am itself, or any Makefile fragment
8356   #    it includes).
8357   my $timestamp = mtime $out_file;
8358   if (! $force_generation
8359       && $configure_deps_greatest_timestamp < $timestamp
8360       && $output_deps_greatest_timestamp < $timestamp
8361       && $output eq contents ($out_file))
8362     {
8363       verb "$out_file unchanged";
8364       # No need to update.
8365       return;
8366     }
8367
8368   if (-e $out_file)
8369     {
8370       unlink ($out_file)
8371         or fatal "cannot remove $out_file: $!\n";
8372     }
8373
8374   my $gm_file = new Automake::XFile "> $out_file";
8375   verb "creating $out_file";
8376   print $gm_file $output;
8377 }
8378
8379 ################################################################
8380
8381
8382
8383
8384 ################################################################
8385
8386 # Helper function for usage().
8387 sub print_autodist_files (@)
8388 {
8389   my @lcomm = sort (&uniq (@_));
8390
8391   my @four;
8392   format USAGE_FORMAT =
8393   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<
8394   $four[0],           $four[1],           $four[2],           $four[3]
8395 .
8396   local $~ = "USAGE_FORMAT";
8397
8398   my $cols = 4;
8399   my $rows = int(@lcomm / $cols);
8400   my $rest = @lcomm % $cols;
8401
8402   if ($rest)
8403     {
8404       $rows++;
8405     }
8406   else
8407     {
8408       $rest = $cols;
8409     }
8410
8411   for (my $y = 0; $y < $rows; $y++)
8412     {
8413       @four = ("", "", "", "");
8414       for (my $x = 0; $x < $cols; $x++)
8415         {
8416           last if $y + 1 == $rows && $x == $rest;
8417
8418           my $idx = (($x > $rest)
8419                ?  ($rows * $rest + ($rows - 1) * ($x - $rest))
8420                : ($rows * $x));
8421
8422           $idx += $y;
8423           $four[$x] = $lcomm[$idx];
8424         }
8425       write;
8426     }
8427 }
8428
8429
8430 # Print usage information.
8431 sub usage ()
8432 {
8433     print "Usage: $0 [OPTION] ... [Makefile]...
8434
8435 Generate Makefile.in for configure from Makefile.am.
8436
8437 Operation modes:
8438       --help               print this help, then exit
8439       --version            print version number, then exit
8440   -v, --verbose            verbosely list files processed
8441       --no-force           only update Makefile.in's that are out of date
8442   -W, --warnings=CATEGORY  report the warnings falling in CATEGORY
8443
8444 Dependency tracking:
8445   -i, --ignore-deps      disable dependency tracking code
8446       --include-deps     enable dependency tracking code
8447
8448 Flavors:
8449       --cygnus           assume program is part of Cygnus-style tree
8450       --foreign          set strictness to foreign
8451       --gnits            set strictness to gnits
8452       --gnu              set strictness to gnu
8453
8454 Library files:
8455   -a, --add-missing      add missing standard files to package
8456       --libdir=DIR       directory storing library files
8457   -c, --copy             with -a, copy missing files (default is symlink)
8458   -f, --force-missing    force update of standard files
8459
8460 ";
8461     Automake::ChannelDefs::usage;
8462
8463     print "\nFiles automatically distributed if found " .
8464           "(always):\n";
8465     print_autodist_files @common_files;
8466     print "\nFiles automatically distributed if found " .
8467           "(under certain conditions):\n";
8468     print_autodist_files @common_sometimes;
8469
8470     print '
8471 Report bugs to <@PACKAGE_BUGREPORT@>.
8472 GNU Automake home page: <@PACKAGE_URL@>.
8473 General help using GNU software: <http://www.gnu.org/gethelp/>.
8474 ';
8475
8476     # --help always returns 0 per GNU standards.
8477     exit 0;
8478 }
8479
8480
8481 # &version ()
8482 # -----------
8483 # Print version information
8484 sub version ()
8485 {
8486   print <<EOF;
8487 automake (GNU $PACKAGE) $VERSION
8488 Copyright (C) 2011 Free Software Foundation, Inc.
8489 License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl-2.0.html>
8490 This is free software: you are free to change and redistribute it.
8491 There is NO WARRANTY, to the extent permitted by law.
8492
8493 Written by Tom Tromey <tromey\@redhat.com>
8494        and Alexandre Duret-Lutz <adl\@gnu.org>.
8495 EOF
8496   # --version always returns 0 per GNU standards.
8497   exit 0;
8498 }
8499
8500 ################################################################
8501
8502 # Parse command line.
8503 sub parse_arguments ()
8504 {
8505   # Start off as gnu.
8506   set_strictness ('gnu');
8507
8508   my $cli_where = new Automake::Location;
8509   my %cli_options =
8510     (
8511      'libdir=s' => \$libdir,
8512      'gnu'              => sub { set_strictness ('gnu'); },
8513      'gnits'            => sub { set_strictness ('gnits'); },
8514      'cygnus'           => sub { set_global_option ('cygnus', $cli_where); },
8515      'foreign'          => sub { set_strictness ('foreign'); },
8516      'include-deps'     => sub { unset_global_option ('no-dependencies'); },
8517      'i|ignore-deps'    => sub { set_global_option ('no-dependencies',
8518                                                     $cli_where); },
8519      'no-force' => sub { $force_generation = 0; },
8520      'f|force-missing'  => \$force_missing,
8521      'o|output-dir=s'   => \$output_directory,
8522      'a|add-missing'    => \$add_missing,
8523      'c|copy'           => \$copy_missing,
8524      'v|verbose'        => sub { setup_channel 'verb', silent => 0; },
8525      'W|warnings=s'     => \&parse_warnings,
8526      # These long options (--Werror and --Wno-error) for backward
8527      # compatibility.  Use -Werror and -Wno-error today.
8528      'Werror'           => sub { parse_warnings 'W', 'error'; },
8529      'Wno-error'        => sub { parse_warnings 'W', 'no-error'; },
8530      );
8531   use Getopt::Long;
8532   Getopt::Long::config ("bundling", "pass_through");
8533
8534   # See if --version or --help is used.  We want to process these before
8535   # anything else because the GNU Coding Standards require us to
8536   # `exit 0' after processing these options, and we can't guarantee this
8537   # if we treat other options first.  (Handling other options first
8538   # could produce error diagnostics, and in this condition it is
8539   # confusing if Automake does `exit 0'.)
8540   my %cli_options_1st_pass =
8541     (
8542      'version' => \&version,
8543      'help'    => \&usage,
8544      # Recognize all other options (and their arguments) but do nothing.
8545      map { $_ => sub {} } (keys %cli_options)
8546      );
8547   my @ARGV_backup = @ARGV;
8548   Getopt::Long::GetOptions %cli_options_1st_pass
8549     or exit 1;
8550   @ARGV = @ARGV_backup;
8551
8552   # Now *really* process the options.  This time we know that --help
8553   # and --version are not present, but we specify them nonetheless so
8554   # that ambiguous abbreviation are diagnosed.
8555   Getopt::Long::GetOptions %cli_options, 'version' => sub {}, 'help' => sub {}
8556     or exit 1;
8557
8558   if (defined $output_directory)
8559     {
8560       msg 'obsolete', "`--output-dir' is deprecated\n";
8561     }
8562   else
8563     {
8564       # In the next release we'll remove this entirely.
8565       $output_directory = '.';
8566     }
8567
8568   return unless @ARGV;
8569
8570   if ($ARGV[0] =~ /^-./)
8571     {
8572       my %argopts;
8573       for my $k (keys %cli_options)
8574         {
8575           if ($k =~ /(.*)=s$/)
8576             {
8577               map { $argopts{(length ($_) == 1)
8578                              ? "-$_" : "--$_" } = 1; } (split (/\|/, $1));
8579             }
8580         }
8581       if ($ARGV[0] eq '--')
8582         {
8583           shift @ARGV;
8584         }
8585       elsif (exists $argopts{$ARGV[0]})
8586         {
8587           fatal ("option `$ARGV[0]' requires an argument\n"
8588                  . "Try `$0 --help' for more information.");
8589         }
8590       else
8591         {
8592           fatal ("unrecognized option `$ARGV[0]'.\n"
8593                  . "Try `$0 --help' for more information.");
8594         }
8595     }
8596
8597   my $errspec = 0;
8598   foreach my $arg (@ARGV)
8599     {
8600       fatal ("empty argument\nTry `$0 --help' for more information.")
8601         if ($arg eq '');
8602
8603       # Handle $local:$input syntax.
8604       my ($local, @rest) = split (/:/, $arg);
8605       @rest = ("$local.in",) unless @rest;
8606       my $input = locate_am @rest;
8607       if ($input)
8608         {
8609           push @input_files, $input;
8610           $output_files{$input} = join (':', ($local, @rest));
8611         }
8612       else
8613         {
8614           error "no Automake input file found for `$arg'";
8615           $errspec = 1;
8616         }
8617     }
8618   fatal "no input file found among supplied arguments"
8619     if $errspec && ! @input_files;
8620 }
8621
8622
8623 # handle_makefile ($MAKEFILE_IN)
8624 # ------------------------------
8625 # Deal with $MAKEFILE_IN.
8626 sub handle_makefile ($)
8627 {
8628   my ($file) =  @_;
8629   ($am_file = $file) =~ s/\.in$//;
8630   if (! -f ($am_file . '.am'))
8631     {
8632       error "`$am_file.am' does not exist";
8633     }
8634   else
8635     {
8636       # Any warning setting now local to this Makefile.am.
8637       dup_channel_setup;
8638
8639       generate_makefile ($am_file . '.am', $file);
8640
8641       # Back out any warning setting.
8642       drop_channel_setup;
8643     }
8644 }
8645
8646 # handle_makefiles_serial ()
8647 # --------------------------
8648 # Deal with all makefiles, without threads.
8649 sub handle_makefiles_serial ()
8650 {
8651   foreach my $file (@input_files)
8652     {
8653       handle_makefile ($file);
8654     }
8655 }
8656
8657 # get_number_of_threads ()
8658 # ------------------------
8659 # Logic for deciding how many worker threads to use.
8660 sub get_number_of_threads
8661 {
8662   my $nthreads = $ENV{'AUTOMAKE_JOBS'} || 0;
8663
8664   $nthreads = 0
8665     unless $nthreads =~ /^[0-9]+$/;
8666
8667   # It doesn't make sense to use more threads than makefiles,
8668   my $max_threads = @input_files;
8669
8670   # but a single worker thread is helpful for exposing bugs.
8671   if ($automake_will_process_aux_dir && $max_threads > 1)
8672     {
8673       $max_threads--;
8674     }
8675   if ($nthreads > $max_threads)
8676     {
8677       $nthreads = $max_threads;
8678     }
8679   return $nthreads;
8680 }
8681
8682 # handle_makefiles_threaded ($NTHREADS)
8683 # -------------------------------------
8684 # Deal with all makefiles, using threads.  The general strategy is to
8685 # spawn NTHREADS worker threads, dispatch makefiles to them, and let the
8686 # worker threads push back everything that needs serialization:
8687 # * warning and (normal) error messages, for stable stderr output
8688 #   order and content (avoiding duplicates, for example),
8689 # * races when installing aux files (and respective messages),
8690 # * races when collecting aux files for distribution.
8691 #
8692 # The latter requires that the makefile that deals with the aux dir
8693 # files be handled last, done by the master thread.
8694 sub handle_makefiles_threaded ($)
8695 {
8696   my ($nthreads) = @_;
8697
8698   my @queued_input_files = @input_files;
8699   my $last_input_file = undef;
8700   if ($automake_will_process_aux_dir)
8701     {
8702       $last_input_file = pop @queued_input_files;
8703     }
8704
8705   # The file queue distributes all makefiles, the message queues
8706   # collect all serializations needed for respective files.
8707   my $file_queue = Thread::Queue->new;
8708   my %msg_queues;
8709   foreach my $file (@queued_input_files)
8710     {
8711       $msg_queues{$file} = Thread::Queue->new;
8712     }
8713
8714   verb "spawning $nthreads worker threads";
8715   my @threads = (1 .. $nthreads);
8716   foreach my $t (@threads)
8717     {
8718       $t = threads->new (sub
8719         {
8720           while (my $file = $file_queue->dequeue)
8721             {
8722               verb "handling $file";
8723               my $queue = $msg_queues{$file};
8724               setup_channel_queue ($queue, QUEUE_MESSAGE);
8725               $required_conf_file_queue = $queue;
8726               handle_makefile ($file);
8727               $queue->enqueue (undef);
8728               setup_channel_queue (undef, undef);
8729               $required_conf_file_queue = undef;
8730             }
8731           return $exit_code;
8732         });
8733     }
8734
8735   # Queue all normal makefiles.
8736   verb "queuing " . @queued_input_files . " input files";
8737   $file_queue->enqueue (@queued_input_files, (undef) x @threads);
8738
8739   # Collect and process serializations.
8740   foreach my $file (@queued_input_files)
8741     {
8742       verb "dequeuing messages for " . $file;
8743       reset_local_duplicates ();
8744       my $queue = $msg_queues{$file};
8745       while (my $key = $queue->dequeue)
8746         {
8747           if ($key eq QUEUE_MESSAGE)
8748             {
8749               pop_channel_queue ($queue);
8750             }
8751           elsif ($key eq QUEUE_CONF_FILE)
8752             {
8753               require_queued_conf_file ($queue);
8754             }
8755           else
8756             {
8757               prog_error "unexpected key $key";
8758             }
8759         }
8760     }
8761
8762   foreach my $t (@threads)
8763     {
8764       my @exit_thread = $t->join;
8765       $exit_code = $exit_thread[0]
8766         if ($exit_thread[0] > $exit_code);
8767     }
8768
8769   # The master processes the last file.
8770   if ($automake_will_process_aux_dir)
8771     {
8772       verb "processing last input file";
8773       handle_makefile ($last_input_file);
8774     }
8775 }
8776
8777 ################################################################
8778
8779 # Parse the WARNINGS environment variable.
8780 parse_WARNINGS;
8781
8782 # Parse command line.
8783 parse_arguments;
8784
8785 $configure_ac = require_configure_ac;
8786
8787 # Do configure.ac scan only once.
8788 scan_autoconf_files;
8789
8790 if (! @input_files)
8791   {
8792     my $msg = '';
8793     $msg = "\nDid you forget AC_CONFIG_FILES([Makefile]) in $configure_ac?"
8794       if -f 'Makefile.am';
8795     fatal ("no `Makefile.am' found for any configure output$msg");
8796   }
8797
8798 my $nthreads = get_number_of_threads ();
8799
8800 if ($perl_threads && $nthreads >= 1)
8801   {
8802     handle_makefiles_threaded ($nthreads);
8803   }
8804 else
8805   {
8806     handle_makefiles_serial ();
8807   }
8808
8809 exit $exit_code;
8810
8811
8812 ### Setup "GNU" style for perl-mode and cperl-mode.
8813 ## Local Variables:
8814 ## perl-indent-level: 2
8815 ## perl-continued-statement-offset: 2
8816 ## perl-continued-brace-offset: 0
8817 ## perl-brace-offset: 0
8818 ## perl-brace-imaginary-offset: 0
8819 ## perl-label-offset: -2
8820 ## cperl-indent-level: 2
8821 ## cperl-brace-offset: 0
8822 ## cperl-continued-brace-offset: 0
8823 ## cperl-label-offset: -2
8824 ## cperl-extra-newline-before-brace: t
8825 ## cperl-merge-trailing-else: nil
8826 ## cperl-continued-statement-offset: 2
8827 ## End: