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