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