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