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