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
2063             # If resulting derived source is in a subdir, we need to make
2064             # sure the subdir exists at build time.
2065             if ($object =~ /\//)
2066               {
2067                 my $dirstamp = require_build_directory_maybe ($object);
2068                 depend ($object, $dirstamp)
2069                   if ($dirstamp);
2070               }
2071             next;
2072           }
2073
2074         $linkers_used{$linker} = 1;
2075
2076         push (@result, $object);
2077
2078         if (! defined $object_map{$object})
2079         {
2080             my @dep_list = ();
2081             $object_map{$object} = $full;
2082
2083             # If resulting object is in subdir, we need to make
2084             # sure the subdir exists at build time.
2085             if ($object =~ /\//)
2086             {
2087                 # FIXME: check that $DIRECTORY is somewhere in the
2088                 # project
2089
2090                 # For Java, the way we're handling it right now, a
2091                 # `..' component doesn't make sense.
2092                 if ($lang && $lang->name eq 'java' && $object =~ /(\/|^)\.\.\//)
2093                   {
2094                     err_am "`$full' should not contain a `..' component";
2095                   }
2096
2097                 # Make sure object is removed by `make mostlyclean'.
2098                 $compile_clean_files{$object} = MOSTLY_CLEAN;
2099                 # If we have a libtool object then we also must remove
2100                 # the ordinary .o.
2101                 if ($object =~ /\.lo$/)
2102                 {
2103                     (my $xobj = $object) =~ s,lo$,\$(OBJEXT),;
2104                     $compile_clean_files{$xobj} = MOSTLY_CLEAN;
2105
2106                     # Remove any libtool object in this directory.
2107                     $libtool_clean_directories{$directory} = 1;
2108                 }
2109
2110                 push (@dep_list, require_build_directory ($directory));
2111
2112                 # If we're generating dependencies, we also want
2113                 # to make sure that the appropriate subdir of the
2114                 # .deps directory is created.
2115                 push (@dep_list,
2116                       require_build_directory ($directory . '/$(DEPDIR)'))
2117                   unless option 'no-dependencies';
2118             }
2119
2120             &pretty_print_rule ($object . ':', "\t", @dep_list)
2121                 if scalar @dep_list > 0;
2122         }
2123
2124         # Transform .o or $o file into .P file (for automatic
2125         # dependency code).
2126         # Properly flatten multiple adjacent slashes, as Solaris 10 make
2127         # might fail over them in an include statement.
2128         # Leading double slashes may be special, as per Posix, so deal
2129         # with them carefully.
2130         if ($lang && $lang->autodep ne 'no')
2131         {
2132             my $depfile = $object;
2133             $depfile =~ s/\.([^.]*)$/.P$1/;
2134             $depfile =~ s/\$\(OBJEXT\)$/o/;
2135             my $maybe_extra_leading_slash = '';
2136             $maybe_extra_leading_slash = '/' if $depfile =~ m,^//[^/],;
2137             $depfile =~ s,/+,/,g;
2138             my $basename = basename ($depfile);
2139             # This might make $dirname empty, but we account for that below.
2140             (my $dirname = dirname ($depfile)) =~ s/\/*$//;
2141             $dirname = $maybe_extra_leading_slash . $dirname;
2142             $dep_files{$dirname . '/$(DEPDIR)/' . $basename} = 1;
2143         }
2144     }
2145
2146     return @result;
2147 }
2148
2149
2150 # $LINKER
2151 # define_objects_from_sources ($VAR, $OBJVAR, $NODEFINE, $ONE_FILE,
2152 #                              $OBJ, $PARENT, $TOPPARENT, $WHERE, %TRANSFORM)
2153 # ---------------------------------------------------------------------------
2154 # Define an _OBJECTS variable for a _SOURCES variable (or subvariable)
2155 #
2156 # Arguments are:
2157 #   $VAR is the name of the _SOURCES variable
2158 #   $OBJVAR is the name of the _OBJECTS variable if known (otherwise
2159 #     it will be generated and returned).
2160 #   $NODEFINE is a boolean: if true, $OBJVAR will not be defined (but
2161 #     work done to determine the linker will be).
2162 #   $ONE_FILE is the canonical (transformed) name of object to build
2163 #   $OBJ is the object extension (i.e. either `.o' or `.lo').
2164 #   $TOPPARENT is the _SOURCES variable being processed.
2165 #   $WHERE context into which this definition is done
2166 #   %TRANSFORM extra arguments to pass to file_contents when producing
2167 #     rules
2168 #
2169 # Result is a pair ($LINKER, $OBJVAR):
2170 #    $LINKER is a boolean, true if a linker is needed to deal with the objects
2171 sub define_objects_from_sources ($$$$$$$%)
2172 {
2173   my ($var, $objvar, $nodefine, $one_file,
2174       $obj, $topparent, $where, %transform) = @_;
2175
2176   my $needlinker = "";
2177
2178   transform_variable_recursively
2179     ($var, $objvar, 'am__objects', $nodefine, $where,
2180      # The transform code to run on each filename.
2181      sub {
2182        my ($subvar, $val, $cond, $full_cond) = @_;
2183        my @trans = handle_single_transform ($subvar, $topparent,
2184                                             $one_file, $obj, $val,
2185                                             %transform);
2186        $needlinker = "true" if @trans;
2187        return @trans;
2188      });
2189
2190   return $needlinker;
2191 }
2192
2193
2194 # handle_source_transform ($CANON_TARGET, $TARGET, $OBJEXT, $WHERE, %TRANSFORM)
2195 # -----------------------------------------------------------------------------
2196 # Handle SOURCE->OBJECT transform for one program or library.
2197 # Arguments are:
2198 #   canonical (transformed) name of target to build
2199 #   actual target of object to build
2200 #   object extension (i.e., either `.o' or `$o')
2201 #   location of the source variable
2202 #   extra arguments to pass to file_contents when producing rules
2203 # Return the name of the linker variable that must be used.
2204 # Empty return means just use `LINK'.
2205 sub handle_source_transform ($$$$%)
2206 {
2207     # one_file is canonical name.  unxformed is given name.  obj is
2208     # object extension.
2209     my ($one_file, $unxformed, $obj, $where, %transform) = @_;
2210
2211     my $linker = '';
2212
2213     # No point in continuing if _OBJECTS is defined.
2214     return if reject_var ($one_file . '_OBJECTS',
2215                           $one_file . '_OBJECTS should not be defined');
2216
2217     my %used_pfx = ();
2218     my $needlinker;
2219     %linkers_used = ();
2220     foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
2221                         'dist_EXTRA_', 'nodist_EXTRA_')
2222     {
2223         my $varname = $prefix . $one_file . "_SOURCES";
2224         my $var = var $varname;
2225         next unless $var;
2226
2227         # We are going to define _OBJECTS variables using the prefix.
2228         # Then we glom them all together.  So we can't use the null
2229         # prefix here as we need it later.
2230         my $xpfx = ($prefix eq '') ? 'am_' : $prefix;
2231
2232         # Keep track of which prefixes we saw.
2233         $used_pfx{$xpfx} = 1
2234           unless $prefix =~ /EXTRA_/;
2235
2236         push @sources, "\$($varname)";
2237         push @dist_sources, shadow_unconditionally ($varname, $where)
2238           unless (option ('no-dist') || $prefix =~ /^nodist_/);
2239
2240         $needlinker |=
2241             define_objects_from_sources ($varname,
2242                                          $xpfx . $one_file . '_OBJECTS',
2243                                          $prefix =~ /EXTRA_/,
2244                                          $one_file, $obj, $varname, $where,
2245                                          DIST_SOURCE => ($prefix !~ /^nodist_/),
2246                                          %transform);
2247     }
2248     if ($needlinker)
2249     {
2250         $linker ||= &resolve_linker (%linkers_used);
2251     }
2252
2253     my @keys = sort keys %used_pfx;
2254     if (scalar @keys == 0)
2255     {
2256         # The default source for libfoo.la is libfoo.c, but for
2257         # backward compatibility we first look at libfoo_la.c,
2258         # if no default source suffix is given.
2259         my $old_default_source = "$one_file.c";
2260         my $ext_var = var ('AM_DEFAULT_SOURCE_EXT');
2261         my $default_source_ext = $ext_var ? variable_value ($ext_var) : '.c';
2262         msg_var ('unsupported', $ext_var, $ext_var->name . " can assume at most one value")
2263           if $default_source_ext =~ /[\t ]/;
2264         (my $default_source = $unxformed) =~ s,(\.[^./\\]*)?$,$default_source_ext,;
2265         if ($old_default_source ne $default_source
2266             && !$ext_var
2267             && (rule $old_default_source
2268                 || rule '$(srcdir)/' . $old_default_source
2269                 || rule '${srcdir}/' . $old_default_source
2270                 || -f $old_default_source))
2271           {
2272             my $loc = $where->clone;
2273             $loc->pop_context;
2274             msg ('obsolete', $loc,
2275                  "the default source for `$unxformed' has been changed "
2276                  . "to `$default_source'.\n(Using `$old_default_source' for "
2277                  . "backward compatibility.)");
2278             $default_source = $old_default_source;
2279           }
2280         # If a rule exists to build this source with a $(srcdir)
2281         # prefix, use that prefix in our variables too.  This is for
2282         # the sake of BSD Make.
2283         if (rule '$(srcdir)/' . $default_source
2284             || rule '${srcdir}/' . $default_source)
2285           {
2286             $default_source = '$(srcdir)/' . $default_source;
2287           }
2288
2289         &define_variable ($one_file . "_SOURCES", $default_source, $where);
2290         push (@sources, $default_source);
2291         push (@dist_sources, $default_source);
2292
2293         %linkers_used = ();
2294         my (@result) =
2295           handle_single_transform ($one_file . '_SOURCES',
2296                                    $one_file . '_SOURCES',
2297                                    $one_file, $obj,
2298                                    $default_source, %transform);
2299         $linker ||= &resolve_linker (%linkers_used);
2300         define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @result);
2301     }
2302     else
2303     {
2304         @keys = map { '$(' . $_ . $one_file . '_OBJECTS)' } @keys;
2305         define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @keys);
2306     }
2307
2308     # If we want to use `LINK' we must make sure it is defined.
2309     if ($linker eq '')
2310     {
2311         $need_link = 1;
2312     }
2313
2314     return $linker;
2315 }
2316
2317
2318 # handle_lib_objects ($XNAME, $VAR)
2319 # ---------------------------------
2320 # Special-case ALLOCA and LIBOBJS substitutions in _LDADD or _LIBADD variables.
2321 # Also, generate _DEPENDENCIES variable if appropriate.
2322 # Arguments are:
2323 #   transformed name of object being built, or empty string if no object
2324 #   name of _LDADD/_LIBADD-type variable to examine
2325 # Returns 1 if LIBOBJS seen, 0 otherwise.
2326 sub handle_lib_objects
2327 {
2328   my ($xname, $varname) = @_;
2329
2330   my $var = var ($varname);
2331   prog_error "`$varname' undefined"
2332     unless $var;
2333   prog_error "unexpected variable name `$varname'"
2334     unless $varname =~ /^(.*)(?:LIB|LD)ADD$/;
2335   my $prefix = $1 || 'AM_';
2336
2337   my $seen_libobjs = 0;
2338   my $flagvar = 0;
2339
2340   transform_variable_recursively
2341     ($varname, $xname . '_DEPENDENCIES', 'am__DEPENDENCIES',
2342      ! $xname, INTERNAL,
2343      # Transformation function, run on each filename.
2344      sub {
2345        my ($subvar, $val, $cond, $full_cond) = @_;
2346
2347        if ($val =~ /^-/)
2348          {
2349            # Skip -lfoo and -Ldir silently; these are explicitly allowed.
2350            if ($val !~ /^-[lL]/ &&
2351                # Skip -dlopen and -dlpreopen; these are explicitly allowed
2352                # for Libtool libraries or programs.  (Actually we are a bit
2353                # lax here since this code also applies to non-libtool
2354                # libraries or programs, for which -dlopen and -dlopreopen
2355                # are pure nonsense.  Diagnosing this doesn't seem very
2356                # important: the developer will quickly get complaints from
2357                # the linker.)
2358                $val !~ /^-dl(?:pre)?open$/ &&
2359                # Only get this error once.
2360                ! $flagvar)
2361              {
2362                $flagvar = 1;
2363                # FIXME: should display a stack of nested variables
2364                # as context when $var != $subvar.
2365                err_var ($var, "linker flags such as `$val' belong in "
2366                         . "`${prefix}LDFLAGS'");
2367              }
2368            return ();
2369          }
2370        elsif ($val !~ /^\@.*\@$/)
2371          {
2372            # Assume we have a file of some sort, and output it into the
2373            # dependency variable.  Autoconf substitutions are not output;
2374            # rarely is a new dependency substituted into e.g. foo_LDADD
2375            # -- but bad things (e.g. -lX11) are routinely substituted.
2376            # Note that LIBOBJS and ALLOCA are exceptions to this rule,
2377            # and handled specially below.
2378            return $val;
2379          }
2380        elsif ($val =~ /^\@(LT)?LIBOBJS\@$/)
2381          {
2382            handle_LIBOBJS ($subvar, $cond, $1);
2383            $seen_libobjs = 1;
2384            return $val;
2385          }
2386        elsif ($val =~ /^\@(LT)?ALLOCA\@$/)
2387          {
2388            handle_ALLOCA ($subvar, $cond, $1);
2389            return $val;
2390          }
2391        else
2392          {
2393            return ();
2394          }
2395      });
2396
2397   return $seen_libobjs;
2398 }
2399
2400 # handle_LIBOBJS_or_ALLOCA ($VAR)
2401 # -------------------------------
2402 # Definitions common to LIBOBJS and ALLOCA.
2403 # VAR should be one of LIBOBJS, LTLIBOBJS, ALLOCA, or LTALLOCA.
2404 sub handle_LIBOBJS_or_ALLOCA ($)
2405 {
2406   my ($var) = @_;
2407
2408   my $dir = '';
2409
2410   # If LIBOBJS files must be built in another directory we have
2411   # to define LIBOBJDIR and ensure the files get cleaned.
2412   # Otherwise LIBOBJDIR can be left undefined, and the cleaning
2413   # is achieved by `rm -f *.$(OBJEXT)' in compile.am.
2414   if ($config_libobj_dir
2415       && $relative_dir ne $config_libobj_dir)
2416     {
2417       if (option 'subdir-objects')
2418         {
2419           # In the top-level Makefile we do not use $(top_builddir), because
2420           # we are already there, and since the targets are built without
2421           # a $(top_builddir), it helps BSD Make to match them with
2422           # dependencies.
2423           $dir = "$config_libobj_dir/" if $config_libobj_dir ne '.';
2424           $dir = "$topsrcdir/$dir" if $relative_dir ne '.';
2425           define_variable ('LIBOBJDIR', "$dir", INTERNAL);
2426           $clean_files{"\$($var)"} = MOSTLY_CLEAN;
2427           # If LTLIBOBJS is used, we must also clear LIBOBJS (which might
2428           # be created by libtool as a side-effect of creating LTLIBOBJS).
2429           $clean_files{"\$($var)"} = MOSTLY_CLEAN if $var =~ s/^LT//;
2430         }
2431       else
2432         {
2433           error ("`\$($var)' cannot be used outside `$config_libobj_dir' if"
2434                  . " `subdir-objects' is not set");
2435         }
2436     }
2437
2438   return $dir;
2439 }
2440
2441 sub handle_LIBOBJS ($$$)
2442 {
2443   my ($var, $cond, $lt) = @_;
2444   my $myobjext = $lt ? 'lo' : 'o';
2445   $lt ||= '';
2446
2447   $var->requires_variables ("\@${lt}LIBOBJS\@ used", $lt . 'LIBOBJS')
2448     if ! keys %libsources;
2449
2450   my $dir = handle_LIBOBJS_or_ALLOCA "${lt}LIBOBJS";
2451
2452   foreach my $iter (keys %libsources)
2453     {
2454       if ($iter =~ /\.[cly]$/)
2455         {
2456           &saw_extension ($&);
2457           &saw_extension ('.c');
2458         }
2459
2460       if ($iter =~ /\.h$/)
2461         {
2462           require_libsource_with_macro ($cond, $var, FOREIGN, $iter);
2463         }
2464       elsif ($iter ne 'alloca.c')
2465         {
2466           my $rewrite = $iter;
2467           $rewrite =~ s/\.c$/.P$myobjext/;
2468           $dep_files{$dir . '$(DEPDIR)/' . $rewrite} = 1;
2469           $rewrite = "^" . quotemeta ($iter) . "\$";
2470           # Only require the file if it is not a built source.
2471           my $bs = var ('BUILT_SOURCES');
2472           if (! $bs || ! grep (/$rewrite/, $bs->value_as_list_recursive))
2473             {
2474               require_libsource_with_macro ($cond, $var, FOREIGN, $iter);
2475             }
2476         }
2477     }
2478 }
2479
2480 sub handle_ALLOCA ($$$)
2481 {
2482   my ($var, $cond, $lt) = @_;
2483   my $myobjext = $lt ? 'lo' : 'o';
2484   $lt ||= '';
2485   my $dir = handle_LIBOBJS_or_ALLOCA "${lt}ALLOCA";
2486
2487   $var->requires_variables ("\@${lt}ALLOCA\@ used", $lt . 'ALLOCA');
2488   $dep_files{$dir . '$(DEPDIR)/alloca.P' . $myobjext} = 1;
2489   require_libsource_with_macro ($cond, $var, FOREIGN, 'alloca.c');
2490   &saw_extension ('.c');
2491 }
2492
2493 # Canonicalize the input parameter
2494 sub canonicalize
2495 {
2496     my ($string) = @_;
2497     $string =~ tr/A-Za-z0-9_\@/_/c;
2498     return $string;
2499 }
2500
2501 # Canonicalize a name, and check to make sure the non-canonical name
2502 # is never used.  Returns canonical name.  Arguments are name and a
2503 # list of suffixes to check for.
2504 sub check_canonical_spelling
2505 {
2506   my ($name, @suffixes) = @_;
2507
2508   my $xname = &canonicalize ($name);
2509   if ($xname ne $name)
2510     {
2511       foreach my $xt (@suffixes)
2512         {
2513           reject_var ("$name$xt", "use `$xname$xt', not `$name$xt'");
2514         }
2515     }
2516
2517   return $xname;
2518 }
2519
2520
2521 # handle_compile ()
2522 # -----------------
2523 # Set up the compile suite.
2524 sub handle_compile ()
2525 {
2526     return
2527       unless $get_object_extension_was_run;
2528
2529     # Boilerplate.
2530     my $default_includes = '';
2531     if (! option 'nostdinc')
2532       {
2533         my @incs = ('-I.', subst ('am__isrc'));
2534
2535         my $var = var 'CONFIG_HEADER';
2536         if ($var)
2537           {
2538             foreach my $hdr (split (' ', $var->variable_value))
2539               {
2540                 push @incs, '-I' . dirname ($hdr);
2541               }
2542           }
2543         # We want `-I. -I$(srcdir)', but the latter -I is redundant
2544         # and unaesthetic in non-VPATH builds.  We use `-I.@am__isrc@`
2545         # instead.  It will be replaced by '-I.' or '-I. -I$(srcdir)'.
2546         # Items in CONFIG_HEADER are never in $(srcdir) so it is safe
2547         # to just put @am__isrc@ right after `-I.', without a space.
2548         ($default_includes = ' ' . uniq (@incs)) =~ s/ @/@/;
2549       }
2550
2551     my (@mostly_rms, @dist_rms);
2552     foreach my $item (sort keys %compile_clean_files)
2553     {
2554         if ($compile_clean_files{$item} == MOSTLY_CLEAN)
2555         {
2556             push (@mostly_rms, "\t-rm -f $item");
2557         }
2558         elsif ($compile_clean_files{$item} == DIST_CLEAN)
2559         {
2560             push (@dist_rms, "\t-rm -f $item");
2561         }
2562         else
2563         {
2564           prog_error 'invalid entry in %compile_clean_files';
2565         }
2566     }
2567
2568     my ($coms, $vars, $rules) =
2569       &file_contents_internal (1, "$libdir/am/compile.am",
2570                                new Automake::Location,
2571                                ('DEFAULT_INCLUDES' => $default_includes,
2572                                 'MOSTLYRMS' => join ("\n", @mostly_rms),
2573                                 'DISTRMS' => join ("\n", @dist_rms)));
2574     $output_vars .= $vars;
2575     $output_rules .= "$coms$rules";
2576
2577     # Check for automatic de-ANSI-fication.
2578     if (option 'ansi2knr')
2579       {
2580         my ($ansi2knr_filename, $ansi2knr_where) = @{option 'ansi2knr'};
2581         my $ansi2knr_dir = '';
2582
2583         require_variables ($ansi2knr_where, "option `ansi2knr' is used",
2584                            TRUE, "ANSI2KNR", "U");
2585
2586         # topdir is where ansi2knr should be.
2587         if ($ansi2knr_filename eq 'ansi2knr')
2588           {
2589             # Only require ansi2knr files if they should appear in
2590             # this directory.
2591             require_file ($ansi2knr_where, FOREIGN,
2592                           'ansi2knr.c', 'ansi2knr.1');
2593
2594             # ansi2knr needs to be built before subdirs, so unshift it
2595             # rather then pushing it.
2596             unshift (@all, '$(ANSI2KNR)');
2597           }
2598         else
2599           {
2600             $ansi2knr_dir = dirname ($ansi2knr_filename);
2601           }
2602
2603         $output_rules .= &file_contents ('ansi2knr',
2604                                          new Automake::Location,
2605                                          'ANSI2KNR-DIR' => $ansi2knr_dir);
2606
2607     }
2608 }
2609
2610 # handle_libtool ()
2611 # -----------------
2612 # Handle libtool rules.
2613 sub handle_libtool
2614 {
2615   return unless var ('LIBTOOL');
2616
2617   # Libtool requires some files, but only at top level.
2618   # (Starting with Libtool 2.0 we do not have to bother.  These
2619   # requirements are done with AC_REQUIRE_AUX_FILE.)
2620   require_conf_file_with_macro (TRUE, 'LIBTOOL', FOREIGN, @libtool_files)
2621     if $relative_dir eq '.' && ! $libtool_new_api;
2622
2623   my @libtool_rms;
2624   foreach my $item (sort keys %libtool_clean_directories)
2625     {
2626       my $dir = ($item eq '.') ? '' : "$item/";
2627       # .libs is for Unix, _libs for DOS.
2628       push (@libtool_rms, "\t-rm -rf ${dir}.libs ${dir}_libs");
2629     }
2630
2631   check_user_variables 'LIBTOOLFLAGS';
2632
2633   # Output the libtool compilation rules.
2634   $output_rules .= &file_contents ('libtool',
2635                                    new Automake::Location,
2636                                    LTRMS => join ("\n", @libtool_rms));
2637 }
2638
2639 # handle_programs ()
2640 # ------------------
2641 # Handle C programs.
2642 sub handle_programs
2643 {
2644   my @proglist = &am_install_var ('progs', 'PROGRAMS',
2645                                   'bin', 'sbin', 'libexec', 'pkglib',
2646                                   'noinst', 'check');
2647   return if ! @proglist;
2648
2649   my $seen_global_libobjs =
2650     var ('LDADD') && &handle_lib_objects ('', 'LDADD');
2651
2652   foreach my $pair (@proglist)
2653     {
2654       my ($where, $one_file) = @$pair;
2655
2656       my $seen_libobjs = 0;
2657       my $obj = get_object_extension '.$(OBJEXT)';
2658
2659       $known_programs{$one_file} = $where;
2660
2661       # Canonicalize names and check for misspellings.
2662       my $xname = &check_canonical_spelling ($one_file, '_LDADD', '_LDFLAGS',
2663                                              '_SOURCES', '_OBJECTS',
2664                                              '_DEPENDENCIES');
2665
2666       $where->push_context ("while processing program `$one_file'");
2667       $where->set (INTERNAL->get);
2668
2669       my $linker = &handle_source_transform ($xname, $one_file, $obj, $where,
2670                                              NONLIBTOOL => 1, LIBTOOL => 0);
2671
2672       if (var ($xname . "_LDADD"))
2673         {
2674           $seen_libobjs = &handle_lib_objects ($xname, $xname . '_LDADD');
2675         }
2676       else
2677         {
2678           # User didn't define prog_LDADD override.  So do it.
2679           &define_variable ($xname . '_LDADD', '$(LDADD)', $where);
2680
2681           # This does a bit too much work.  But we need it to
2682           # generate _DEPENDENCIES when appropriate.
2683           if (var ('LDADD'))
2684             {
2685               $seen_libobjs = &handle_lib_objects ($xname, 'LDADD');
2686             }
2687         }
2688
2689       reject_var ($xname . '_LIBADD',
2690                   "use `${xname}_LDADD', not `${xname}_LIBADD'");
2691
2692       set_seen ($xname . '_DEPENDENCIES');
2693       set_seen ('EXTRA_' . $xname . '_DEPENDENCIES');
2694       set_seen ($xname . '_LDFLAGS');
2695
2696       # Determine program to use for link.
2697       my($xlink, $vlink) = &define_per_target_linker_variable ($linker, $xname);
2698       $vlink = verbose_flag ($vlink || 'GEN');
2699
2700       # If the resulting program lies into a subdirectory,
2701       # make sure this directory will exist.
2702       my $dirstamp = require_build_directory_maybe ($one_file);
2703
2704       $libtool_clean_directories{dirname ($one_file)} = 1;
2705
2706       $output_rules .= &file_contents ('program',
2707                                        $where,
2708                                        PROGRAM  => $one_file,
2709                                        XPROGRAM => $xname,
2710                                        XLINK    => $xlink,
2711                                        VERBOSE  => $vlink,
2712                                        DIRSTAMP => $dirstamp,
2713                                        EXEEXT   => '$(EXEEXT)');
2714
2715       if ($seen_libobjs || $seen_global_libobjs)
2716         {
2717           if (var ($xname . '_LDADD'))
2718             {
2719               &check_libobjs_sources ($xname, $xname . '_LDADD');
2720             }
2721           elsif (var ('LDADD'))
2722             {
2723               &check_libobjs_sources ($xname, 'LDADD');
2724             }
2725         }
2726     }
2727 }
2728
2729
2730 # handle_libraries ()
2731 # -------------------
2732 # Handle libraries.
2733 sub handle_libraries
2734 {
2735   my @liblist = &am_install_var ('libs', 'LIBRARIES',
2736                                  'lib', 'pkglib', 'noinst', 'check');
2737   return if ! @liblist;
2738
2739   my @prefix = am_primary_prefixes ('LIBRARIES', 0, 'lib', 'pkglib',
2740                                     'noinst', 'check');
2741
2742   if (@prefix)
2743     {
2744       my $var = rvar ($prefix[0] . '_LIBRARIES');
2745       $var->requires_variables ('library used', 'RANLIB');
2746     }
2747
2748   &define_variable ('AR', 'ar', INTERNAL);
2749   &define_variable ('ARFLAGS', 'cru', INTERNAL);
2750   &define_verbose_tagvar ('AR');
2751
2752   foreach my $pair (@liblist)
2753     {
2754       my ($where, $onelib) = @$pair;
2755
2756       my $seen_libobjs = 0;
2757       # Check that the library fits the standard naming convention.
2758       my $bn = basename ($onelib);
2759       if ($bn !~ /^lib.*\.a$/)
2760         {
2761           $bn =~ s/^(?:lib)?(.*?)(?:\.[^.]*)?$/lib$1.a/;
2762           my $suggestion = dirname ($onelib) . "/$bn";
2763           $suggestion =~ s|^\./||g;
2764           msg ('error-gnu/warn', $where,
2765                "`$onelib' is not a standard library name\n"
2766                . "did you mean `$suggestion'?")
2767         }
2768
2769       ($known_libraries{$onelib} = $bn) =~ s/\.a$//;
2770
2771       $where->push_context ("while processing library `$onelib'");
2772       $where->set (INTERNAL->get);
2773
2774       my $obj = get_object_extension '.$(OBJEXT)';
2775
2776       # Canonicalize names and check for misspellings.
2777       my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_SOURCES',
2778                                             '_OBJECTS', '_DEPENDENCIES',
2779                                             '_AR');
2780
2781       if (! var ($xlib . '_AR'))
2782         {
2783           &define_variable ($xlib . '_AR', '$(AR) $(ARFLAGS)', $where);
2784         }
2785
2786       # Generate support for conditional object inclusion in
2787       # libraries.
2788       if (var ($xlib . '_LIBADD'))
2789         {
2790           if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2791             {
2792               $seen_libobjs = 1;
2793             }
2794         }
2795       else
2796         {
2797           &define_variable ($xlib . "_LIBADD", '', $where);
2798         }
2799
2800       reject_var ($xlib . '_LDADD',
2801                   "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
2802
2803       # Make sure we at look at this.
2804       set_seen ($xlib . '_DEPENDENCIES');
2805       set_seen ('EXTRA_' . $xlib . '_DEPENDENCIES');
2806
2807       &handle_source_transform ($xlib, $onelib, $obj, $where,
2808                                 NONLIBTOOL => 1, LIBTOOL => 0);
2809
2810       # If the resulting library lies into a subdirectory,
2811       # make sure this directory will exist.
2812       my $dirstamp = require_build_directory_maybe ($onelib);
2813       my $verbose = verbose_flag ('AR');
2814       my $silent = silent_flag ();
2815
2816       $output_rules .= &file_contents ('library',
2817                                        $where,
2818                                        VERBOSE  => $verbose,
2819                                        SILENT   => $silent,
2820                                        LIBRARY  => $onelib,
2821                                        XLIBRARY => $xlib,
2822                                        DIRSTAMP => $dirstamp);
2823
2824       if ($seen_libobjs)
2825         {
2826           if (var ($xlib . '_LIBADD'))
2827             {
2828               &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
2829             }
2830         }
2831     }
2832 }
2833
2834
2835 # handle_ltlibraries ()
2836 # ---------------------
2837 # Handle shared libraries.
2838 sub handle_ltlibraries
2839 {
2840   my @liblist = &am_install_var ('ltlib', 'LTLIBRARIES',
2841                                  'noinst', 'lib', 'pkglib', 'check');
2842   return if ! @liblist;
2843
2844   my @prefix = am_primary_prefixes ('LTLIBRARIES', 0, 'lib', 'pkglib',
2845                                     'noinst', 'check');
2846
2847   if (@prefix)
2848     {
2849       my $var = rvar ($prefix[0] . '_LTLIBRARIES');
2850       $var->requires_variables ('Libtool library used', 'LIBTOOL');
2851     }
2852
2853   my %instdirs = ();
2854   my %instsubdirs = ();
2855   my %instconds = ();
2856   my %liblocations = ();        # Location (in Makefile.am) of each library.
2857
2858   foreach my $key (@prefix)
2859     {
2860       # Get the installation directory of each library.
2861       my $dir = $key;
2862       my $strip_subdir = 1;
2863       if ($dir =~ /^nobase_/)
2864         {
2865           $dir =~ s/^nobase_//;
2866           $strip_subdir = 0;
2867         }
2868       my $var = rvar ($key . '_LTLIBRARIES');
2869
2870       # We reject libraries which are installed in several places
2871       # in the same condition, because we can only specify one
2872       # `-rpath' option.
2873       $var->traverse_recursively
2874         (sub
2875          {
2876            my ($var, $val, $cond, $full_cond) = @_;
2877            my $hcond = $full_cond->human;
2878            my $where = $var->rdef ($cond)->location;
2879            my $ldir = '';
2880            $ldir = '/' . dirname ($val)
2881              if (!$strip_subdir);
2882            # A library cannot be installed in different directories
2883            # in overlapping conditions.
2884            if (exists $instconds{$val})
2885              {
2886                my ($msg, $acond) =
2887                  $instconds{$val}->ambiguous_p ($val, $full_cond);
2888
2889                if ($msg)
2890                  {
2891                    error ($where, $msg, partial => 1);
2892                    my $dirtxt = "installed " . ($strip_subdir ? "in" : "below") . " `$dir'";
2893                    $dirtxt = "built for `$dir'"
2894                      if $dir eq 'EXTRA' || $dir eq 'noinst' || $dir eq 'check';
2895                    my $dircond =
2896                      $full_cond->true ? "" : " in condition $hcond";
2897
2898                    error ($where, "`$val' should be $dirtxt$dircond ...",
2899                           partial => 1);
2900
2901                    my $hacond = $acond->human;
2902                    my $adir = $instdirs{$val}{$acond};
2903                    my $adirtxt = "installed in `$adir'";
2904                    $adirtxt = "built for `$adir'"
2905                      if ($adir eq 'EXTRA' || $adir eq 'noinst'
2906                          || $adir eq 'check');
2907                    my $adircond = $acond->true ? "" : " in condition $hacond";
2908
2909                    my $onlyone = ($dir ne $adir) ?
2910                      ("\nLibtool libraries can be built for only one "
2911                       . "destination") : "";
2912
2913                    error ($liblocations{$val}{$acond},
2914                           "... and should also be $adirtxt$adircond.$onlyone");
2915                    return;
2916                  }
2917              }
2918            else
2919              {
2920                $instconds{$val} = new Automake::DisjConditions;
2921              }
2922            $instdirs{$val}{$full_cond} = $dir;
2923            $instsubdirs{$val}{$full_cond} = $ldir;
2924            $liblocations{$val}{$full_cond} = $where;
2925            $instconds{$val} = $instconds{$val}->merge ($full_cond);
2926          },
2927          sub
2928          {
2929            return ();
2930          },
2931          skip_ac_subst => 1);
2932     }
2933
2934   foreach my $pair (@liblist)
2935     {
2936       my ($where, $onelib) = @$pair;
2937
2938       my $seen_libobjs = 0;
2939       my $obj = get_object_extension '.lo';
2940
2941       # Canonicalize names and check for misspellings.
2942       my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_LDFLAGS',
2943                                             '_SOURCES', '_OBJECTS',
2944                                             '_DEPENDENCIES');
2945
2946       # Check that the library fits the standard naming convention.
2947       my $libname_rx = '^lib.*\.la';
2948       my $ldvar = var ("${xlib}_LDFLAGS") || var ('AM_LDFLAGS');
2949       my $ldvar2 = var ('LDFLAGS');
2950       if (($ldvar && grep (/-module/, $ldvar->value_as_list_recursive))
2951           || ($ldvar2 && grep (/-module/, $ldvar2->value_as_list_recursive)))
2952         {
2953           # Relax name checking for libtool modules.
2954           $libname_rx = '\.la';
2955         }
2956
2957       my $bn = basename ($onelib);
2958       if ($bn !~ /$libname_rx$/)
2959         {
2960           my $type = 'library';
2961           if ($libname_rx eq '\.la')
2962             {
2963               $bn =~ s/^(lib|)(.*?)(?:\.[^.]*)?$/$1$2.la/;
2964               $type = 'module';
2965             }
2966           else
2967             {
2968               $bn =~ s/^(?:lib)?(.*?)(?:\.[^.]*)?$/lib$1.la/;
2969             }
2970           my $suggestion = dirname ($onelib) . "/$bn";
2971           $suggestion =~ s|^\./||g;
2972           msg ('error-gnu/warn', $where,
2973                "`$onelib' is not a standard libtool $type name\n"
2974                . "did you mean `$suggestion'?")
2975         }
2976
2977       ($known_libraries{$onelib} = $bn) =~ s/\.la$//;
2978
2979       $where->push_context ("while processing Libtool library `$onelib'");
2980       $where->set (INTERNAL->get);
2981
2982       # Make sure we look at these.
2983       set_seen ($xlib . '_LDFLAGS');
2984       set_seen ($xlib . '_DEPENDENCIES');
2985       set_seen ('EXTRA_' . $xlib . '_DEPENDENCIES');
2986
2987       # Generate support for conditional object inclusion in
2988       # libraries.
2989       if (var ($xlib . '_LIBADD'))
2990         {
2991           if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2992             {
2993               $seen_libobjs = 1;
2994             }
2995         }
2996       else
2997         {
2998           &define_variable ($xlib . "_LIBADD", '', $where);
2999         }
3000
3001       reject_var ("${xlib}_LDADD",
3002                   "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
3003
3004
3005       my $linker = &handle_source_transform ($xlib, $onelib, $obj, $where,
3006                                              NONLIBTOOL => 0, LIBTOOL => 1);
3007
3008       # Determine program to use for link.
3009       my($xlink, $vlink) = &define_per_target_linker_variable ($linker, $xlib);
3010       $vlink = verbose_flag ($vlink || 'GEN');
3011
3012       my $rpathvar = "am_${xlib}_rpath";
3013       my $rpath = "\$($rpathvar)";
3014       foreach my $rcond ($instconds{$onelib}->conds)
3015         {
3016           my $val;
3017           if ($instdirs{$onelib}{$rcond} eq 'EXTRA'
3018               || $instdirs{$onelib}{$rcond} eq 'noinst'
3019               || $instdirs{$onelib}{$rcond} eq 'check')
3020             {
3021               # It's an EXTRA_ library, so we can't specify -rpath,
3022               # because we don't know where the library will end up.
3023               # The user probably knows, but generally speaking automake
3024               # doesn't -- and in fact configure could decide
3025               # dynamically between two different locations.
3026               $val = '';
3027             }
3028           else
3029             {
3030               $val = ('-rpath $(' . $instdirs{$onelib}{$rcond} . 'dir)');
3031               $val .= $instsubdirs{$onelib}{$rcond}
3032                 if defined $instsubdirs{$onelib}{$rcond};
3033             }
3034           if ($rcond->true)
3035             {
3036               # If $rcond is true there is only one condition and
3037               # there is no point defining an helper variable.
3038               $rpath = $val;
3039             }
3040           else
3041             {
3042               define_pretty_variable ($rpathvar, $rcond, INTERNAL, $val);
3043             }
3044         }
3045
3046       # If the resulting library lies into a subdirectory,
3047       # make sure this directory will exist.
3048       my $dirstamp = require_build_directory_maybe ($onelib);
3049
3050       # Remember to cleanup .libs/ in this directory.
3051       my $dirname = dirname $onelib;
3052       $libtool_clean_directories{$dirname} = 1;
3053
3054       $output_rules .= &file_contents ('ltlibrary',
3055                                        $where,
3056                                        LTLIBRARY  => $onelib,
3057                                        XLTLIBRARY => $xlib,
3058                                        RPATH      => $rpath,
3059                                        XLINK      => $xlink,
3060                                        VERBOSE    => $vlink,
3061                                        DIRSTAMP   => $dirstamp);
3062       if ($seen_libobjs)
3063         {
3064           if (var ($xlib . '_LIBADD'))
3065             {
3066               &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
3067             }
3068         }
3069     }
3070 }
3071
3072 # See if any _SOURCES variable were misspelled.
3073 sub check_typos ()
3074 {
3075   # It is ok if the user sets this particular variable.
3076   set_seen 'AM_LDFLAGS';
3077
3078   foreach my $primary ('SOURCES', 'LIBADD', 'LDADD', 'LDFLAGS', 'DEPENDENCIES')
3079     {
3080       foreach my $var (variables $primary)
3081         {
3082           my $varname = $var->name;
3083           # A configure variable is always legitimate.
3084           next if exists $configure_vars{$varname};
3085
3086           for my $cond ($var->conditions->conds)
3087             {
3088               $varname =~ /^(?:EXTRA_)?(?:nobase_)?(?:dist_|nodist_)?(.*)_[[:alnum:]]+$/;
3089               msg_var ('syntax', $var, "variable `$varname' is defined but no"
3090                        . " program or\nlibrary has `$1' as canonical name"
3091                        . " (possible typo)")
3092                 unless $var->rdef ($cond)->seen;
3093             }
3094         }
3095     }
3096 }
3097
3098
3099 # Handle scripts.
3100 sub handle_scripts
3101 {
3102     # NOTE we no longer automatically clean SCRIPTS, because it is
3103     # useful to sometimes distribute scripts verbatim.  This happens
3104     # e.g. in Automake itself.
3105     &am_install_var ('-candist', 'scripts', 'SCRIPTS',
3106                      'bin', 'sbin', 'libexec', 'pkgdata',
3107                      'noinst', 'check');
3108 }
3109
3110
3111
3112
3113 ## ------------------------ ##
3114 ## Handling Texinfo files.  ##
3115 ## ------------------------ ##
3116
3117 # ($OUTFILE, $VFILE, @CLEAN_FILES)
3118 # &scan_texinfo_file ($FILENAME)
3119 # ------------------------------
3120 # $OUTFILE     - name of the info file produced by $FILENAME.
3121 # $VFILE       - name of the version.texi file used (undef if none).
3122 # @CLEAN_FILES - list of byproducts (indexes etc.)
3123 sub scan_texinfo_file ($)
3124 {
3125   my ($filename) = @_;
3126
3127   # Some of the following extensions are always created, no matter
3128   # whether indexes are used or not.  Other (like cps, fns, ... pgs)
3129   # are only created when they are used.  We used to scan $FILENAME
3130   # for their use, but that is not enough: they could be used in
3131   # included files.  We can't scan included files because we don't
3132   # know the include path.  Therefore we always erase these files, no
3133   # matter whether they are used or not.
3134   #
3135   # (tmp is only created if an @macro is used and a certain e-TeX
3136   # feature is not available.)
3137   my %clean_suffixes =
3138     map { $_ => 1 } (qw(aux log toc tmp
3139                         cp cps
3140                         fn fns
3141                         ky kys
3142                         vr vrs
3143                         tp tps
3144                         pg pgs)); # grep 'new.*index' texinfo.tex
3145
3146   my $texi = new Automake::XFile "< $filename";
3147   verb "reading $filename";
3148
3149   my ($outfile, $vfile);
3150   while ($_ = $texi->getline)
3151     {
3152       if (/^\@setfilename +(\S+)/)
3153         {
3154           # Honor only the first @setfilename.  (It's possible to have
3155           # more occurrences later if the manual shows examples of how
3156           # to use @setfilename...)
3157           next if $outfile;
3158
3159           $outfile = $1;
3160           if ($outfile =~ /\.([^.]+)$/ && $1 ne 'info')
3161             {
3162               error ("$filename:$.",
3163                      "output `$outfile' has unrecognized extension");
3164               return;
3165             }
3166         }
3167       # A "version.texi" file is actually any file whose name matches
3168       # "vers*.texi".
3169       elsif (/^\@include\s+(vers[^.]*\.texi)\s*$/)
3170         {
3171           $vfile = $1;
3172         }
3173
3174       # Try to find new or unused indexes.
3175
3176       # Creating a new category of index.
3177       elsif (/^\@def(code)?index (\w+)/)
3178         {
3179           $clean_suffixes{$2} = 1;
3180           $clean_suffixes{"$2s"} = 1;
3181         }
3182
3183       # Merging an index into an another.
3184       elsif (/^\@syn(code)?index (\w+) (\w+)/)
3185         {
3186           delete $clean_suffixes{"$2s"};
3187           $clean_suffixes{"$3s"} = 1;
3188         }
3189
3190     }
3191
3192   if (! $outfile)
3193     {
3194       err_am "`$filename' missing \@setfilename";
3195       return;
3196     }
3197
3198   my $infobase = basename ($filename);
3199   $infobase =~ s/\.te?xi(nfo)?$//;
3200   return ($outfile, $vfile,
3201           map { "$infobase.$_" } (sort keys %clean_suffixes));
3202 }
3203
3204
3205 # ($DIRSTAMP, @CLEAN_FILES)
3206 # output_texinfo_build_rules ($SOURCE, $DEST, $INSRC, @DEPENDENCIES)
3207 # ------------------------------------------------------------------
3208 # SOURCE - the source Texinfo file
3209 # DEST - the destination Info file
3210 # INSRC - whether DEST should be built in the source tree
3211 # DEPENDENCIES - known dependencies
3212 sub output_texinfo_build_rules ($$$@)
3213 {
3214   my ($source, $dest, $insrc, @deps) = @_;
3215
3216   # Split `a.texi' into `a' and `.texi'.
3217   my ($spfx, $ssfx) = ($source =~ /^(.*?)(\.[^.]*)?$/);
3218   my ($dpfx, $dsfx) = ($dest =~ /^(.*?)(\.[^.]*)?$/);
3219
3220   $ssfx ||= "";
3221   $dsfx ||= "";
3222
3223   # We can output two kinds of rules: the "generic" rules use Make
3224   # suffix rules and are appropriate when $source and $dest do not lie
3225   # in a sub-directory; the "specific" rules are needed in the other
3226   # case.
3227   #
3228   # The former are output only once (this is not really apparent here,
3229   # but just remember that some logic deeper in Automake will not
3230   # output the same rule twice); while the later need to be output for
3231   # each Texinfo source.
3232   my $generic;
3233   my $makeinfoflags;
3234   my $sdir = dirname $source;
3235   if ($sdir eq '.' && dirname ($dest) eq '.')
3236     {
3237       $generic = 1;
3238       $makeinfoflags = '-I $(srcdir)';
3239     }
3240   else
3241     {
3242       $generic = 0;
3243       $makeinfoflags = "-I $sdir -I \$(srcdir)/$sdir";
3244     }
3245
3246   # A directory can contain two kinds of info files: some built in the
3247   # source tree, and some built in the build tree.  The rules are
3248   # different in each case.  However we cannot output two different
3249   # set of generic rules.  Because in-source builds are more usual, we
3250   # use generic rules in this case and fall back to "specific" rules
3251   # for build-dir builds.  (It should not be a problem to invert this
3252   # if needed.)
3253   $generic = 0 unless $insrc;
3254
3255   # We cannot use a suffix rule to build info files with an empty
3256   # extension.  Otherwise we would output a single suffix inference
3257   # rule, with separate dependencies, as in
3258   #
3259   #    .texi:
3260   #             $(MAKEINFO) ...
3261   #    foo.info: foo.texi
3262   #
3263   # which confuse Solaris make.  (See the Autoconf manual for
3264   # details.)  Therefore we use a specific rule in this case.  This
3265   # applies to info files only (dvi and pdf files always have an
3266   # extension).
3267   my $generic_info = ($generic && $dsfx) ? 1 : 0;
3268
3269   # If the resulting file lie into a subdirectory,
3270   # make sure this directory will exist.
3271   my $dirstamp = require_build_directory_maybe ($dest);
3272
3273   my $dipfx = ($insrc ? '$(srcdir)/' : '') . $dpfx;
3274
3275   $output_rules .= file_contents ('texibuild',
3276                                   new Automake::Location,
3277                                   AM_V_MAKEINFO    => verbose_flag('MAKEINFO'),
3278                                   AM_V_TEXI2DVI    => verbose_flag('TEXI2DVI'),
3279                                   AM_V_TEXI2PDF    => verbose_flag('TEXI2PDF'),
3280                                   DEPS             => "@deps",
3281                                   DEST_PREFIX      => $dpfx,
3282                                   DEST_INFO_PREFIX => $dipfx,
3283                                   DEST_SUFFIX      => $dsfx,
3284                                   DIRSTAMP         => $dirstamp,
3285                                   GENERIC          => $generic,
3286                                   GENERIC_INFO     => $generic_info,
3287                                   INSRC            => $insrc,
3288                                   MAKEINFOFLAGS    => $makeinfoflags,
3289                                   SILENT           => silent_flag(),
3290                                   SOURCE           => ($generic
3291                                                        ? '$<' : $source),
3292                                   SOURCE_INFO      => ($generic_info
3293                                                        ? '$<' : $source),
3294                                   SOURCE_REAL      => $source,
3295                                   SOURCE_SUFFIX    => $ssfx,
3296                                   TEXIQUIET        => verbose_flag('texinfo'),
3297                                   TEXIDEVNULL      => verbose_flag('texidevnull'),
3298                                   );
3299   return ($dirstamp, "$dpfx.dvi", "$dpfx.pdf", "$dpfx.ps", "$dpfx.html");
3300 }
3301
3302
3303 # ($MOSTLYCLEAN, $TEXICLEAN, $MAINTCLEAN)
3304 # handle_texinfo_helper ($info_texinfos)
3305 # --------------------------------------
3306 # Handle all Texinfo source; helper for handle_texinfo.
3307 sub handle_texinfo_helper ($)
3308 {
3309   my ($info_texinfos) = @_;
3310   my (@infobase, @info_deps_list, @texi_deps);
3311   my %versions;
3312   my $done = 0;
3313   my (@mostly_cleans, @texi_cleans, @maint_cleans) = ('', '', '');
3314
3315   # Build a regex matching user-cleaned files.
3316   my $d = var 'DISTCLEANFILES';
3317   my $c = var 'CLEANFILES';
3318   my @f = ();
3319   push @f, $d->value_as_list_recursive (inner_expand => 1) if $d;
3320   push @f, $c->value_as_list_recursive (inner_expand => 1) if $c;
3321   @f = map { s|[^A-Za-z_0-9*\[\]\-]|\\$&|g; s|\*|[^/]*|g; $_; } @f;
3322   my $user_cleaned_files = '^(?:' . join ('|', @f) . ')$';
3323
3324   foreach my $texi
3325       ($info_texinfos->value_as_list_recursive (inner_expand => 1))
3326     {
3327       my $infobase = $texi;
3328       $infobase =~ s/\.(txi|texinfo|texi)$//;
3329
3330       if ($infobase eq $texi)
3331         {
3332           # FIXME: report line number.
3333           err_am "texinfo file `$texi' has unrecognized extension";
3334           next;
3335         }
3336
3337       push @infobase, $infobase;
3338
3339       # If 'version.texi' is referenced by input file, then include
3340       # automatic versioning capability.
3341       my ($out_file, $vtexi, @clean_files) =
3342         scan_texinfo_file ("$relative_dir/$texi")
3343         or next;
3344       push (@mostly_cleans, @clean_files);
3345
3346       # If the Texinfo source is in a subdirectory, create the
3347       # resulting info in this subdirectory.  If it is in the current
3348       # directory, try hard to not prefix "./" because it breaks the
3349       # generic rules.
3350       my $outdir = dirname ($texi) . '/';
3351       $outdir = "" if $outdir eq './';
3352       $out_file =  $outdir . $out_file;
3353
3354       # Until Automake 1.6.3, .info files were built in the
3355       # source tree.  This was an obstacle to the support of
3356       # non-distributed .info files, and non-distributed .texi
3357       # files.
3358       #
3359       # * Non-distributed .texi files is important in some packages
3360       #   where .texi files are built at make time, probably using
3361       #   other binaries built in the package itself, maybe using
3362       #   tools or information found on the build host.  Because
3363       #   these files are not distributed they are always rebuilt
3364       #   at make time; they should therefore not lie in the source
3365       #   directory.  One plan was to support this using
3366       #   nodist_info_TEXINFOS or something similar.  (Doing this
3367       #   requires some sanity checks.  For instance Automake should
3368       #   not allow:
3369       #      dist_info_TEXINFOS = foo.texi
3370       #      nodist_foo_TEXINFOS = included.texi
3371       #   because a distributed file should never depend on a
3372       #   non-distributed file.)
3373       #
3374       # * If .texi files are not distributed, then .info files should
3375       #   not be distributed either.  There are also cases where one
3376       #   wants to distribute .texi files, but does not want to
3377       #   distribute the .info files.  For instance the Texinfo package
3378       #   distributes the tool used to build these files; it would
3379       #   be a waste of space to distribute them.  It's not clear
3380       #   which syntax we should use to indicate that .info files should
3381       #   not be distributed.  Akim Demaille suggested that eventually
3382       #   we switch to a new syntax:
3383       #   |  Maybe we should take some inspiration from what's already
3384       #   |  done in the rest of Automake.  Maybe there is too much
3385       #   |  syntactic sugar here, and you want
3386       #   |     nodist_INFO = bar.info
3387       #   |     dist_bar_info_SOURCES = bar.texi
3388       #   |     bar_texi_DEPENDENCIES = foo.texi
3389       #   |  with a bit of magic to have bar.info represent the whole
3390       #   |  bar*info set.  That's a lot more verbose that the current
3391       #   |  situation, but it is # not new, hence the user has less
3392       #   |  to learn.
3393       #   |
3394       #   |  But there is still too much room for meaningless specs:
3395       #   |     nodist_INFO = bar.info
3396       #   |     dist_bar_info_SOURCES = bar.texi
3397       #   |     dist_PS = bar.ps something-written-by-hand.ps
3398       #   |     nodist_bar_ps_SOURCES = bar.texi
3399       #   |     bar_texi_DEPENDENCIES = foo.texi
3400       #   |  here bar.texi is dist_ in line 2, and nodist_ in 4.
3401       #
3402       # Back to the point, it should be clear that in order to support
3403       # non-distributed .info files, we need to build them in the
3404       # build tree, not in the source tree (non-distributed .texi
3405       # files are less of a problem, because we do not output build
3406       # rules for them).  In Automake 1.7 .info build rules have been
3407       # largely cleaned up so that .info files get always build in the
3408       # build tree, even when distributed.  The idea was that
3409       #   (1) if during a VPATH build the .info file was found to be
3410       #       absent or out-of-date (in the source tree or in the
3411       #       build tree), Make would rebuild it in the build tree.
3412       #       If an up-to-date source-tree of the .info file existed,
3413       #       make would not rebuild it in the build tree.
3414       #   (2) having two copies of .info files, one in the source tree
3415       #       and one (newer) in the build tree is not a problem
3416       #       because `make dist' always pick files in the build tree
3417       #       first.
3418       # However it turned out the be a bad idea for several reasons:
3419       #   * Tru64, OpenBSD, and FreeBSD (not NetBSD) Make do not behave
3420       #     like GNU Make on point (1) above.  These implementations
3421       #     of Make would always rebuild .info files in the build
3422       #     tree, even if such files were up to date in the source
3423       #     tree.  Consequently, it was impossible to perform a VPATH
3424       #     build of a package containing Texinfo files using these
3425       #     Make implementations.
3426       #     (Refer to the Autoconf Manual, section "Limitation of
3427       #     Make", paragraph "VPATH", item "target lookup", for
3428       #     an account of the differences between these
3429       #     implementations.)
3430       #   * The GNU Coding Standards require these files to be built
3431       #     in the source-tree (when they are distributed, that is).
3432       #   * Keeping a fresher copy of distributed files in the
3433       #     build tree can be annoying during development because
3434       #     - if the files is kept under CVS, you really want it
3435       #       to be updated in the source tree
3436       #     - it is confusing that `make distclean' does not erase
3437       #       all files in the build tree.
3438       #
3439       # Consequently, starting with Automake 1.8, .info files are
3440       # built in the source tree again.  Because we still plan to
3441       # support non-distributed .info files at some point, we
3442       # have a single variable ($INSRC) that controls whether
3443       # the current .info file must be built in the source tree
3444       # or in the build tree.  Actually this variable is switched
3445       # off for .info files that appear to be cleaned; this is
3446       # for backward compatibility with package such as Texinfo,
3447       # which do things like
3448       #   info_TEXINFOS = texinfo.txi info-stnd.texi info.texi
3449       #   DISTCLEANFILES = texinfo texinfo-* info*.info*
3450       #   # Do not create info files for distribution.
3451       #   dist-info:
3452       # in order not to distribute .info files.
3453       my $insrc = ($out_file =~ $user_cleaned_files) ? 0 : 1;
3454
3455       my $soutdir = '$(srcdir)/' . $outdir;
3456       $outdir = $soutdir if $insrc;
3457
3458       # If user specified file_TEXINFOS, then use that as explicit
3459       # dependency list.
3460       @texi_deps = ();
3461       push (@texi_deps, "$soutdir$vtexi") if $vtexi;
3462
3463       my $canonical = canonicalize ($infobase);
3464       if (var ($canonical . "_TEXINFOS"))
3465         {
3466           push (@texi_deps, '$(' . $canonical . '_TEXINFOS)');
3467           push_dist_common ('$(' . $canonical . '_TEXINFOS)');
3468         }
3469
3470       my ($dirstamp, @cfiles) =
3471         output_texinfo_build_rules ($texi, $out_file, $insrc, @texi_deps);
3472       push (@texi_cleans, @cfiles);
3473
3474       push (@info_deps_list, $out_file);
3475
3476       # If a vers*.texi file is needed, emit the rule.
3477       if ($vtexi)
3478         {
3479           err_am ("`$vtexi', included in `$texi', "
3480                   . "also included in `$versions{$vtexi}'")
3481             if defined $versions{$vtexi};
3482           $versions{$vtexi} = $texi;
3483
3484           # We number the stamp-vti files.  This is doable since the
3485           # actual names don't matter much.  We only number starting
3486           # with the second one, so that the common case looks nice.
3487           my $vti = ($done ? $done : 'vti');
3488           ++$done;
3489
3490           # This is ugly, but it is our historical practice.
3491           if ($config_aux_dir_set_in_configure_ac)
3492             {
3493               require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
3494                                             'mdate-sh');
3495             }
3496           else
3497             {
3498               require_file_with_macro (TRUE, 'info_TEXINFOS',
3499                                        FOREIGN, 'mdate-sh');
3500             }
3501
3502           my $conf_dir;
3503           if ($config_aux_dir_set_in_configure_ac)
3504             {
3505               $conf_dir = "$am_config_aux_dir/";
3506             }
3507           else
3508             {
3509               $conf_dir = '$(srcdir)/';
3510             }
3511           $output_rules .= file_contents ('texi-vers',
3512                                           new Automake::Location,
3513                                           TEXI     => $texi,
3514                                           VTI      => $vti,
3515                                           STAMPVTI => "${soutdir}stamp-$vti",
3516                                           VTEXI    => "$soutdir$vtexi",
3517                                           MDDIR    => $conf_dir,
3518                                           DIRSTAMP => $dirstamp);
3519         }
3520     }
3521
3522   # Handle location of texinfo.tex.
3523   my $need_texi_file = 0;
3524   my $texinfodir;
3525   if (var ('TEXINFO_TEX'))
3526     {
3527       # The user defined TEXINFO_TEX so assume he knows what he is
3528       # doing.
3529       $texinfodir = ('$(srcdir)/'
3530                      . dirname (variable_value ('TEXINFO_TEX')));
3531     }
3532   elsif (option 'cygnus')
3533     {
3534       $texinfodir = '$(top_srcdir)/../texinfo';
3535       define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
3536     }
3537   elsif ($config_aux_dir_set_in_configure_ac)
3538     {
3539       $texinfodir = $am_config_aux_dir;
3540       define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
3541       $need_texi_file = 2; # so that we require_conf_file later
3542     }
3543   else
3544     {
3545       $texinfodir = '$(srcdir)';
3546       $need_texi_file = 1;
3547     }
3548   define_variable ('am__TEXINFO_TEX_DIR', $texinfodir, INTERNAL);
3549
3550   push (@dist_targets, 'dist-info');
3551
3552   if (! option 'no-installinfo')
3553     {
3554       # Make sure documentation is made and installed first.  Use
3555       # $(INFO_DEPS), not 'info', because otherwise recursive makes
3556       # get run twice during "make all".
3557       unshift (@all, '$(INFO_DEPS)');
3558     }
3559
3560   define_files_variable ("DVIS", @infobase, 'dvi', INTERNAL);
3561   define_files_variable ("PDFS", @infobase, 'pdf', INTERNAL);
3562   define_files_variable ("PSS", @infobase, 'ps', INTERNAL);
3563   define_files_variable ("HTMLS", @infobase, 'html', INTERNAL);
3564
3565   # This next isn't strictly needed now -- the places that look here
3566   # could easily be changed to look in info_TEXINFOS.  But this is
3567   # probably better, in case noinst_TEXINFOS is ever supported.
3568   define_variable ("TEXINFOS", variable_value ('info_TEXINFOS'), INTERNAL);
3569
3570   # Do some error checking.  Note that this file is not required
3571   # when in Cygnus mode; instead we defined TEXINFO_TEX explicitly
3572   # up above.
3573   if ($need_texi_file && ! option 'no-texinfo.tex')
3574     {
3575       if ($need_texi_file > 1)
3576         {
3577           require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
3578                                         'texinfo.tex');
3579         }
3580       else
3581         {
3582           require_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
3583                                    'texinfo.tex');
3584         }
3585     }
3586
3587   return (makefile_wrap ("", "\t  ", @mostly_cleans),
3588           makefile_wrap ("", "\t  ", @texi_cleans),
3589           makefile_wrap ("", "\t  ", @maint_cleans));
3590 }
3591
3592
3593 # handle_texinfo ()
3594 # -----------------
3595 # Handle all Texinfo source.
3596 sub handle_texinfo ()
3597 {
3598   reject_var 'TEXINFOS', "`TEXINFOS' is an anachronism; use `info_TEXINFOS'";
3599   # FIXME: I think this is an obsolete future feature name.
3600   reject_var 'html_TEXINFOS', "HTML generation not yet supported";
3601
3602   my $info_texinfos = var ('info_TEXINFOS');
3603   my ($mostlyclean, $clean, $maintclean) = ('', '', '');
3604   if ($info_texinfos)
3605     {
3606       define_verbose_texinfo;
3607       ($mostlyclean, $clean, $maintclean) = handle_texinfo_helper ($info_texinfos);
3608       chomp $mostlyclean;
3609       chomp $clean;
3610       chomp $maintclean;
3611     }
3612
3613   $output_rules .=  file_contents ('texinfos',
3614                                    new Automake::Location,
3615                                    AM_V_DVIPS    => verbose_flag('DVIPS'),
3616                                    MOSTLYCLEAN   => $mostlyclean,
3617                                    TEXICLEAN     => $clean,
3618                                    MAINTCLEAN    => $maintclean,
3619                                    'LOCAL-TEXIS' => !!$info_texinfos,
3620                                    TEXIQUIET     => verbose_flag('texinfo'));
3621 }
3622
3623
3624 # Handle any man pages.
3625 sub handle_man_pages
3626 {
3627   reject_var 'MANS', "`MANS' is an anachronism; use `man_MANS'";
3628
3629   # Find all the sections in use.  We do this by first looking for
3630   # "standard" sections, and then looking for any additional
3631   # sections used in man_MANS.
3632   my (%sections, %notrans_sections, %trans_sections,
3633       %notrans_vars, %trans_vars, %notrans_sect_vars, %trans_sect_vars);
3634   # We handle nodist_ for uniformity.  man pages aren't distributed
3635   # by default so it isn't actually very important.
3636   foreach my $npfx ('', 'notrans_')
3637     {
3638       foreach my $pfx ('', 'dist_', 'nodist_')
3639         {
3640           # Add more sections as needed.
3641           foreach my $section ('0'..'9', 'n', 'l')
3642             {
3643               my $varname = $npfx . $pfx . 'man' . $section . '_MANS';
3644               if (var ($varname))
3645                 {
3646                   $sections{$section} = 1;
3647                   $varname = '$(' . $varname . ')';
3648                   if ($npfx eq 'notrans_')
3649                     {
3650                       $notrans_sections{$section} = 1;
3651                       $notrans_sect_vars{$varname} = 1;
3652                     }
3653                   else
3654                     {
3655                       $trans_sections{$section} = 1;
3656                       $trans_sect_vars{$varname} = 1;
3657                     }
3658
3659                   &push_dist_common ($varname)
3660                     if $pfx eq 'dist_';
3661                 }
3662             }
3663
3664           my $varname = $npfx . $pfx . 'man_MANS';
3665           my $var = var ($varname);
3666           if ($var)
3667             {
3668               foreach ($var->value_as_list_recursive)
3669                 {
3670                   # A page like `foo.1c' goes into man1dir.
3671                   if (/\.([0-9a-z])([a-z]*)$/)
3672                     {
3673                       $sections{$1} = 1;
3674                       if ($npfx eq 'notrans_')
3675                         {
3676                           $notrans_sections{$1} = 1;
3677                         }
3678                       else
3679                         {
3680                           $trans_sections{$1} = 1;
3681                         }
3682                     }
3683                 }
3684
3685               $varname = '$(' . $varname . ')';
3686               if ($npfx eq 'notrans_')
3687                 {
3688                   $notrans_vars{$varname} = 1;
3689                 }
3690               else
3691                 {
3692                   $trans_vars{$varname} = 1;
3693                 }
3694               &push_dist_common ($varname)
3695                 if $pfx eq 'dist_';
3696             }
3697         }
3698     }
3699
3700   return unless %sections;
3701
3702   my @unsorted_deps;
3703
3704   # Build section independent variables.
3705   my $have_notrans = %notrans_vars;
3706   my @notrans_list = sort keys %notrans_vars;
3707   my $have_trans = %trans_vars;
3708   my @trans_list = sort keys %trans_vars;
3709
3710   # Now for each section, generate an install and uninstall rule.
3711   # Sort sections so output is deterministic.
3712   foreach my $section (sort keys %sections)
3713     {
3714       # Build section dependent variables.
3715       my $notrans_mans = $have_notrans || exists $notrans_sections{$section};
3716       my $trans_mans = $have_trans || exists $trans_sections{$section};
3717       my (%notrans_this_sect, %trans_this_sect);
3718       my $expr = 'man' . $section . '_MANS';
3719       foreach my $varname (keys %notrans_sect_vars)
3720         {
3721           if ($varname =~ /$expr/)
3722             {
3723               $notrans_this_sect{$varname} = 1;
3724             }
3725         }
3726       foreach my $varname (keys %trans_sect_vars)
3727         {
3728           if ($varname =~ /$expr/)
3729             {
3730               $trans_this_sect{$varname} = 1;
3731             }
3732         }
3733       my @notrans_sect_list = sort keys %notrans_this_sect;
3734       my @trans_sect_list = sort keys %trans_this_sect;
3735       @unsorted_deps = (keys %notrans_vars, keys %trans_vars,
3736                         keys %notrans_this_sect, keys %trans_this_sect);
3737       my @deps = sort @unsorted_deps;
3738       $output_rules .= &file_contents ('mans',
3739                                        new Automake::Location,
3740                                        SECTION           => $section,
3741                                        DEPS              => "@deps",
3742                                        NOTRANS_MANS      => $notrans_mans,
3743                                        NOTRANS_SECT_LIST => "@notrans_sect_list",
3744                                        HAVE_NOTRANS      => $have_notrans,
3745                                        NOTRANS_LIST      => "@notrans_list",
3746                                        TRANS_MANS        => $trans_mans,
3747                                        TRANS_SECT_LIST   => "@trans_sect_list",
3748                                        HAVE_TRANS        => $have_trans,
3749                                        TRANS_LIST        => "@trans_list");
3750     }
3751
3752   @unsorted_deps  = (keys %notrans_vars, keys %trans_vars,
3753                      keys %notrans_sect_vars, keys %trans_sect_vars);
3754   my @mans = sort @unsorted_deps;
3755   $output_vars .= file_contents ('mans-vars',
3756                                  new Automake::Location,
3757                                  MANS => "@mans");
3758
3759   push (@all, '$(MANS)')
3760     unless option 'no-installman';
3761 }
3762
3763 # Handle DATA variables.
3764 sub handle_data
3765 {
3766     &am_install_var ('-noextra', '-candist', 'data', 'DATA',
3767                      'data', 'dataroot', 'dvi', 'html', 'pdf', 'ps',
3768                      'sysconf', 'sharedstate', 'localstate',
3769                      'pkgdata', 'lisp', 'noinst', 'check');
3770 }
3771
3772 # Handle TAGS.
3773 sub handle_tags
3774 {
3775     my @tag_deps = ();
3776     my @ctag_deps = ();
3777     my @cscope_deps = ();
3778     if (var ('SUBDIRS'))
3779     {
3780         $output_rules .= ("tags-recursive:\n"
3781                           . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3782                           # Never fail here if a subdir fails; it
3783                           # isn't important.
3784                           . "\t  test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir"
3785                           . " && \$(MAKE) \$(AM_MAKEFLAGS) tags); \\\n"
3786                           . "\tdone\n");
3787         push (@tag_deps, 'tags-recursive');
3788         &depend ('.PHONY', 'tags-recursive');
3789         &depend ('.MAKE', 'tags-recursive');
3790
3791         $output_rules .= ("ctags-recursive:\n"
3792                           . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3793                           # Never fail here if a subdir fails; it
3794                           # isn't important.
3795                           . "\t  test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir"
3796                           . " && \$(MAKE) \$(AM_MAKEFLAGS) ctags); \\\n"
3797                           . "\tdone\n");
3798         push (@ctag_deps, 'ctags-recursive');
3799         &depend ('.PHONY', 'ctags-recursive');
3800         &depend ('.MAKE', 'ctags-recursive');
3801
3802         $output_rules .= ("cscopelist-recursive:\n"
3803                           . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3804                           # Never fail here if a subdir fails; it
3805                           # isn't important.
3806                           . "\t  test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir"
3807                           . " && \$(MAKE) \$(AM_MAKEFLAGS) cscopelist); \\\n"
3808                           . "\tdone\n");
3809         push (@cscope_deps, 'cscopelist-recursive');
3810         &depend ('.PHONY', 'cscopelist-recursive');
3811         &depend ('.MAKE', 'cscopelist-recursive');
3812     }
3813
3814     if (&saw_sources_p (1)
3815         || var ('ETAGS_ARGS')
3816         || @tag_deps)
3817     {
3818         my @config;
3819         foreach my $spec (@config_headers)
3820         {
3821             my ($out, @ins) = split_config_file_spec ($spec);
3822             foreach my $in (@ins)
3823               {
3824                 # If the config header source is in this directory,
3825                 # require it.
3826                 push @config, basename ($in)
3827                   if $relative_dir eq dirname ($in);
3828               }
3829         }
3830         $output_rules .= &file_contents ('tags',
3831                                          new Automake::Location,
3832                                          CONFIG    => "@config",
3833                                          TAGSDIRS  => "@tag_deps",
3834                                          CTAGSDIRS => "@ctag_deps",
3835                                          CSCOPEDIRS => "@cscope_deps");
3836
3837         set_seen 'TAGS_DEPENDENCIES';
3838     }
3839     elsif (reject_var ('TAGS_DEPENDENCIES',
3840                        "it doesn't make sense to define `TAGS_DEPENDENCIES'"
3841                        . " without\nsources or `ETAGS_ARGS'"))
3842     {
3843     }
3844     else
3845     {
3846         # Every Makefile must define some sort of TAGS rule.
3847         # Otherwise, it would be possible for a top-level "make TAGS"
3848         # to fail because some subdirectory failed.
3849         $output_rules .= "tags: TAGS\nTAGS:\n\n";
3850         # Ditto ctags and cscope.
3851         $output_rules .= "ctags: CTAGS\nCTAGS:\n\n";
3852         $output_rules .= "cscope cscopelist:\n\n";
3853     }
3854 }
3855
3856 # Handle multilib support.
3857 sub handle_multilib
3858 {
3859   if ($seen_multilib && $relative_dir eq '.')
3860     {
3861       $output_rules .= &file_contents ('multilib', new Automake::Location);
3862       push (@all, 'all-multi');
3863     }
3864 }
3865
3866
3867 # user_phony_rule ($NAME)
3868 # -----------------------
3869 # Return false if rule $NAME does not exist.  Otherwise,
3870 # declare it as phony, complete its definition (in case it is
3871 # conditional), and return its Automake::Rule instance.
3872 sub user_phony_rule ($)
3873 {
3874   my ($name) = @_;
3875   my $rule = rule $name;
3876   if ($rule)
3877     {
3878       depend ('.PHONY', $name);
3879       # Define $NAME in all condition where it is not already defined,
3880       # so that it is always OK to depend on $NAME.
3881       for my $c ($rule->not_always_defined_in_cond (TRUE)->conds)
3882         {
3883           Automake::Rule::define ($name, 'internal', RULE_AUTOMAKE,
3884                                   $c, INTERNAL);
3885           $output_rules .= $c->subst_string . "$name:\n";
3886         }
3887     }
3888   return $rule;
3889 }
3890
3891
3892 # $BOOLEAN
3893 # &for_dist_common ($A, $B)
3894 # -------------------------
3895 # Subroutine for &handle_dist: sort files to dist.
3896 #
3897 # We put README first because it then becomes easier to make a
3898 # Usenet-compliant shar file (in these, README must be first).
3899 #
3900 # FIXME: do more ordering of files here.
3901 sub for_dist_common
3902 {
3903     return 0
3904         if $a eq $b;
3905     return -1
3906         if $a eq 'README';
3907     return 1
3908         if $b eq 'README';
3909     return $a cmp $b;
3910 }
3911
3912 # handle_dist
3913 # -----------
3914 # Handle 'dist' target.
3915 sub handle_dist ()
3916 {
3917   # Substitutions for distdir.am
3918   my %transform;
3919
3920   # Define DIST_SUBDIRS.  This must always be done, regardless of the
3921   # no-dist setting: target like `distclean' or `maintainer-clean' use it.
3922   my $subdirs = var ('SUBDIRS');
3923   if ($subdirs)
3924     {
3925       # If SUBDIRS is conditionally defined, then set DIST_SUBDIRS
3926       # to all possible directories, and use it.  If DIST_SUBDIRS is
3927       # defined, just use it.
3928
3929       # Note that we check DIST_SUBDIRS first on purpose, so that
3930       # we don't call has_conditional_contents for now reason.
3931       # (In the past one project used so many conditional subdirectories
3932       # that calling has_conditional_contents on SUBDIRS caused
3933       # automake to grow to 150Mb -- this should not happen with
3934       # the current implementation of has_conditional_contents,
3935       # but it's more efficient to avoid the call anyway.)
3936       if (var ('DIST_SUBDIRS'))
3937         {
3938         }
3939       elsif ($subdirs->has_conditional_contents)
3940         {
3941           define_pretty_variable
3942             ('DIST_SUBDIRS', TRUE, INTERNAL,
3943              uniq ($subdirs->value_as_list_recursive));
3944         }
3945       else
3946         {
3947           # We always define this because that is what `distclean'
3948           # wants.
3949           define_pretty_variable ('DIST_SUBDIRS', TRUE, INTERNAL,
3950                                   '$(SUBDIRS)');
3951         }
3952     }
3953
3954   # The remaining definitions are only required when a dist target is used.
3955   return if option 'no-dist';
3956
3957   # At least one of the archive formats must be enabled.
3958   if ($relative_dir eq '.')
3959     {
3960       my $archive_defined = option 'no-dist-gzip' ? 0 : 1;
3961       $archive_defined ||=
3962         grep { option "dist-$_" } qw(shar zip tarZ bzip2 lzip lzma xz);
3963       error (option 'no-dist-gzip',
3964              "no-dist-gzip specified but no dist-* specified,\n"
3965              . "at least one archive format must be enabled")
3966         unless $archive_defined;
3967     }
3968
3969   # Look for common files that should be included in distribution.
3970   # If the aux dir is set, and it does not have a Makefile.am, then
3971   # we check for these files there as well.
3972   my $check_aux = 0;
3973   if ($relative_dir eq '.'
3974       && $config_aux_dir_set_in_configure_ac)
3975     {
3976       if (! &is_make_dir ($config_aux_dir))
3977         {
3978           $check_aux = 1;
3979         }
3980     }
3981   foreach my $cfile (@common_files)
3982     {
3983       if (dir_has_case_matching_file ($relative_dir, $cfile)
3984           # The file might be absent, but if it can be built it's ok.
3985           || rule $cfile)
3986         {
3987           &push_dist_common ($cfile);
3988         }
3989
3990       # Don't use `elsif' here because a file might meaningfully
3991       # appear in both directories.
3992       if ($check_aux && dir_has_case_matching_file ($config_aux_dir, $cfile))
3993         {
3994           &push_dist_common ("$config_aux_dir/$cfile")
3995         }
3996     }
3997
3998   # We might copy elements from $configure_dist_common to
3999   # %dist_common if we think we need to.  If the file appears in our
4000   # directory, we would have discovered it already, so we don't
4001   # check that.  But if the file is in a subdir without a Makefile,
4002   # we want to distribute it here if we are doing `.'.  Ugly!
4003   if ($relative_dir eq '.')
4004     {
4005       foreach my $file (split (' ' , $configure_dist_common))
4006         {
4007           push_dist_common ($file)
4008             unless is_make_dir (dirname ($file));
4009         }
4010     }
4011
4012   # Files to distributed.  Don't use ->value_as_list_recursive
4013   # as it recursively expands `$(dist_pkgdata_DATA)' etc.
4014   my @dist_common = split (' ', rvar ('DIST_COMMON')->variable_value);
4015   @dist_common = uniq (sort for_dist_common (@dist_common));
4016   variable_delete 'DIST_COMMON';
4017   define_pretty_variable ('DIST_COMMON', TRUE, INTERNAL, @dist_common);
4018
4019   # Now that we've processed DIST_COMMON, disallow further attempts
4020   # to set it.
4021   $handle_dist_run = 1;
4022
4023   # Scan EXTRA_DIST to see if we need to distribute anything from a
4024   # subdir.  If so, add it to the list.  I didn't want to do this
4025   # originally, but there were so many requests that I finally
4026   # relented.
4027   my $extra_dist = var ('EXTRA_DIST');
4028
4029   $transform{'DISTCHECK-HOOK'} = !! rule 'distcheck-hook';
4030   $transform{'GETTEXT'} = $seen_gettext && !$seen_gettext_external;
4031
4032   # If the target `dist-hook' exists, make sure it is run.  This
4033   # allows users to do random weird things to the distribution
4034   # before it is packaged up.
4035   push (@dist_targets, 'dist-hook')
4036     if user_phony_rule 'dist-hook';
4037   $transform{'DIST-TARGETS'} = join (' ', @dist_targets);
4038
4039   my $flm = option ('filename-length-max');
4040   my $filename_filter = $flm ? '.' x $flm->[1] : '';
4041
4042   $output_rules .= &file_contents ('distdir',
4043                                    new Automake::Location,
4044                                    %transform,
4045                                    FILENAME_FILTER => $filename_filter);
4046 }
4047
4048
4049 # check_directory ($NAME, $WHERE)
4050 # -------------------------------
4051 # Ensure $NAME is a directory, and that it uses a sane name.
4052 # Use $WHERE as a location in the diagnostic, if any.
4053 sub check_directory ($$)
4054 {
4055   my ($dir, $where) = @_;
4056
4057   error $where, "required directory $relative_dir/$dir does not exist"
4058     unless -d "$relative_dir/$dir";
4059
4060   # If an `obj/' directory exists, BSD make will enter it before
4061   # reading `Makefile'.  Hence the `Makefile' in the current directory
4062   # will not be read.
4063   #
4064   #  % cat Makefile
4065   #  all:
4066   #          echo Hello
4067   #  % cat obj/Makefile
4068   #  all:
4069   #          echo World
4070   #  % make      # GNU make
4071   #  echo Hello
4072   #  Hello
4073   #  % pmake     # BSD make
4074   #  echo World
4075   #  World
4076   msg ('portability', $where,
4077        "naming a subdirectory `obj' causes troubles with BSD make")
4078     if $dir eq 'obj';
4079
4080   # `aux' is probably the most important of the following forbidden name,
4081   # since it's tempting to use it as an AC_CONFIG_AUX_DIR.
4082   msg ('portability', $where,
4083        "name `$dir' is reserved on W32 and DOS platforms")
4084     if grep (/^\Q$dir\E$/i, qw/aux lpt1 lpt2 lpt3 com1 com2 com3 com4 con prn/);
4085 }
4086
4087 # check_directories_in_var ($VARIABLE)
4088 # ------------------------------------
4089 # Recursively check all items in variables $VARIABLE as directories
4090 sub check_directories_in_var ($)
4091 {
4092   my ($var) = @_;
4093   $var->traverse_recursively
4094     (sub
4095      {
4096        my ($var, $val, $cond, $full_cond) = @_;
4097        check_directory ($val, $var->rdef ($cond)->location);
4098        return ();
4099      },
4100      undef,
4101      skip_ac_subst => 1);
4102 }
4103
4104 # &handle_subdirs ()
4105 # ------------------
4106 # Handle subdirectories.
4107 sub handle_subdirs ()
4108 {
4109   my $subdirs = var ('SUBDIRS');
4110   return
4111     unless $subdirs;
4112
4113   check_directories_in_var $subdirs;
4114
4115   my $dsubdirs = var ('DIST_SUBDIRS');
4116   check_directories_in_var $dsubdirs
4117     if $dsubdirs;
4118
4119   $output_rules .= &file_contents ('subdirs', new Automake::Location);
4120   rvar ('RECURSIVE_TARGETS')->rdef (TRUE)->{'pretty'} = VAR_SORTED; # Gross!
4121 }
4122
4123
4124 # ($REGEN, @DEPENDENCIES)
4125 # &scan_aclocal_m4
4126 # ----------------
4127 # If aclocal.m4 creation is automated, return the list of its dependencies.
4128 sub scan_aclocal_m4 ()
4129 {
4130   my $regen_aclocal = 0;
4131
4132   set_seen 'CONFIG_STATUS_DEPENDENCIES';
4133   set_seen 'CONFIGURE_DEPENDENCIES';
4134
4135   if (-f 'aclocal.m4')
4136     {
4137       &define_variable ("ACLOCAL_M4", '$(top_srcdir)/aclocal.m4', INTERNAL);
4138
4139       my $aclocal = new Automake::XFile "< aclocal.m4";
4140       my $line = $aclocal->getline;
4141       $regen_aclocal = $line =~ 'generated automatically by aclocal';
4142     }
4143
4144   my @ac_deps = ();
4145
4146   if (set_seen ('ACLOCAL_M4_SOURCES'))
4147     {
4148       push (@ac_deps, '$(ACLOCAL_M4_SOURCES)');
4149       msg_var ('obsolete', 'ACLOCAL_M4_SOURCES',
4150                "`ACLOCAL_M4_SOURCES' is obsolete.\n"
4151                . "It should be safe to simply remove it");
4152     }
4153
4154   # Note that it might be possible that aclocal.m4 doesn't exist but
4155   # should be auto-generated.  This case probably isn't very
4156   # important.
4157
4158   return ($regen_aclocal, @ac_deps);
4159 }
4160
4161
4162 # Helper function for substitute_ac_subst_variables.
4163 sub substitute_ac_subst_variables_worker($)
4164 {
4165   my ($token) = @_;
4166   return "\@$token\@" if var $token;
4167   return "\${$token\}";
4168 }
4169
4170 # substitute_ac_subst_variables ($TEXT)
4171 # -------------------------------------
4172 # Replace any occurrence of ${FOO} in $TEXT by @FOO@ if FOO is an AC_SUBST
4173 # variable.
4174 sub substitute_ac_subst_variables ($)
4175 {
4176   my ($text) = @_;
4177   $text =~ s/\${([^ \t=:+{}]+)}/&substitute_ac_subst_variables_worker ($1)/ge;
4178   return $text;
4179 }
4180
4181 # @DEPENDENCIES
4182 # &prepend_srcdir (@INPUTS)
4183 # -------------------------
4184 # Prepend $(srcdir) or $(top_srcdir) to all @INPUTS.  The idea is that
4185 # if an input file has a directory part the same as the current
4186 # directory, then the directory part is simply replaced by $(srcdir).
4187 # But if the directory part is different, then $(top_srcdir) is
4188 # prepended.
4189 sub prepend_srcdir (@)
4190 {
4191   my (@inputs) = @_;
4192   my @newinputs;
4193
4194   foreach my $single (@inputs)
4195     {
4196       if (dirname ($single) eq $relative_dir)
4197         {
4198           push (@newinputs, '$(srcdir)/' . basename ($single));
4199         }
4200       else
4201         {
4202           push (@newinputs, '$(top_srcdir)/' . $single);
4203         }
4204     }
4205   return @newinputs;
4206 }
4207
4208 # @DEPENDENCIES
4209 # rewrite_inputs_into_dependencies ($OUTPUT, @INPUTS)
4210 # ---------------------------------------------------
4211 # Compute a list of dependencies appropriate for the rebuild
4212 # rule of
4213 #   AC_CONFIG_FILES($OUTPUT:$INPUT[0]:$INPUTS[1]:...)
4214 # Also distribute $INPUTs which are not built by another AC_CONFIG_FOOs.
4215 sub rewrite_inputs_into_dependencies ($@)
4216 {
4217   my ($file, @inputs) = @_;
4218   my @res = ();
4219
4220   for my $i (@inputs)
4221     {
4222       # We cannot create dependencies on shell variables.
4223       next if (substitute_ac_subst_variables $i) =~ /\$/;
4224
4225       if (exists $ac_config_files_location{$i} && $i ne $file)
4226         {
4227           my $di = dirname $i;
4228           if ($di eq $relative_dir)
4229             {
4230               $i = basename $i;
4231             }
4232           # In the top-level Makefile we do not use $(top_builddir), because
4233           # we are already there, and since the targets are built without
4234           # a $(top_builddir), it helps BSD Make to match them with
4235           # dependencies.
4236           elsif ($relative_dir ne '.')
4237             {
4238               $i = '$(top_builddir)/' . $i;
4239             }
4240         }
4241       else
4242         {
4243           msg ('error', $ac_config_files_location{$file},
4244                "required file `$i' not found")
4245             unless $i =~ /\$/ || exists $output_files{$i} || -f $i;
4246           ($i) = prepend_srcdir ($i);
4247           push_dist_common ($i);
4248         }
4249       push @res, $i;
4250     }
4251   return @res;
4252 }
4253
4254
4255
4256 # &handle_configure ($MAKEFILE_AM, $MAKEFILE_IN, $MAKEFILE, @INPUTS)
4257 # ------------------------------------------------------------------
4258 # Handle remaking and configure stuff.
4259 # We need the name of the input file, to do proper remaking rules.
4260 sub handle_configure ($$$@)
4261 {
4262   my ($makefile_am, $makefile_in, $makefile, @inputs) = @_;
4263
4264   prog_error 'empty @inputs'
4265     unless @inputs;
4266
4267   my ($rel_makefile_am, $rel_makefile_in) = prepend_srcdir ($makefile_am,
4268                                                             $makefile_in);
4269   my $rel_makefile = basename $makefile;
4270
4271   my $colon_infile = ':' . join (':', @inputs);
4272   $colon_infile = '' if $colon_infile eq ":$makefile.in";
4273   my @rewritten = rewrite_inputs_into_dependencies ($makefile, @inputs);
4274   my ($regen_aclocal_m4, @aclocal_m4_deps) = scan_aclocal_m4;
4275   define_pretty_variable ('am__aclocal_m4_deps', TRUE, INTERNAL,
4276                           @configure_deps, @aclocal_m4_deps,
4277                           '$(top_srcdir)/' . $configure_ac);
4278   my @configuredeps = ('$(am__aclocal_m4_deps)', '$(CONFIGURE_DEPENDENCIES)');
4279   push @configuredeps, '$(ACLOCAL_M4)' if -f 'aclocal.m4';
4280   define_pretty_variable ('am__configure_deps', TRUE, INTERNAL,
4281                           @configuredeps);
4282
4283   my $automake_options = '--' . (global_option 'cygnus' ? 'cygnus' : $strictness_name)
4284                          . (global_option 'no-dependencies' ? ' --ignore-deps' : '');
4285
4286   $output_rules .= file_contents
4287     ('configure',
4288      new Automake::Location,
4289      MAKEFILE              => $rel_makefile,
4290      'MAKEFILE-DEPS'       => "@rewritten",
4291      'CONFIG-MAKEFILE'     => ($relative_dir eq '.') ? '$@' : '$(subdir)/$@',
4292      'MAKEFILE-IN'         => $rel_makefile_in,
4293      'MAKEFILE-IN-DEPS'    => "@include_stack",
4294      'MAKEFILE-AM'         => $rel_makefile_am,
4295      'AUTOMAKE-OPTIONS'    => $automake_options,
4296      'MAKEFILE-AM-SOURCES' => "$makefile$colon_infile",
4297      'REGEN-ACLOCAL-M4'    => $regen_aclocal_m4,
4298      VERBOSE               => verbose_flag ('GEN'));
4299
4300   if ($relative_dir eq '.')
4301     {
4302       &push_dist_common ('acconfig.h')
4303         if -f 'acconfig.h';
4304     }
4305
4306   # If we have a configure header, require it.
4307   my $hdr_index = 0;
4308   my @distclean_config;
4309   foreach my $spec (@config_headers)
4310     {
4311       $hdr_index += 1;
4312       # $CONFIG_H_PATH: config.h from top level.
4313       my ($config_h_path, @ins) = split_config_file_spec ($spec);
4314       my $config_h_dir = dirname ($config_h_path);
4315
4316       # If the header is in the current directory we want to build
4317       # the header here.  Otherwise, if we're at the topmost
4318       # directory and the header's directory doesn't have a
4319       # Makefile, then we also want to build the header.
4320       if ($relative_dir eq $config_h_dir
4321           || ($relative_dir eq '.' && ! &is_make_dir ($config_h_dir)))
4322         {
4323           my ($cn_sans_dir, $stamp_dir);
4324           if ($relative_dir eq $config_h_dir)
4325             {
4326               $cn_sans_dir = basename ($config_h_path);
4327               $stamp_dir = '';
4328             }
4329           else
4330             {
4331               $cn_sans_dir = $config_h_path;
4332               if ($config_h_dir eq '.')
4333                 {
4334                   $stamp_dir = '';
4335                 }
4336               else
4337                 {
4338                   $stamp_dir = $config_h_dir . '/';
4339                 }
4340             }
4341
4342           # This will also distribute all inputs.
4343           @ins = rewrite_inputs_into_dependencies ($config_h_path, @ins);
4344
4345           # Cannot define rebuild rules for filenames with shell variables.
4346           next if (substitute_ac_subst_variables $config_h_path) =~ /\$/;
4347
4348           # Header defined in this directory.
4349           my @files;
4350           if (-f $config_h_path . '.top')
4351             {
4352               push (@files, "$cn_sans_dir.top");
4353             }
4354           if (-f $config_h_path . '.bot')
4355             {
4356               push (@files, "$cn_sans_dir.bot");
4357             }
4358
4359           push_dist_common (@files);
4360
4361           # For now, acconfig.h can only appear in the top srcdir.
4362           if (-f 'acconfig.h')
4363             {
4364               push (@files, '$(top_srcdir)/acconfig.h');
4365             }
4366
4367           my $stamp = "${stamp_dir}stamp-h${hdr_index}";
4368           $output_rules .=
4369             file_contents ('remake-hdr',
4370                            new Automake::Location,
4371                            FILES            => "@files",
4372                            CONFIG_H         => $cn_sans_dir,
4373                            CONFIG_HIN       => $ins[0],
4374                            CONFIG_H_DEPS    => "@ins",
4375                            CONFIG_H_PATH    => $config_h_path,
4376                            STAMP            => "$stamp");
4377
4378           push @distclean_config, $cn_sans_dir, $stamp;
4379         }
4380     }
4381
4382   $output_rules .= file_contents ('clean-hdr',
4383                                   new Automake::Location,
4384                                   FILES => "@distclean_config")
4385     if @distclean_config;
4386
4387   # Distribute and define mkinstalldirs only if it is already present
4388   # in the package, for backward compatibility (some people may still
4389   # use $(mkinstalldirs)).
4390   my $mkidpath = "$config_aux_dir/mkinstalldirs";
4391   if (-f $mkidpath)
4392     {
4393       # Use require_file so that any existing script gets updated
4394       # by --force-missing.
4395       require_conf_file ($mkidpath, FOREIGN, 'mkinstalldirs');
4396       define_variable ('mkinstalldirs',
4397                        "\$(SHELL) $am_config_aux_dir/mkinstalldirs", INTERNAL);
4398     }
4399   else
4400     {
4401       # Use $(install_sh), not $(MKDIR_P) because the latter requires
4402       # at least one argument, and $(mkinstalldirs) used to work
4403       # even without arguments (e.g. $(mkinstalldirs) $(conditional_dir)).
4404       define_variable ('mkinstalldirs', '$(install_sh) -d', INTERNAL);
4405     }
4406
4407   reject_var ('CONFIG_HEADER',
4408               "`CONFIG_HEADER' is an anachronism; now determined "
4409               . "automatically\nfrom `$configure_ac'");
4410
4411   my @config_h;
4412   foreach my $spec (@config_headers)
4413     {
4414       my ($out, @ins) = split_config_file_spec ($spec);
4415       # Generate CONFIG_HEADER define.
4416       if ($relative_dir eq dirname ($out))
4417         {
4418           push @config_h, basename ($out);
4419         }
4420       else
4421         {
4422           push @config_h, "\$(top_builddir)/$out";
4423         }
4424     }
4425   define_variable ("CONFIG_HEADER", "@config_h", INTERNAL)
4426     if @config_h;
4427
4428   # Now look for other files in this directory which must be remade
4429   # by config.status, and generate rules for them.
4430   my @actual_other_files = ();
4431   # These get cleaned only in a VPATH build.
4432   my @actual_other_vpath_files = ();
4433   foreach my $lfile (@other_input_files)
4434     {
4435       my $file;
4436       my @inputs;
4437       if ($lfile =~ /^([^:]*):(.*)$/)
4438         {
4439           # This is the ":" syntax of AC_OUTPUT.
4440           $file = $1;
4441           @inputs = split (':', $2);
4442         }
4443       else
4444         {
4445           # Normal usage.
4446           $file = $lfile;
4447           @inputs = $file . '.in';
4448         }
4449
4450       # Automake files should not be stored in here, but in %MAKE_LIST.
4451       prog_error ("$lfile in \@other_input_files\n"
4452                   . "\@other_input_files = (@other_input_files)")
4453         if -f $file . '.am';
4454
4455       my $local = basename ($file);
4456
4457       # We skip files that aren't in this directory.  However, if
4458       # the file's directory does not have a Makefile, and we are
4459       # currently doing `.', then we create a rule to rebuild the
4460       # file in the subdir.
4461       my $fd = dirname ($file);
4462       if ($fd ne $relative_dir)
4463         {
4464           if ($relative_dir eq '.' && ! &is_make_dir ($fd))
4465             {
4466               $local = $file;
4467             }
4468           else
4469             {
4470               next;
4471             }
4472         }
4473
4474       my @rewritten_inputs = rewrite_inputs_into_dependencies ($file, @inputs);
4475
4476       # Cannot output rules for shell variables.
4477       next if (substitute_ac_subst_variables $local) =~ /\$/;
4478
4479       my $condstr = '';
4480       my $cond = $ac_config_files_condition{$lfile};
4481       if (defined $cond)
4482         {
4483           $condstr = $cond->subst_string;
4484           Automake::Rule::define ($local, $configure_ac, RULE_AUTOMAKE, $cond,
4485                                   $ac_config_files_location{$file});
4486         }
4487       $output_rules .= ($condstr . $local . ': '
4488                         . '$(top_builddir)/config.status '
4489                         . "@rewritten_inputs\n"
4490                         . $condstr . "\t"
4491                         . 'cd $(top_builddir) && '
4492                         . '$(SHELL) ./config.status '
4493                         . ($relative_dir eq '.' ? '' : '$(subdir)/')
4494                         . '$@'
4495                         . "\n");
4496       push (@actual_other_files, $local);
4497     }
4498
4499   # For links we should clean destinations and distribute sources.
4500   foreach my $spec (@config_links)
4501     {
4502       my ($link, $file) = split /:/, $spec;
4503       # Some people do AC_CONFIG_LINKS($computed).  We only handle
4504       # the DEST:SRC form.
4505       next unless $file;
4506       my $where = $ac_config_files_location{$link};
4507
4508       # Skip destinations that contain shell variables.
4509       if ((substitute_ac_subst_variables $link) !~ /\$/)
4510         {
4511           # We skip links that aren't in this directory.  However, if
4512           # the link's directory does not have a Makefile, and we are
4513           # currently doing `.', then we add the link to CONFIG_CLEAN_FILES
4514           # in `.'s Makefile.in.
4515           my $local = basename ($link);
4516           my $fd = dirname ($link);
4517           if ($fd ne $relative_dir)
4518             {
4519               if ($relative_dir eq '.' && ! &is_make_dir ($fd))
4520                 {
4521                   $local = $link;
4522                 }
4523               else
4524                 {
4525                   $local = undef;
4526                 }
4527             }
4528           if ($file ne $link)
4529             {
4530               push @actual_other_files, $local if $local;
4531             }
4532           else
4533             {
4534               push @actual_other_vpath_files, $local if $local;
4535             }
4536         }
4537
4538       # Do not process sources that contain shell variables.
4539       if ((substitute_ac_subst_variables $file) !~ /\$/)
4540         {
4541           my $fd = dirname ($file);
4542
4543           # We distribute files that are in this directory.
4544           # At the top-level (`.') we also distribute files whose
4545           # directory does not have a Makefile.
4546           if (($fd eq $relative_dir)
4547               || ($relative_dir eq '.' && ! &is_make_dir ($fd)))
4548             {
4549               # The following will distribute $file as a side-effect when
4550               # it is appropriate (i.e., when $file is not already an output).
4551               # We do not need the result, just the side-effect.
4552               rewrite_inputs_into_dependencies ($link, $file);
4553             }
4554         }
4555     }
4556
4557   # These files get removed by "make distclean".
4558   define_pretty_variable ('CONFIG_CLEAN_FILES', TRUE, INTERNAL,
4559                           @actual_other_files);
4560   define_pretty_variable ('CONFIG_CLEAN_VPATH_FILES', TRUE, INTERNAL,
4561                           @actual_other_vpath_files);
4562 }
4563
4564 # Handle C headers.
4565 sub handle_headers
4566 {
4567     my @r = &am_install_var ('-defaultdist', 'header', 'HEADERS', 'include',
4568                              'oldinclude', 'pkginclude',
4569                              'noinst', 'check');
4570     foreach (@r)
4571     {
4572       next unless $_->[1] =~ /\..*$/;
4573       &saw_extension ($&);
4574     }
4575 }
4576
4577 sub handle_gettext
4578 {
4579   return if ! $seen_gettext || $relative_dir ne '.';
4580
4581   my $subdirs = var 'SUBDIRS';
4582
4583   if (! $subdirs)
4584     {
4585       err_ac "AM_GNU_GETTEXT used but SUBDIRS not defined";
4586       return;
4587     }
4588
4589   # Perform some sanity checks to help users get the right setup.
4590   # We disable these tests when po/ doesn't exist in order not to disallow
4591   # unusual gettext setups.
4592   #
4593   # Bruno Haible:
4594   # | The idea is:
4595   # |
4596   # |  1) If a package doesn't have a directory po/ at top level, it
4597   # |     will likely have multiple po/ directories in subpackages.
4598   # |
4599   # |  2) It is useful to warn for the absence of intl/ if AM_GNU_GETTEXT
4600   # |     is used without 'external'. It is also useful to warn for the
4601   # |     presence of intl/ if AM_GNU_GETTEXT([external]) is used. Both
4602   # |     warnings apply only to the usual layout of packages, therefore
4603   # |     they should both be disabled if no po/ directory is found at
4604   # |     top level.
4605
4606   if (-d 'po')
4607     {
4608       my @subdirs = $subdirs->value_as_list_recursive;
4609
4610       msg_var ('syntax', $subdirs,
4611                "AM_GNU_GETTEXT used but `po' not in SUBDIRS")
4612         if ! grep ($_ eq 'po', @subdirs);
4613
4614       # intl/ is not required when AM_GNU_GETTEXT is called with the
4615       # `external' option and AM_GNU_GETTEXT_INTL_SUBDIR is not called.
4616       msg_var ('syntax', $subdirs,
4617                "AM_GNU_GETTEXT used but `intl' not in SUBDIRS")
4618         if (! ($seen_gettext_external && ! $seen_gettext_intl)
4619             && ! grep ($_ eq 'intl', @subdirs));
4620
4621       # intl/ should not be used with AM_GNU_GETTEXT([external]), except
4622       # if AM_GNU_GETTEXT_INTL_SUBDIR is called.
4623       msg_var ('syntax', $subdirs,
4624                "`intl' should not be in SUBDIRS when "
4625                . "AM_GNU_GETTEXT([external]) is used")
4626         if ($seen_gettext_external && ! $seen_gettext_intl
4627             && grep ($_ eq 'intl', @subdirs));
4628     }
4629
4630   require_file ($ac_gettext_location, GNU, 'ABOUT-NLS');
4631 }
4632
4633 # Handle footer elements.
4634 sub handle_footer
4635 {
4636     reject_rule ('.SUFFIXES',
4637                  "use variable `SUFFIXES', not target `.SUFFIXES'");
4638
4639     # Note: AIX 4.1 /bin/make will fail if any suffix rule appears
4640     # before .SUFFIXES.  So we make sure that .SUFFIXES appears before
4641     # anything else, by sticking it right after the default: target.
4642     $output_header .= ".SUFFIXES:\n";
4643     my $suffixes = var 'SUFFIXES';
4644     my @suffixes = Automake::Rule::suffixes;
4645     if (@suffixes || $suffixes)
4646     {
4647         # Make sure SUFFIXES has unique elements.  Sort them to ensure
4648         # the output remains consistent.  However, $(SUFFIXES) is
4649         # always at the start of the list, unsorted.  This is done
4650         # because make will choose rules depending on the ordering of
4651         # suffixes, and this lets the user have some control.  Push
4652         # actual suffixes, and not $(SUFFIXES).  Some versions of make
4653         # do not like variable substitutions on the .SUFFIXES line.
4654         my @user_suffixes = ($suffixes
4655                              ? $suffixes->value_as_list_recursive : ());
4656
4657         my %suffixes = map { $_ => 1 } @suffixes;
4658         delete @suffixes{@user_suffixes};
4659
4660         $output_header .= (".SUFFIXES: "
4661                            . join (' ', @user_suffixes, sort keys %suffixes)
4662                            . "\n");
4663     }
4664
4665     $output_trailer .= file_contents ('footer', new Automake::Location);
4666 }
4667
4668
4669 # Generate `make install' rules.
4670 sub handle_install ()
4671 {
4672   $output_rules .= &file_contents
4673     ('install',
4674      new Automake::Location,
4675      maybe_BUILT_SOURCES => (set_seen ('BUILT_SOURCES')
4676                              ? (" \$(BUILT_SOURCES)\n"
4677                                 . "\t\$(MAKE) \$(AM_MAKEFLAGS)")
4678                              : ''),
4679      'installdirs-local' => (user_phony_rule 'installdirs-local'
4680                              ? ' installdirs-local' : ''),
4681      am__installdirs => variable_value ('am__installdirs') || '');
4682 }
4683
4684
4685 # Deal with all and all-am.
4686 sub handle_all ($)
4687 {
4688     my ($makefile) = @_;
4689
4690     # Output `all-am'.
4691
4692     # Put this at the beginning for the sake of non-GNU makes.  This
4693     # is still wrong if these makes can run parallel jobs.  But it is
4694     # right enough.
4695     unshift (@all, basename ($makefile));
4696
4697     foreach my $spec (@config_headers)
4698       {
4699         my ($out, @ins) = split_config_file_spec ($spec);
4700         push (@all, basename ($out))
4701           if dirname ($out) eq $relative_dir;
4702       }
4703
4704     # Install `all' hooks.
4705     push (@all, "all-local")
4706       if user_phony_rule "all-local";
4707
4708     &pretty_print_rule ("all-am:", "\t\t", @all);
4709     &depend ('.PHONY', 'all-am', 'all');
4710
4711
4712     # Output `all'.
4713
4714     my @local_headers = ();
4715     push @local_headers, '$(BUILT_SOURCES)'
4716       if var ('BUILT_SOURCES');
4717     foreach my $spec (@config_headers)
4718       {
4719         my ($out, @ins) = split_config_file_spec ($spec);
4720         push @local_headers, basename ($out)
4721           if dirname ($out) eq $relative_dir;
4722       }
4723
4724     if (@local_headers)
4725       {
4726         # We need to make sure config.h is built before we recurse.
4727         # We also want to make sure that built sources are built
4728         # before any ordinary `all' targets are run.  We can't do this
4729         # by changing the order of dependencies to the "all" because
4730         # that breaks when using parallel makes.  Instead we handle
4731         # things explicitly.
4732         $output_all .= ("all: @local_headers"
4733                         . "\n\t"
4734                         . '$(MAKE) $(AM_MAKEFLAGS) '
4735                         . (var ('SUBDIRS') ? 'all-recursive' : 'all-am')
4736                         . "\n\n");
4737         depend ('.MAKE', 'all');
4738       }
4739     else
4740       {
4741         $output_all .= "all: " . (var ('SUBDIRS')
4742                                   ? 'all-recursive' : 'all-am') . "\n\n";
4743       }
4744 }
4745
4746
4747 # &do_check_merge_target ()
4748 # -------------------------
4749 # Handle check merge target specially.
4750 sub do_check_merge_target ()
4751 {
4752   # Include user-defined local form of target.
4753   push @check_tests, 'check-local'
4754     if user_phony_rule 'check-local';
4755
4756   # In --cygnus mode, check doesn't depend on all.
4757   if (option 'cygnus')
4758     {
4759       # Just run the local check rules.
4760       pretty_print_rule ('check-am:', "\t\t", @check);
4761     }
4762   else
4763     {
4764       # The check target must depend on the local equivalent of
4765       # `all', to ensure all the primary targets are built.  Then it
4766       # must build the local check rules.
4767       $output_rules .= "check-am: all-am\n";
4768       if (@check)
4769         {
4770           pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t  ",
4771                              @check);
4772           depend ('.MAKE', 'check-am');
4773         }
4774     }
4775   if (@check_tests)
4776     {
4777       pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t  ",
4778                          @check_tests);
4779       depend ('.MAKE', 'check-am');
4780     }
4781
4782   depend '.PHONY', 'check', 'check-am';
4783   # Handle recursion.  We have to honor BUILT_SOURCES like for `all:'.
4784   $output_rules .= ("check: "
4785                     . (var ('BUILT_SOURCES')
4786                        ? "\$(BUILT_SOURCES)\n\t\$(MAKE) \$(AM_MAKEFLAGS) "
4787                        : '')
4788                     . (var ('SUBDIRS') ? 'check-recursive' : 'check-am')
4789                     . "\n");
4790   depend ('.MAKE', 'check')
4791     if var ('BUILT_SOURCES');
4792 }
4793
4794 # handle_clean ($MAKEFILE)
4795 # ------------------------
4796 # Handle all 'clean' targets.
4797 sub handle_clean ($)
4798 {
4799   my ($makefile) = @_;
4800
4801   # Clean the files listed in user variables if they exist.
4802   $clean_files{'$(MOSTLYCLEANFILES)'} = MOSTLY_CLEAN
4803     if var ('MOSTLYCLEANFILES');
4804   $clean_files{'$(CLEANFILES)'} = CLEAN
4805     if var ('CLEANFILES');
4806   $clean_files{'$(DISTCLEANFILES)'} = DIST_CLEAN
4807     if var ('DISTCLEANFILES');
4808   $clean_files{'$(MAINTAINERCLEANFILES)'} = MAINTAINER_CLEAN
4809     if var ('MAINTAINERCLEANFILES');
4810
4811   # Built sources are automatically removed by maintainer-clean.
4812   $clean_files{'$(BUILT_SOURCES)'} = MAINTAINER_CLEAN
4813     if var ('BUILT_SOURCES');
4814
4815   # Compute a list of "rm"s to run for each target.
4816   my %rms = (MOSTLY_CLEAN, [],
4817              CLEAN, [],
4818              DIST_CLEAN, [],
4819              MAINTAINER_CLEAN, []);
4820
4821   foreach my $file (keys %clean_files)
4822     {
4823       my $when = $clean_files{$file};
4824       prog_error 'invalid entry in %clean_files'
4825         unless exists $rms{$when};
4826
4827       my $rm = "rm -f $file";
4828       # If file is a variable, make sure when don't call `rm -f' without args.
4829       $rm ="test -z \"$file\" || $rm"
4830         if ($file =~ /^\s*\$(\(.*\)|\{.*\})\s*$/);
4831
4832       push @{$rms{$when}}, "\t-$rm\n";
4833     }
4834
4835   $output_rules .= &file_contents
4836     ('clean',
4837      new Automake::Location,
4838      MOSTLYCLEAN_RMS      => join ('', sort @{$rms{&MOSTLY_CLEAN}}),
4839      CLEAN_RMS            => join ('', sort @{$rms{&CLEAN}}),
4840      DISTCLEAN_RMS        => join ('', sort @{$rms{&DIST_CLEAN}}),
4841      MAINTAINER_CLEAN_RMS => join ('', sort @{$rms{&MAINTAINER_CLEAN}}),
4842      MAKEFILE             => basename $makefile,
4843      );
4844 }
4845
4846
4847 # &target_cmp ($A, $B)
4848 # --------------------
4849 # Subroutine for &handle_factored_dependencies to let `.PHONY' and
4850 # other `.TARGETS' be last.
4851 sub target_cmp
4852 {
4853   return 0 if $a eq $b;
4854
4855   my $a1 = substr ($a, 0, 1);
4856   my $b1 = substr ($b, 0, 1);
4857   if ($a1 ne $b1)
4858     {
4859       return -1 if $b1 eq '.';
4860       return 1 if $a1 eq '.';
4861     }
4862   return $a cmp $b;
4863 }
4864
4865
4866 # &handle_factored_dependencies ()
4867 # --------------------------------
4868 # Handle everything related to gathered targets.
4869 sub handle_factored_dependencies
4870 {
4871   # Reject bad hooks.
4872   foreach my $utarg ('uninstall-data-local', 'uninstall-data-hook',
4873                      'uninstall-exec-local', 'uninstall-exec-hook',
4874                      'uninstall-dvi-local',
4875                      'uninstall-html-local',
4876                      'uninstall-info-local',
4877                      'uninstall-pdf-local',
4878                      'uninstall-ps-local')
4879     {
4880       my $x = $utarg;
4881       $x =~ s/-.*-/-/;
4882       reject_rule ($utarg, "use `$x', not `$utarg'");
4883     }
4884
4885   reject_rule ('install-local',
4886                "use `install-data-local' or `install-exec-local', "
4887                . "not `install-local'");
4888
4889   reject_rule ('install-hook',
4890                "use `install-data-hook' or `install-exec-hook', "
4891                . "not `install-hook'");
4892
4893   # Install the -local hooks.
4894   foreach (keys %dependencies)
4895     {
4896       # Hooks are installed on the -am targets.
4897       s/-am$// or next;
4898       depend ("$_-am", "$_-local")
4899         if user_phony_rule "$_-local";
4900     }
4901
4902   # Install the -hook hooks.
4903   # FIXME: Why not be as liberal as we are with -local hooks?
4904   foreach ('install-exec', 'install-data', 'uninstall')
4905     {
4906       if (user_phony_rule "$_-hook")
4907         {
4908           depend ('.MAKE', "$_-am");
4909           register_action("$_-am",
4910                           ("\t\@\$(NORMAL_INSTALL)\n"
4911                            . "\t\$(MAKE) \$(AM_MAKEFLAGS) $_-hook"));
4912         }
4913     }
4914
4915   # All the required targets are phony.
4916   depend ('.PHONY', keys %required_targets);
4917
4918   # Actually output gathered targets.
4919   foreach (sort target_cmp keys %dependencies)
4920     {
4921       # If there is nothing about this guy, skip it.
4922       next
4923         unless (@{$dependencies{$_}}
4924                 || $actions{$_}
4925                 || $required_targets{$_});
4926
4927       # Define gathered targets in undefined conditions.
4928       # FIXME: Right now we must handle .PHONY as an exception,
4929       # because people write things like
4930       #    .PHONY: myphonytarget
4931       # to append dependencies.  This would not work if Automake
4932       # refrained from defining its own .PHONY target as it does
4933       # with other overridden targets.
4934       # Likewise for `.MAKE'.
4935       my @undefined_conds = (TRUE,);
4936       if ($_ ne '.PHONY' && $_ ne '.MAKE')
4937         {
4938           @undefined_conds =
4939             Automake::Rule::define ($_, 'internal',
4940                                     RULE_AUTOMAKE, TRUE, INTERNAL);
4941         }
4942       my @uniq_deps = uniq (sort @{$dependencies{$_}});
4943       foreach my $cond (@undefined_conds)
4944         {
4945           my $condstr = $cond->subst_string;
4946           &pretty_print_rule ("$condstr$_:", "$condstr\t", @uniq_deps);
4947           $output_rules .= $actions{$_} if defined $actions{$_};
4948           $output_rules .= "\n";
4949         }
4950     }
4951 }
4952
4953
4954 # &handle_tests_dejagnu ()
4955 # ------------------------
4956 sub handle_tests_dejagnu
4957 {
4958     push (@check_tests, 'check-DEJAGNU');
4959     $output_rules .= file_contents ('dejagnu', new Automake::Location);
4960 }
4961
4962
4963 # Handle TESTS variable and other checks.
4964 sub handle_tests
4965 {
4966   if (option 'dejagnu')
4967     {
4968       &handle_tests_dejagnu;
4969     }
4970   else
4971     {
4972       foreach my $c ('DEJATOOL', 'RUNTEST', 'RUNTESTFLAGS')
4973         {
4974           reject_var ($c, "`$c' defined but `dejagnu' not in "
4975                       . "`AUTOMAKE_OPTIONS'");
4976         }
4977     }
4978
4979   if (var ('TESTS'))
4980     {
4981       push (@check_tests, 'check-TESTS');
4982       $output_rules .= &file_contents ('check', new Automake::Location,
4983                                        COLOR => !! option 'color-tests',
4984                                        PARALLEL_TESTS => !! option 'parallel-tests');
4985
4986       # Tests that are known programs should have $(EXEEXT) appended.
4987       # For matching purposes, we need to adjust XFAIL_TESTS as well.
4988       append_exeext { exists $known_programs{$_[0]} } 'TESTS';
4989       append_exeext { exists $known_programs{$_[0]} } 'XFAIL_TESTS'
4990         if (var ('XFAIL_TESTS'));
4991
4992       if (option 'parallel-tests')
4993         {
4994           define_variable ('TEST_SUITE_LOG', 'test-suite.log', INTERNAL);
4995           define_variable ('TEST_SUITE_HTML', '$(TEST_SUITE_LOG:.log=.html)', INTERNAL);
4996           my $suff = '.test';
4997           my $at_exeext = '';
4998           my $handle_exeext = exists $configure_vars{'EXEEXT'};
4999           if ($handle_exeext)
5000             {
5001               $at_exeext = subst ('EXEEXT');
5002               $suff = $at_exeext  . ' ' . $suff;
5003             }
5004           define_variable ('TEST_EXTENSIONS', $suff, INTERNAL);
5005           # FIXME: this mishandles conditions.
5006           my @test_suffixes = (var 'TEST_EXTENSIONS')->value_as_list_recursive;
5007           if ($handle_exeext)
5008             {
5009               unshift (@test_suffixes, $at_exeext)
5010                 unless $test_suffixes[0] eq $at_exeext;
5011             }
5012           unshift (@test_suffixes, '');
5013
5014           transform_variable_recursively
5015             ('TESTS', 'TEST_LOGS', 'am__testlogs', 1, INTERNAL,
5016               sub {
5017                 my ($subvar, $val, $cond, $full_cond) = @_;
5018                 my $obj = $val;
5019                 return $obj
5020                   if $val =~ /^\@.*\@$/;
5021                 $obj =~ s/\$\(EXEEXT\)$//o;
5022
5023                 if ($val =~ /(\$\((top_)?srcdir\))\//o)
5024                   {
5025                     msg ('error', $subvar->rdef ($cond)->location,
5026                          "parallel-tests: using `$1' in TESTS is currently broken: `$val'");
5027                   }
5028
5029                 foreach my $test_suffix (@test_suffixes)
5030                   {
5031                     next
5032                       if $test_suffix eq $at_exeext || $test_suffix eq '';
5033                     return substr ($obj, 0, length ($obj) - length ($test_suffix)) . '.log'
5034                       if substr ($obj, - length ($test_suffix)) eq $test_suffix;
5035                   }
5036                 $obj .= '.log';
5037                 my $compile = 'LOG_COMPILE';
5038                 define_variable ($compile,
5039                                  '$(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)', INTERNAL);
5040                 $output_rules .= file_contents ('check2', new Automake::Location,
5041                                                 GENERIC => 0,
5042                                                 OBJ => $obj,
5043                                                 SOURCE => $val,
5044                                                 COMPILE =>'$(' . $compile . ')',
5045                                                 EXT => '',
5046                                                 am__EXEEXT => 'FALSE');
5047                 return $obj;
5048               });
5049
5050           my $nhelper=1;
5051           my $prev = 'TESTS';
5052           my $post = '';
5053           my $last_suffix = $test_suffixes[$#test_suffixes];
5054           my $cur = '';
5055           foreach my $test_suffix (@test_suffixes)
5056             {
5057               if ($test_suffix eq $last_suffix)
5058                 {
5059                   $cur = 'TEST_LOGS';
5060                 }
5061               else
5062                 {
5063                   $cur = 'am__test_logs' . $nhelper;
5064                 }
5065               define_variable ($cur,
5066                 '$(' . $prev . ':' . $test_suffix . $post . '=.log)', INTERNAL);
5067               $post = '.log';
5068               $prev = $cur;
5069               $nhelper++;
5070               if ($test_suffix ne $at_exeext && $test_suffix ne '')
5071                 {
5072                   (my $ext = $test_suffix) =~ s/^\.//;
5073                   $ext = uc $ext;
5074                   my $compile = $ext . '_LOG_COMPILE';
5075                   define_variable ($compile,
5076                                    '$(' . $ext . '_LOG_COMPILER) $(AM_' .  $ext . '_LOG_FLAGS)'
5077                                    . ' $(' . $ext . '_LOG_FLAGS)', INTERNAL);
5078                   my $am_exeext = $handle_exeext ? 'am__EXEEXT' : 'FALSE';
5079                   $output_rules .= file_contents ('check2', new Automake::Location,
5080                                                   GENERIC => 1,
5081                                                   OBJ => '',
5082                                                   SOURCE => '$<',
5083                                                   COMPILE => '$(' . $compile . ')',
5084                                                   EXT => $test_suffix,
5085                                                   am__EXEEXT => $am_exeext);
5086                 }
5087             }
5088
5089           define_variable ('TEST_LOGS_TMP', '$(TEST_LOGS:.log=.log-t)', INTERNAL);
5090
5091           $clean_files{'$(TEST_LOGS_TMP)'} = MOSTLY_CLEAN;
5092           $clean_files{'$(TEST_LOGS)'} = MOSTLY_CLEAN;
5093           $clean_files{'$(TEST_SUITE_LOG)'} = MOSTLY_CLEAN;
5094           $clean_files{'$(TEST_SUITE_HTML)'} = MOSTLY_CLEAN;
5095         }
5096     }
5097 }
5098
5099 # Handle Emacs Lisp.
5100 sub handle_emacs_lisp
5101 {
5102   my @elfiles = &am_install_var ('-candist', 'lisp', 'LISP',
5103                                  'lisp', 'noinst');
5104
5105   return if ! @elfiles;
5106
5107   define_pretty_variable ('am__ELFILES', TRUE, INTERNAL,
5108                           map { $_->[1] } @elfiles);
5109   define_pretty_variable ('am__ELCFILES', TRUE, INTERNAL,
5110                           '$(am__ELFILES:.el=.elc)');
5111   # This one can be overridden by users.
5112   define_pretty_variable ('ELCFILES', TRUE, INTERNAL, '$(LISP:.el=.elc)');
5113
5114   push @all, '$(ELCFILES)';
5115
5116   require_variables ($elfiles[0][0], "Emacs Lisp sources seen", TRUE,
5117                      'EMACS', 'lispdir');
5118   require_conf_file ($elfiles[0][0], FOREIGN, 'elisp-comp');
5119   &define_variable ('elisp_comp', "$am_config_aux_dir/elisp-comp", INTERNAL);
5120 }
5121
5122 # Handle Python
5123 sub handle_python
5124 {
5125   my @pyfiles = &am_install_var ('-defaultdist', 'python', 'PYTHON',
5126                                  'noinst');
5127   return if ! @pyfiles;
5128
5129   require_variables ($pyfiles[0][0], "Python sources seen", TRUE, 'PYTHON');
5130   require_conf_file ($pyfiles[0][0], FOREIGN, 'py-compile');
5131   &define_variable ('py_compile', "$am_config_aux_dir/py-compile", INTERNAL);
5132 }
5133
5134 # Handle Java.
5135 sub handle_java
5136 {
5137     my @sourcelist = &am_install_var ('-candist',
5138                                       'java', 'JAVA',
5139                                       'java', 'noinst', 'check');
5140     return if ! @sourcelist;
5141
5142     my @prefix = am_primary_prefixes ('JAVA', 1,
5143                                       'java', 'noinst', 'check');
5144
5145     my $dir;
5146     foreach my $curs (@prefix)
5147       {
5148         next
5149           if $curs eq 'EXTRA';
5150
5151         err_var "${curs}_JAVA", "multiple _JAVA primaries in use"
5152           if defined $dir;
5153         $dir = $curs;
5154       }
5155
5156     if ($dir eq 'check')
5157       {
5158         push (@check, "class$dir.stamp");
5159       }
5160     else
5161       {
5162         push (@all, "class$dir.stamp");
5163       }
5164 }
5165
5166
5167 # Handle some of the minor options.
5168 sub handle_minor_options
5169 {
5170   if (option 'readme-alpha')
5171     {
5172       if ($relative_dir eq '.')
5173         {
5174           if ($package_version !~ /^$GNITS_VERSION_PATTERN$/)
5175             {
5176               msg ('error-gnits', $package_version_location,
5177                    "version `$package_version' doesn't follow " .
5178                    "Gnits standards");
5179             }
5180           if (defined $1 && -f 'README-alpha')
5181             {
5182               # This means we have an alpha release.  See
5183               # GNITS_VERSION_PATTERN for details.
5184               push_dist_common ('README-alpha');
5185             }
5186         }
5187     }
5188 }
5189
5190 ################################################################
5191
5192 # ($OUTPUT, @INPUTS)
5193 # &split_config_file_spec ($SPEC)
5194 # -------------------------------
5195 # Decode the Autoconf syntax for config files (files, headers, links
5196 # etc.).
5197 sub split_config_file_spec ($)
5198 {
5199   my ($spec) = @_;
5200   my ($output, @inputs) = split (/:/, $spec);
5201
5202   push @inputs, "$output.in"
5203     unless @inputs;
5204
5205   return ($output, @inputs);
5206 }
5207
5208 # $input
5209 # locate_am (@POSSIBLE_SOURCES)
5210 # -----------------------------
5211 # AC_CONFIG_FILES allow specifications such as Makefile:top.in:mid.in:bot.in
5212 # This functions returns the first *.in file for which a *.am exists.
5213 # It returns undef otherwise.
5214 sub locate_am (@)
5215 {
5216   my (@rest) = @_;
5217   my $input;
5218   foreach my $file (@rest)
5219     {
5220       if (($file =~ /^(.*)\.in$/) && -f "$1.am")
5221         {
5222           $input = $file;
5223           last;
5224         }
5225     }
5226   return $input;
5227 }
5228
5229 my %make_list;
5230
5231 # &scan_autoconf_config_files ($WHERE, $CONFIG-FILES)
5232 # ---------------------------------------------------
5233 # Study $CONFIG-FILES which is the first argument to AC_CONFIG_FILES
5234 # (or AC_OUTPUT).
5235 sub scan_autoconf_config_files ($$)
5236 {
5237   my ($where, $config_files) = @_;
5238
5239   # Look at potential Makefile.am's.
5240   foreach (split ' ', $config_files)
5241     {
5242       # Must skip empty string for Perl 4.
5243       next if $_ eq "\\" || $_ eq '';
5244
5245       # Handle $local:$input syntax.
5246       my ($local, @rest) = split (/:/);
5247       @rest = ("$local.in",) unless @rest;
5248       msg ('portability', $where,
5249           "omit leading `./' from config file names such as `$local',"
5250           . "\nas not all make implementations treat `file' and `./file' equally")
5251         if ($local =~ /^\.\//);
5252       my $input = locate_am @rest;
5253       if ($input)
5254         {
5255           # We have a file that automake should generate.
5256           $make_list{$input} = join (':', ($local, @rest));
5257         }
5258       else
5259         {
5260           # We have a file that automake should cause to be
5261           # rebuilt, but shouldn't generate itself.
5262           push (@other_input_files, $_);
5263         }
5264       $ac_config_files_location{$local} = $where;
5265       $ac_config_files_condition{$local} =
5266         new Automake::Condition (@cond_stack)
5267           if (@cond_stack);
5268     }
5269 }
5270
5271
5272 # &scan_autoconf_traces ($FILENAME)
5273 # ---------------------------------
5274 sub scan_autoconf_traces ($)
5275 {
5276   my ($filename) = @_;
5277
5278   # Macros to trace, with their minimal number of arguments.
5279   #
5280   # IMPORTANT: If you add a macro here, you should also add this macro
5281   # =========  to Automake-preselection in autoconf/lib/autom4te.in.
5282   my %traced = (
5283                 AC_CANONICAL_BUILD => 0,
5284                 AC_CANONICAL_HOST => 0,
5285                 AC_CANONICAL_TARGET => 0,
5286                 AC_CONFIG_AUX_DIR => 1,
5287                 AC_CONFIG_FILES => 1,
5288                 AC_CONFIG_HEADERS => 1,
5289                 AC_CONFIG_LIBOBJ_DIR => 1,
5290                 AC_CONFIG_LINKS => 1,
5291                 AC_FC_SRCEXT => 1,
5292                 AC_INIT => 0,
5293                 AC_LIBSOURCE => 1,
5294                 AC_REQUIRE_AUX_FILE => 1,
5295                 AC_SUBST_TRACE => 1,
5296                 AM_AUTOMAKE_VERSION => 1,
5297                 AM_CONDITIONAL => 2,
5298                 AM_ENABLE_MULTILIB => 0,
5299                 AM_GNU_GETTEXT => 0,
5300                 AM_GNU_GETTEXT_INTL_SUBDIR => 0,
5301                 AM_INIT_AUTOMAKE => 0,
5302                 AM_MAINTAINER_MODE => 0,
5303                 AM_PROG_CC_C_O => 0,
5304                 AM_SILENT_RULES => 0,
5305                 _AM_SUBST_NOTMAKE => 1,
5306                 _AM_COND_IF => 1,
5307                 _AM_COND_ELSE => 1,
5308                 _AM_COND_ENDIF => 1,
5309                 LT_SUPPORTED_TAG => 1,
5310                 _LT_AC_TAGCONFIG => 0,
5311                 m4_include => 1,
5312                 m4_sinclude => 1,
5313                 sinclude => 1,
5314               );
5315
5316   my $traces = ($ENV{AUTOCONF} || 'autoconf') . " ";
5317
5318   # Use a separator unlikely to be used, not `:', the default, which
5319   # has a precise meaning for AC_CONFIG_FILES and so on.
5320   $traces .= join (' ',
5321                    map { "--trace=$_" . ':\$f:\$l::\$d::\$n::\${::}%' }
5322                    (keys %traced));
5323
5324   my $tracefh = new Automake::XFile ("$traces $filename |");
5325   verb "reading $traces";
5326
5327   @cond_stack = ();
5328   my $where;
5329
5330   while ($_ = $tracefh->getline)
5331     {
5332       chomp;
5333       my ($here, $depth, @args) = split (/::/);
5334       $where = new Automake::Location $here;
5335       my $macro = $args[0];
5336
5337       prog_error ("unrequested trace `$macro'")
5338         unless exists $traced{$macro};
5339
5340       # Skip and diagnose malformed calls.
5341       if ($#args < $traced{$macro})
5342         {
5343           msg ('syntax', $where, "not enough arguments for $macro");
5344           next;
5345         }
5346
5347       # Alphabetical ordering please.
5348       if ($macro eq 'AC_CANONICAL_BUILD')
5349         {
5350           if ($seen_canonical <= AC_CANONICAL_BUILD)
5351             {
5352               $seen_canonical = AC_CANONICAL_BUILD;
5353               $canonical_location = $where;
5354             }
5355         }
5356       elsif ($macro eq 'AC_CANONICAL_HOST')
5357         {
5358           if ($seen_canonical <= AC_CANONICAL_HOST)
5359             {
5360               $seen_canonical = AC_CANONICAL_HOST;
5361               $canonical_location = $where;
5362             }
5363         }
5364       elsif ($macro eq 'AC_CANONICAL_TARGET')
5365         {
5366           $seen_canonical = AC_CANONICAL_TARGET;
5367           $canonical_location = $where;
5368         }
5369       elsif ($macro eq 'AC_CONFIG_AUX_DIR')
5370         {
5371           if ($seen_init_automake)
5372             {
5373               error ($where, "AC_CONFIG_AUX_DIR must be called before "
5374                      . "AM_INIT_AUTOMAKE ...", partial => 1);
5375               error ($seen_init_automake, "... AM_INIT_AUTOMAKE called here");
5376             }
5377           $config_aux_dir = $args[1];
5378           $config_aux_dir_set_in_configure_ac = 1;
5379           $relative_dir = '.';
5380           check_directory ($config_aux_dir, $where);
5381         }
5382       elsif ($macro eq 'AC_CONFIG_FILES')
5383         {
5384           # Look at potential Makefile.am's.
5385           scan_autoconf_config_files ($where, $args[1]);
5386         }
5387       elsif ($macro eq 'AC_CONFIG_HEADERS')
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_headers, $spec;
5394             }
5395         }
5396       elsif ($macro eq 'AC_CONFIG_LIBOBJ_DIR')
5397         {
5398           $config_libobj_dir = $args[1];
5399           $relative_dir = '.';
5400           check_directory ($config_libobj_dir, $where);
5401         }
5402       elsif ($macro eq 'AC_CONFIG_LINKS')
5403         {
5404           foreach my $spec (split (' ', $args[1]))
5405             {
5406               my ($dest, $src) = split (':', $spec);
5407               $ac_config_files_location{$dest} = $where;
5408               push @config_links, $spec;
5409             }
5410         }
5411       elsif ($macro eq 'AC_FC_SRCEXT')
5412         {
5413           my $suffix = $args[1];
5414           # These flags are used as %SOURCEFLAG% in depend2.am,
5415           # where the trailing space is important.
5416           $sourceflags{'.' . $suffix} = '$(FCFLAGS_' . $suffix . ') '
5417             if ($suffix eq 'f90' || $suffix eq 'f95' || $suffix eq 'f03' || $suffix eq 'f08');
5418         }
5419       elsif ($macro eq 'AC_INIT')
5420         {
5421           if (defined $args[2])
5422             {
5423               $package_version = $args[2];
5424               $package_version_location = $where;
5425             }
5426         }
5427       elsif ($macro eq 'AC_LIBSOURCE')
5428         {
5429           $libsources{$args[1]} = $here;
5430         }
5431       elsif ($macro eq 'AC_REQUIRE_AUX_FILE')
5432         {
5433           # Only remember the first time a file is required.
5434           $required_aux_file{$args[1]} = $where
5435             unless exists $required_aux_file{$args[1]};
5436         }
5437       elsif ($macro eq 'AC_SUBST_TRACE')
5438         {
5439           # Just check for alphanumeric in AC_SUBST_TRACE.  If you do
5440           # AC_SUBST(5), then too bad.
5441           $configure_vars{$args[1]} = $where
5442             if $args[1] =~ /^\w+$/;
5443         }
5444       elsif ($macro eq 'AM_AUTOMAKE_VERSION')
5445         {
5446           error ($where,
5447                  "version mismatch.  This is Automake $VERSION,\n" .
5448                  "but the definition used by this AM_INIT_AUTOMAKE\n" .
5449                  "comes from Automake $args[1].  You should recreate\n" .
5450                  "aclocal.m4 with aclocal and run automake again.\n",
5451                  # $? = 63 is used to indicate version mismatch to missing.
5452                  exit_code => 63)
5453             if $VERSION ne $args[1];
5454
5455           $seen_automake_version = 1;
5456         }
5457       elsif ($macro eq 'AM_CONDITIONAL')
5458         {
5459           $configure_cond{$args[1]} = $where;
5460         }
5461       elsif ($macro eq 'AM_ENABLE_MULTILIB')
5462         {
5463           $seen_multilib = $where;
5464         }
5465       elsif ($macro eq 'AM_GNU_GETTEXT')
5466         {
5467           $seen_gettext = $where;
5468           $ac_gettext_location = $where;
5469           $seen_gettext_external = grep ($_ eq 'external', @args);
5470         }
5471       elsif ($macro eq 'AM_GNU_GETTEXT_INTL_SUBDIR')
5472         {
5473           $seen_gettext_intl = $where;
5474         }
5475       elsif ($macro eq 'AM_INIT_AUTOMAKE')
5476         {
5477           $seen_init_automake = $where;
5478           if (defined $args[2])
5479             {
5480               $package_version = $args[2];
5481               $package_version_location = $where;
5482             }
5483           elsif (defined $args[1])
5484             {
5485               my @opts = split (' ', $args[1]);
5486               @opts = map { { option => $_, where => $where } } @opts;
5487               exit $exit_code if process_global_option_list (@opts);
5488             }
5489         }
5490       elsif ($macro eq 'AM_MAINTAINER_MODE')
5491         {
5492           $seen_maint_mode = $where;
5493         }
5494       elsif ($macro eq 'AM_PROG_CC_C_O')
5495         {
5496           $seen_cc_c_o = $where;
5497         }
5498       elsif ($macro eq 'AM_SILENT_RULES')
5499         {
5500           set_global_option ('silent-rules', $where);
5501         }
5502       elsif ($macro eq '_AM_COND_IF')
5503         {
5504           cond_stack_if ('', $args[1], $where);
5505           error ($where, "missing m4 quoting, macro depth $depth")
5506             if ($depth != 1);
5507         }
5508       elsif ($macro eq '_AM_COND_ELSE')
5509         {
5510           cond_stack_else ('!', $args[1], $where);
5511           error ($where, "missing m4 quoting, macro depth $depth")
5512             if ($depth != 1);
5513         }
5514       elsif ($macro eq '_AM_COND_ENDIF')
5515         {
5516           cond_stack_endif (undef, undef, $where);
5517           error ($where, "missing m4 quoting, macro depth $depth")
5518             if ($depth != 1);
5519         }
5520       elsif ($macro eq '_AM_SUBST_NOTMAKE')
5521         {
5522           $ignored_configure_vars{$args[1]} = $where;
5523         }
5524       elsif ($macro eq 'm4_include'
5525              || $macro eq 'm4_sinclude'
5526              || $macro eq 'sinclude')
5527         {
5528           # Skip missing `sinclude'd files.
5529           next if $macro ne 'm4_include' && ! -f $args[1];
5530
5531           # Some modified versions of Autoconf don't use
5532           # frozen files.  Consequently it's possible that we see all
5533           # m4_include's performed during Autoconf's startup.
5534           # Obviously we don't want to distribute Autoconf's files
5535           # so we skip absolute filenames here.
5536           push @configure_deps, '$(top_srcdir)/' . $args[1]
5537             unless $here =~ m,^(?:\w:)?[\\/],;
5538           # Keep track of the greatest timestamp.
5539           if (-e $args[1])
5540             {
5541               my $mtime = mtime $args[1];
5542               $configure_deps_greatest_timestamp = $mtime
5543                 if $mtime > $configure_deps_greatest_timestamp;
5544             }
5545         }
5546       elsif ($macro eq 'LT_SUPPORTED_TAG')
5547         {
5548           $libtool_tags{$args[1]} = 1;
5549           $libtool_new_api = 1;
5550         }
5551       elsif ($macro eq '_LT_AC_TAGCONFIG')
5552         {
5553           # _LT_AC_TAGCONFIG is an old macro present in Libtool 1.5.
5554           # We use it to detect whether tags are supported.  Our
5555           # preferred interface is LT_SUPPORTED_TAG, but it was
5556           # introduced in Libtool 1.6.
5557           if (0 == keys %libtool_tags)
5558             {
5559               # Hardcode the tags supported by Libtool 1.5.
5560               %libtool_tags = (CC => 1, CXX => 1, GCJ => 1, F77 => 1);
5561             }
5562         }
5563     }
5564
5565   error ($where, "condition stack not properly closed")
5566     if (@cond_stack);
5567
5568   $tracefh->close;
5569 }
5570
5571
5572 # &scan_autoconf_files ()
5573 # -----------------------
5574 # Check whether we use `configure.ac' or `configure.in'.
5575 # Scan it (and possibly `aclocal.m4') for interesting things.
5576 # We must scan aclocal.m4 because there might be AC_SUBSTs and such there.
5577 sub scan_autoconf_files ()
5578 {
5579   # Reinitialize libsources here.  This isn't really necessary,
5580   # since we currently assume there is only one configure.ac.  But
5581   # that won't always be the case.
5582   %libsources = ();
5583
5584   # Keep track of the youngest configure dependency.
5585   $configure_deps_greatest_timestamp = mtime $configure_ac;
5586   if (-e 'aclocal.m4')
5587     {
5588       my $mtime = mtime 'aclocal.m4';
5589       $configure_deps_greatest_timestamp = $mtime
5590         if $mtime > $configure_deps_greatest_timestamp;
5591     }
5592
5593   scan_autoconf_traces ($configure_ac);
5594
5595   @configure_input_files = sort keys %make_list;
5596   # Set input and output files if not specified by user.
5597   if (! @input_files)
5598     {
5599       @input_files = @configure_input_files;
5600       %output_files = %make_list;
5601     }
5602
5603
5604   if (! $seen_init_automake)
5605     {
5606       err_ac ("no proper invocation of AM_INIT_AUTOMAKE was found.\nYou "
5607               . "should verify that $configure_ac invokes AM_INIT_AUTOMAKE,"
5608               . "\nthat aclocal.m4 is present in the top-level directory,\n"
5609               . "and that aclocal.m4 was recently regenerated "
5610               . "(using aclocal)");
5611     }
5612   else
5613     {
5614       if (! $seen_automake_version)
5615         {
5616           if (-f 'aclocal.m4')
5617             {
5618               error ($seen_init_automake,
5619                      "your implementation of AM_INIT_AUTOMAKE comes from " .
5620                      "an\nold Automake version.  You should recreate " .
5621                      "aclocal.m4\nwith aclocal and run automake again",
5622                      # $? = 63 is used to indicate version mismatch to missing.
5623                      exit_code => 63);
5624             }
5625           else
5626             {
5627               error ($seen_init_automake,
5628                      "no proper implementation of AM_INIT_AUTOMAKE was " .
5629                      "found,\nprobably because aclocal.m4 is missing.\n" .
5630                      "You should run aclocal to create this file, then\n" .
5631                      "run automake again");
5632             }
5633         }
5634     }
5635
5636   locate_aux_dir ();
5637
5638   # Reorder @input_files so that the Makefile that distributes aux
5639   # files is processed last.  This is important because each directory
5640   # can require auxiliary scripts and we should wait until they have
5641   # been installed before distributing them.
5642
5643   # The Makefile.in that distribute the aux files is the one in
5644   # $config_aux_dir or the top-level Makefile.
5645   my $auxdirdist = is_make_dir ($config_aux_dir) ? $config_aux_dir : '.';
5646   my @new_input_files = ();
5647   while (@input_files)
5648     {
5649       my $in = pop @input_files;
5650       my @ins = split (/:/, $output_files{$in});
5651       if (dirname ($ins[0]) eq $auxdirdist)
5652         {
5653           push @new_input_files, $in;
5654           $automake_will_process_aux_dir = 1;
5655         }
5656       else
5657         {
5658           unshift @new_input_files, $in;
5659         }
5660     }
5661   @input_files = @new_input_files;
5662
5663   # If neither the auxdir/Makefile nor the ./Makefile are generated
5664   # by Automake, we won't distribute the aux files anyway.  Assume
5665   # the user know what (s)he does, and pretend we will distribute
5666   # them to disable the error in require_file_internal.
5667   $automake_will_process_aux_dir = 1 if ! is_make_dir ($auxdirdist);
5668
5669   # Look for some files we need.  Always check for these.  This
5670   # check must be done for every run, even those where we are only
5671   # looking at a subdir Makefile.  We must set relative_dir for
5672   # maybe_push_required_file to work.
5673   # Sort the files for stable verbose output.
5674   $relative_dir = '.';
5675   foreach my $file (sort keys %required_aux_file)
5676     {
5677       require_conf_file ($required_aux_file{$file}->get, FOREIGN, $file)
5678     }
5679   err_am "`install.sh' is an anachronism; use `install-sh' instead"
5680     if -f $config_aux_dir . '/install.sh';
5681
5682   # Preserve dist_common for later.
5683   $configure_dist_common = variable_value ('DIST_COMMON') || '';
5684
5685 }
5686
5687 ################################################################
5688
5689 # Set up for Cygnus mode.
5690 sub check_cygnus
5691 {
5692   my $cygnus = option 'cygnus';
5693   return unless $cygnus;
5694
5695   set_strictness ('foreign');
5696   set_option ('no-installinfo', $cygnus);
5697   set_option ('no-dependencies', $cygnus);
5698   set_option ('no-dist', $cygnus);
5699
5700   err_ac "`AM_MAINTAINER_MODE' required when --cygnus specified"
5701     if !$seen_maint_mode;
5702 }
5703
5704 # Do any extra checking for GNU standards.
5705 sub check_gnu_standards
5706 {
5707   if ($relative_dir eq '.')
5708     {
5709       # In top level (or only) directory.
5710       require_file ("$am_file.am", GNU,
5711                     qw/INSTALL NEWS README AUTHORS ChangeLog/);
5712
5713       # Accept one of these three licenses; default to COPYING.
5714       # Make sure we do not overwrite an existing license.
5715       my $license;
5716       foreach (qw /COPYING COPYING.LIB COPYING.LESSER/)
5717         {
5718           if (-f $_)
5719             {
5720               $license = $_;
5721               last;
5722             }
5723         }
5724       require_file ("$am_file.am", GNU, 'COPYING')
5725         unless $license;
5726     }
5727
5728   for my $opt ('no-installman', 'no-installinfo')
5729     {
5730       msg ('error-gnu', option $opt,
5731            "option `$opt' disallowed by GNU standards")
5732         if option $opt;
5733     }
5734 }
5735
5736 # Do any extra checking for GNITS standards.
5737 sub check_gnits_standards
5738 {
5739   if ($relative_dir eq '.')
5740     {
5741       # In top level (or only) directory.
5742       require_file ("$am_file.am", GNITS, 'THANKS');
5743     }
5744 }
5745
5746 ################################################################
5747 #
5748 # Functions to handle files of each language.
5749
5750 # Each `lang_X_rewrite($DIRECTORY, $BASE, $EXT)' function follows a
5751 # simple formula: Return value is LANG_SUBDIR if the resulting object
5752 # file should be in a subdir if the source file is, LANG_PROCESS if
5753 # file is to be dealt with, LANG_IGNORE otherwise.
5754
5755 # Much of the actual processing is handled in
5756 # handle_single_transform.  These functions exist so that
5757 # auxiliary information can be recorded for a later cleanup pass.
5758 # Note that the calls to these functions are computed, so don't bother
5759 # searching for their precise names in the source.
5760
5761 # This is just a convenience function that can be used to determine
5762 # when a subdir object should be used.
5763 sub lang_sub_obj
5764 {
5765     return option 'subdir-objects' ? LANG_SUBDIR : LANG_PROCESS;
5766 }
5767
5768 # Rewrite a single C source file.
5769 sub lang_c_rewrite
5770 {
5771   my ($directory, $base, $ext, $nonansi_obj, $have_per_exec_flags, $var) = @_;
5772
5773   if (option 'ansi2knr' && $base =~ /_$/)
5774     {
5775       # FIXME: include line number in error.
5776       err_am "C source file `$base.c' would be deleted by ansi2knr rules";
5777     }
5778
5779   my $r = LANG_PROCESS;
5780   if (option 'subdir-objects')
5781     {
5782       $r = LANG_SUBDIR;
5783       if ($directory && $directory ne '.')
5784         {
5785           $base = $directory . '/' . $base;
5786
5787           # libtool is always able to put the object at the proper place,
5788           # so we do not have to require AM_PROG_CC_C_O when building .lo files.
5789           msg_var ('portability', $var,
5790                    "compiling `$base.c' in subdir requires "
5791                    . "`AM_PROG_CC_C_O' in `$configure_ac'",
5792                    uniq_scope => US_GLOBAL,
5793                    uniq_part => 'AM_PROG_CC_C_O subdir')
5794             unless $seen_cc_c_o || $nonansi_obj eq '.lo';
5795         }
5796
5797       # In this case we already have the directory information, so
5798       # don't add it again.
5799       $de_ansi_files{$base} = '';
5800     }
5801   else
5802     {
5803       $de_ansi_files{$base} = (($directory eq '.' || $directory eq '')
5804                                ? ''
5805                                : "$directory/");
5806     }
5807
5808   if (! $seen_cc_c_o
5809       && $have_per_exec_flags
5810       && ! option 'subdir-objects'
5811       && $nonansi_obj ne '.lo')
5812     {
5813       msg_var ('portability',
5814                $var, "compiling `$base.c' with per-target flags requires "
5815                . "`AM_PROG_CC_C_O' in `$configure_ac'",
5816                uniq_scope => US_GLOBAL,
5817                uniq_part => 'AM_PROG_CC_C_O per-target')
5818     }
5819
5820     return $r;
5821 }
5822
5823 # Rewrite a single C++ source file.
5824 sub lang_cxx_rewrite
5825 {
5826     return &lang_sub_obj;
5827 }
5828
5829 # Rewrite a single header file.
5830 sub lang_header_rewrite
5831 {
5832     # Header files are simply ignored.
5833     return LANG_IGNORE;
5834 }
5835
5836 # Rewrite a single Vala source file.
5837 sub lang_vala_rewrite
5838 {
5839     my ($directory, $base, $ext) = @_;
5840
5841     (my $newext = $ext) =~ s/vala$/c/;
5842     return (LANG_SUBDIR, $newext);
5843 }
5844
5845 # Rewrite a single yacc file.
5846 sub lang_yacc_rewrite
5847 {
5848     my ($directory, $base, $ext) = @_;
5849
5850     my $r = &lang_sub_obj;
5851     (my $newext = $ext) =~ tr/y/c/;
5852     return ($r, $newext);
5853 }
5854
5855 # Rewrite a single yacc++ file.
5856 sub lang_yaccxx_rewrite
5857 {
5858     my ($directory, $base, $ext) = @_;
5859
5860     my $r = &lang_sub_obj;
5861     (my $newext = $ext) =~ tr/y/c/;
5862     return ($r, $newext);
5863 }
5864
5865 # Rewrite a single lex file.
5866 sub lang_lex_rewrite
5867 {
5868     my ($directory, $base, $ext) = @_;
5869
5870     my $r = &lang_sub_obj;
5871     (my $newext = $ext) =~ tr/l/c/;
5872     return ($r, $newext);
5873 }
5874
5875 # Rewrite a single lex++ file.
5876 sub lang_lexxx_rewrite
5877 {
5878     my ($directory, $base, $ext) = @_;
5879
5880     my $r = &lang_sub_obj;
5881     (my $newext = $ext) =~ tr/l/c/;
5882     return ($r, $newext);
5883 }
5884
5885 # Rewrite a single assembly file.
5886 sub lang_asm_rewrite
5887 {
5888     return &lang_sub_obj;
5889 }
5890
5891 # Rewrite a single preprocessed assembly file.
5892 sub lang_cppasm_rewrite
5893 {
5894     return &lang_sub_obj;
5895 }
5896
5897 # Rewrite a single Fortran 77 file.
5898 sub lang_f77_rewrite
5899 {
5900     return &lang_sub_obj;
5901 }
5902
5903 # Rewrite a single Fortran file.
5904 sub lang_fc_rewrite
5905 {
5906     return &lang_sub_obj;
5907 }
5908
5909 # Rewrite a single preprocessed Fortran file.
5910 sub lang_ppfc_rewrite
5911 {
5912     return &lang_sub_obj;
5913 }
5914
5915 # Rewrite a single preprocessed Fortran 77 file.
5916 sub lang_ppf77_rewrite
5917 {
5918     return &lang_sub_obj;
5919 }
5920
5921 # Rewrite a single ratfor file.
5922 sub lang_ratfor_rewrite
5923 {
5924     return &lang_sub_obj;
5925 }
5926
5927 # Rewrite a single Objective C file.
5928 sub lang_objc_rewrite
5929 {
5930     return &lang_sub_obj;
5931 }
5932
5933 # Rewrite a single Unified Parallel C file.
5934 sub lang_upc_rewrite
5935 {
5936     return &lang_sub_obj;
5937 }
5938
5939 # Rewrite a single Java file.
5940 sub lang_java_rewrite
5941 {
5942     return LANG_SUBDIR;
5943 }
5944
5945 # The lang_X_finish functions are called after all source file
5946 # processing is done.  Each should handle defining rules for the
5947 # language, etc.  A finish function is only called if a source file of
5948 # the appropriate type has been seen.
5949
5950 sub lang_c_finish
5951 {
5952     # Push all libobjs files onto de_ansi_files.  We actually only
5953     # push files which exist in the current directory, and which are
5954     # genuine source files.
5955     foreach my $file (keys %libsources)
5956     {
5957         if ($file =~ /^(.*)\.[cly]$/ && -f "$relative_dir/$file")
5958         {
5959             $de_ansi_files{$1} = ''
5960         }
5961     }
5962
5963     if (option 'ansi2knr' && keys %de_ansi_files)
5964     {
5965         # Make all _.c files depend on their corresponding .c files.
5966         my @objects;
5967         foreach my $base (sort keys %de_ansi_files)
5968         {
5969             # Each _.c file must depend on ansi2knr; otherwise it
5970             # might be used in a parallel build before it is built.
5971             # We need to support files in the srcdir and in the build
5972             # dir (because these files might be auto-generated.  But
5973             # we can't use $< -- some makes only define $< during a
5974             # suffix rule.
5975             my $ansfile = $de_ansi_files{$base} . $base . '.c';
5976             $output_rules .= ($base . "_.c: $ansfile \$(ANSI2KNR)\n\t"
5977                               . '$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) '
5978                               . '`if test -f $(srcdir)/' . $ansfile
5979                               . '; then echo $(srcdir)/' . $ansfile
5980                               . '; else echo ' . $ansfile . '; fi` '
5981                               . "| sed 's/^# \\([0-9]\\)/#line \\1/' "
5982                               . '| $(ANSI2KNR) > $@'
5983                               # If ansi2knr fails then we shouldn't
5984                               # create the _.c file
5985                               . " || rm -f \$\@\n");
5986             push (@objects, $base . '_.$(OBJEXT)');
5987             push (@objects, $base . '_.lo')
5988               if var ('LIBTOOL');
5989
5990             # Explicitly clean the _.c files if they are in a
5991             # subdirectory. (In the current directory they get erased
5992             # by a `rm -f *_.c' rule.)
5993             $clean_files{$base . '_.c'} = MOSTLY_CLEAN
5994               if dirname ($base) ne '.';
5995         }
5996
5997         # Make all _.o (and _.lo) files depend on ansi2knr.
5998         # Use a sneaky little hack to make it print nicely.
5999         &pretty_print_rule ('', '', @objects, ':', '$(ANSI2KNR)');
6000     }
6001 }
6002
6003 sub lang_vala_finish_target ($$)
6004 {
6005   my ($self, $name) = @_;
6006
6007   my $derived = canonicalize ($name);
6008   my $varname = $derived . '_SOURCES';
6009   my $var = var ($varname);
6010
6011   if ($var)
6012     {
6013       foreach my $file ($var->value_as_list_recursive)
6014         {
6015           $output_rules .= "\$(srcdir)/$file: \$(srcdir)/${derived}_vala.stamp\n"
6016             . "\t\@if test -f \$@; then :; else rm -f \$(srcdir)/${derived}_vala.stamp; fi\n"
6017             . "\t\@if test -f \$@; then :; else \\\n"
6018             . "\t  \$(am__cd) \$(srcdir) && \$(MAKE) \$(AM_MAKEFLAGS) ${derived}_vala.stamp; \\\n"
6019             . "\tfi\n"
6020             if $file =~ s/(.*)\.vala$/$1.c/;
6021         }
6022     }
6023
6024   # Add rebuild rules for generated header and vapi files
6025   my $flags = var ($derived . '_VALAFLAGS');
6026   if ($flags)
6027     {
6028       my $lastflag = '';
6029       foreach my $flag ($flags->value_as_list_recursive)
6030         {
6031           if (grep (/$lastflag/, ('-H', '-h', '--header', '--internal-header',
6032                                   '--vapi', '--internal-vapi', '--gir')))
6033             {
6034               my $headerfile = $flag;
6035               $output_rules .= "\$(srcdir)/$headerfile: \$(srcdir)/${derived}_vala.stamp\n"
6036                 . "\t\@if test -f \$@; then :; else rm -f \$(srcdir)/${derived}_vala.stamp; fi\n"
6037                 . "\t\@if test -f \$@; then :; else \\\n"
6038                 . "\t  \$(am__cd) \$(srcdir) && \$(MAKE) \$(AM_MAKEFLAGS) ${derived}_vala.stamp; \\\n"
6039                 . "\tfi\n";
6040
6041               # valac is not used when building from dist tarballs
6042               # distribute the generated files
6043               push_dist_common ($headerfile);
6044               $clean_files{$headerfile} = MAINTAINER_CLEAN;
6045             }
6046           $lastflag = $flag;
6047         }
6048     }
6049
6050   my $compile = $self->compile;
6051
6052   # Rewrite each occurrence of `AM_VALAFLAGS' in the compile
6053   # rule into `${derived}_VALAFLAGS' if it exists.
6054   my $val = "${derived}_VALAFLAGS";
6055   $compile =~ s/\(AM_VALAFLAGS\)/\($val\)/
6056     if set_seen ($val);
6057
6058   # VALAFLAGS is a user variable (per GNU Standards),
6059   # it should not be overridden in the Makefile...
6060   check_user_variables ['VALAFLAGS'];
6061
6062   my $dirname = dirname ($name);
6063
6064   # Only generate C code, do not run C compiler
6065   $compile .= " -C";
6066
6067   my $verbose = verbose_flag ('VALAC');
6068   my $silent = silent_flag ();
6069
6070   $output_rules .=
6071     "${derived}_vala.stamp: \$(${derived}_SOURCES)\n".
6072     "\t${verbose}${compile} \$(${derived}_SOURCES)\n".
6073     "\t${silent}touch \$@\n";
6074
6075   push_dist_common ("${derived}_vala.stamp");
6076
6077   $clean_files{"${derived}_vala.stamp"} = MAINTAINER_CLEAN;
6078 }
6079
6080 # Add output rules to invoke valac and create stamp file as a witness
6081 # to handle multiple outputs. This function is called after all source
6082 # file processing is done.
6083 sub lang_vala_finish
6084 {
6085   my ($self) = @_;
6086
6087   foreach my $prog (keys %known_programs)
6088     {
6089       lang_vala_finish_target ($self, $prog);
6090     }
6091
6092   while (my ($name) = each %known_libraries)
6093     {
6094       lang_vala_finish_target ($self, $name);
6095     }
6096 }
6097
6098 # The built .c files should be cleaned only on maintainer-clean
6099 # as the .c files are distributed. This function is called for each
6100 # .vala source file.
6101 sub lang_vala_target_hook
6102 {
6103   my ($self, $aggregate, $output, $input, %transform) = @_;
6104
6105   $clean_files{$output} = MAINTAINER_CLEAN;
6106 }
6107
6108 # This is a yacc helper which is called whenever we have decided to
6109 # compile a yacc file.
6110 sub lang_yacc_target_hook
6111 {
6112     my ($self, $aggregate, $output, $input, %transform) = @_;
6113
6114     # If some relevant *YFLAGS variable contains the `-d' flag, we'll
6115     # have to to generate special code.
6116     my $yflags_contains_minus_d = 0;
6117
6118     foreach my $pfx ("", "${aggregate}_")
6119       {
6120         my $yflagsvar = var ("${pfx}YFLAGS");
6121         next unless $yflagsvar;
6122         # We cannot work reliably with conditionally-defined YFLAGS.
6123         if ($yflagsvar->has_conditional_contents)
6124           {
6125             msg_var ('unsupported', $yflagsvar,
6126                      "`${pfx}YFLAGS' cannot have conditional contents");
6127           }
6128         else
6129           {
6130             $yflags_contains_minus_d = 1
6131               if grep (/^-d$/, $yflagsvar->value_as_list_recursive);
6132           }
6133       }
6134
6135     if ($yflags_contains_minus_d)
6136       {
6137         (my $output_base = $output) =~ s/$KNOWN_EXTENSIONS_PATTERN$//;
6138         my $header = $output_base . '.h';
6139
6140         # Found a `-d' that applies to the compilation of this file.
6141         # Add a dependency for the generated header file, and arrange
6142         # for that file to be included in the distribution.
6143         foreach my $cond (Automake::Rule::define (${header}, 'internal',
6144                                                   RULE_AUTOMAKE, TRUE,
6145                                                   INTERNAL))
6146           {
6147             my $condstr = $cond->subst_string;
6148             $output_rules .=
6149               "$condstr${header}: $output\n"
6150               # Recover from removal of $header
6151               . "$condstr\t\@if test ! -f \$@; then rm -f $output; else :; fi\n"
6152               . "$condstr\t\@if test ! -f \$@; then \$(MAKE) \$(AM_MAKEFLAGS) $output; else :; fi\n";
6153           }
6154         # Distribute the generated file, unless its .y source was
6155         # listed in a nodist_ variable.  (&handle_source_transform
6156         # will set DIST_SOURCE.)
6157         &push_dist_common ($header)
6158           if $transform{'DIST_SOURCE'};
6159
6160         # The GNU rules say that yacc/lex output files should be removed
6161         # by maintainer-clean.  However, if the files are not distributed,
6162         # then we want to remove them with "make clean"; otherwise,
6163         # "make distcheck" will fail.
6164         $clean_files{$header} = $transform{'DIST_SOURCE'} ? MAINTAINER_CLEAN : CLEAN;
6165       }
6166     # See the comment above for $HEADER.
6167     $clean_files{$output} = $transform{'DIST_SOURCE'} ? MAINTAINER_CLEAN : CLEAN;
6168 }
6169
6170 # This is a lex helper which is called whenever we have decided to
6171 # compile a lex file.
6172 sub lang_lex_target_hook
6173 {
6174     my ($self, $aggregate, $output, $input) = @_;
6175     # If the files are built in the build directory, then we want to
6176     # remove them with `make clean'.  If they are in srcdir they
6177     # shouldn't be touched.  However, we can't determine this
6178     # statically, and the GNU rules say that yacc/lex output files
6179     # should be removed by maintainer-clean.  So that's what we do.
6180     $clean_files{$output} = MAINTAINER_CLEAN;
6181 }
6182
6183 # This is a helper for both lex and yacc.
6184 sub yacc_lex_finish_helper
6185 {
6186   return if defined $language_scratch{'lex-yacc-done'};
6187   $language_scratch{'lex-yacc-done'} = 1;
6188
6189   # FIXME: for now, no line number.
6190   require_conf_file ($configure_ac, FOREIGN, 'ylwrap');
6191   &define_variable ('YLWRAP', "$am_config_aux_dir/ylwrap", INTERNAL);
6192 }
6193
6194 sub lang_yacc_finish
6195 {
6196   return if defined $language_scratch{'yacc-done'};
6197   $language_scratch{'yacc-done'} = 1;
6198
6199   reject_var 'YACCFLAGS', "`YACCFLAGS' obsolete; use `YFLAGS' instead";
6200
6201   yacc_lex_finish_helper;
6202 }
6203
6204
6205 sub lang_lex_finish
6206 {
6207   return if defined $language_scratch{'lex-done'};
6208   $language_scratch{'lex-done'} = 1;
6209
6210   yacc_lex_finish_helper;
6211 }
6212
6213
6214 # Given a hash table of linker names, pick the name that has the most
6215 # precedence.  This is lame, but something has to have global
6216 # knowledge in order to eliminate the conflict.  Add more linkers as
6217 # required.
6218 sub resolve_linker
6219 {
6220     my (%linkers) = @_;
6221
6222     foreach my $l (qw(GCJLINK CXXLINK F77LINK FCLINK OBJCLINK UPCLINK))
6223     {
6224         return $l if defined $linkers{$l};
6225     }
6226     return 'LINK';
6227 }
6228
6229 # Called to indicate that an extension was used.
6230 sub saw_extension
6231 {
6232     my ($ext) = @_;
6233     if (! defined $extension_seen{$ext})
6234     {
6235         $extension_seen{$ext} = 1;
6236     }
6237     else
6238     {
6239         ++$extension_seen{$ext};
6240     }
6241 }
6242
6243 # Return the number of files seen for a given language.  Knows about
6244 # special cases we care about.  FIXME: this is hideous.  We need
6245 # something that involves real language objects.  For instance yacc
6246 # and yaccxx could both derive from a common yacc class which would
6247 # know about the strange ylwrap requirement.  (Or better yet we could
6248 # just not support legacy yacc!)
6249 sub count_files_for_language
6250 {
6251     my ($name) = @_;
6252
6253     my @names;
6254     if ($name eq 'yacc' || $name eq 'yaccxx')
6255     {
6256         @names = ('yacc', 'yaccxx');
6257     }
6258     elsif ($name eq 'lex' || $name eq 'lexxx')
6259     {
6260         @names = ('lex', 'lexxx');
6261     }
6262     else
6263     {
6264         @names = ($name);
6265     }
6266
6267     my $r = 0;
6268     foreach $name (@names)
6269     {
6270         my $lang = $languages{$name};
6271         foreach my $ext (@{$lang->extensions})
6272         {
6273             $r += $extension_seen{$ext}
6274                 if defined $extension_seen{$ext};
6275         }
6276     }
6277
6278     return $r
6279 }
6280
6281 # Called to ask whether source files have been seen . If HEADERS is 1,
6282 # headers can be included.
6283 sub saw_sources_p
6284 {
6285     my ($headers) = @_;
6286
6287     # count all the sources
6288     my $count = 0;
6289     foreach my $val (values %extension_seen)
6290     {
6291         $count += $val;
6292     }
6293
6294     if (!$headers)
6295     {
6296         $count -= count_files_for_language ('header');
6297     }
6298
6299     return $count > 0;
6300 }
6301
6302
6303 # register_language (%ATTRIBUTE)
6304 # ------------------------------
6305 # Register a single language.
6306 # Each %ATTRIBUTE is of the form ATTRIBUTE => VALUE.
6307 sub register_language (%)
6308 {
6309   my (%option) = @_;
6310
6311   # Set the defaults.
6312   $option{'ansi'} = 0
6313     unless defined $option{'ansi'};
6314   $option{'autodep'} = 'no'
6315     unless defined $option{'autodep'};
6316   $option{'linker'} = ''
6317     unless defined $option{'linker'};
6318   $option{'flags'} = []
6319     unless defined $option{'flags'};
6320   $option{'output_extensions'} = sub { return ( '.$(OBJEXT)', '.lo' ) }
6321     unless defined $option{'output_extensions'};
6322   $option{'nodist_specific'} = 0
6323     unless defined $option{'nodist_specific'};
6324
6325   my $lang = new Language (%option);
6326
6327   # Fill indexes.
6328   $extension_map{$_} = $lang->name foreach @{$lang->extensions};
6329   $languages{$lang->name} = $lang;
6330   my $link = $lang->linker;
6331   if ($link)
6332     {
6333       if (exists $link_languages{$link})
6334         {
6335           prog_error ("`$link' has different definitions in "
6336                       . $lang->name . " and " . $link_languages{$link}->name)
6337             if $lang->link ne $link_languages{$link}->link;
6338         }
6339       else
6340         {
6341           $link_languages{$link} = $lang;
6342         }
6343     }
6344
6345   # Update the pattern of known extensions.
6346   accept_extensions (@{$lang->extensions});
6347
6348   # Upate the $suffix_rule map.
6349   foreach my $suffix (@{$lang->extensions})
6350     {
6351       foreach my $dest (&{$lang->output_extensions} ($suffix))
6352         {
6353           register_suffix_rule (INTERNAL, $suffix, $dest);
6354         }
6355     }
6356 }
6357
6358 # derive_suffix ($EXT, $OBJ)
6359 # --------------------------
6360 # This function is used to find a path from a user-specified suffix $EXT
6361 # to $OBJ or to some other suffix we recognize internally, e.g. `cc'.
6362 sub derive_suffix ($$)
6363 {
6364   my ($source_ext, $obj) = @_;
6365
6366   while (! $extension_map{$source_ext}
6367          && $source_ext ne $obj
6368          && exists $suffix_rules->{$source_ext}
6369          && exists $suffix_rules->{$source_ext}{$obj})
6370     {
6371       $source_ext = $suffix_rules->{$source_ext}{$obj}[0];
6372     }
6373
6374   return $source_ext;
6375 }
6376
6377
6378 ################################################################
6379
6380 # Pretty-print something and append to output_rules.
6381 sub pretty_print_rule
6382 {
6383     $output_rules .= &makefile_wrap (@_);
6384 }
6385
6386
6387 ################################################################
6388
6389
6390 ## -------------------------------- ##
6391 ## Handling the conditional stack.  ##
6392 ## -------------------------------- ##
6393
6394
6395 # $STRING
6396 # make_conditional_string ($NEGATE, $COND)
6397 # ----------------------------------------
6398 sub make_conditional_string ($$)
6399 {
6400   my ($negate, $cond) = @_;
6401   $cond = "${cond}_TRUE"
6402     unless $cond =~ /^TRUE|FALSE$/;
6403   $cond = Automake::Condition::conditional_negate ($cond)
6404     if $negate;
6405   return $cond;
6406 }
6407
6408
6409 my %_am_macro_for_cond =
6410   (
6411   AMDEP => "one of the compiler tests\n"
6412            . "    AC_PROG_CC, AC_PROG_CXX, AC_PROG_CXX, AC_PROG_OBJC,\n"
6413            . "    AM_PROG_AS, AM_PROG_GCJ, AM_PROG_UPC",
6414   am__fastdepCC => 'AC_PROG_CC',
6415   am__fastdepCCAS => 'AM_PROG_AS',
6416   am__fastdepCXX => 'AC_PROG_CXX',
6417   am__fastdepGCJ => 'AM_PROG_GCJ',
6418   am__fastdepOBJC => 'AC_PROG_OBJC',
6419   am__fastdepUPC => 'AM_PROG_UPC'
6420   );
6421
6422 # $COND
6423 # cond_stack_if ($NEGATE, $COND, $WHERE)
6424 # --------------------------------------
6425 sub cond_stack_if ($$$)
6426 {
6427   my ($negate, $cond, $where) = @_;
6428
6429   if (! $configure_cond{$cond} && $cond !~ /^TRUE|FALSE$/)
6430     {
6431       my $text = "$cond does not appear in AM_CONDITIONAL";
6432       my $scope = US_LOCAL;
6433       if (exists $_am_macro_for_cond{$cond})
6434         {
6435           my $mac = $_am_macro_for_cond{$cond};
6436           $text .= "\n  The usual way to define `$cond' is to add ";
6437           $text .= ($mac =~ / /) ? $mac : "`$mac'";
6438           $text .= "\n  to `$configure_ac' and run `aclocal' and `autoconf' again";
6439           # These warnings appear in Automake files (depend2.am),
6440           # so there is no need to display them more than once:
6441           $scope = US_GLOBAL;
6442         }
6443       error $where, $text, uniq_scope => $scope;
6444     }
6445
6446   push (@cond_stack, make_conditional_string ($negate, $cond));
6447
6448   return new Automake::Condition (@cond_stack);
6449 }
6450
6451
6452 # $COND
6453 # cond_stack_else ($NEGATE, $COND, $WHERE)
6454 # ----------------------------------------
6455 sub cond_stack_else ($$$)
6456 {
6457   my ($negate, $cond, $where) = @_;
6458
6459   if (! @cond_stack)
6460     {
6461       error $where, "else without if";
6462       return FALSE;
6463     }
6464
6465   $cond_stack[$#cond_stack] =
6466     Automake::Condition::conditional_negate ($cond_stack[$#cond_stack]);
6467
6468   # If $COND is given, check against it.
6469   if (defined $cond)
6470     {
6471       $cond = make_conditional_string ($negate, $cond);
6472
6473       error ($where, "else reminder ($negate$cond) incompatible with "
6474              . "current conditional: $cond_stack[$#cond_stack]")
6475         if $cond_stack[$#cond_stack] ne $cond;
6476     }
6477
6478   return new Automake::Condition (@cond_stack);
6479 }
6480
6481
6482 # $COND
6483 # cond_stack_endif ($NEGATE, $COND, $WHERE)
6484 # -----------------------------------------
6485 sub cond_stack_endif ($$$)
6486 {
6487   my ($negate, $cond, $where) = @_;
6488   my $old_cond;
6489
6490   if (! @cond_stack)
6491     {
6492       error $where, "endif without if";
6493       return TRUE;
6494     }
6495
6496   # If $COND is given, check against it.
6497   if (defined $cond)
6498     {
6499       $cond = make_conditional_string ($negate, $cond);
6500
6501       error ($where, "endif reminder ($negate$cond) incompatible with "
6502              . "current conditional: $cond_stack[$#cond_stack]")
6503         if $cond_stack[$#cond_stack] ne $cond;
6504     }
6505
6506   pop @cond_stack;
6507
6508   return new Automake::Condition (@cond_stack);
6509 }
6510
6511
6512
6513
6514
6515 ## ------------------------ ##
6516 ## Handling the variables.  ##
6517 ## ------------------------ ##
6518
6519
6520 # &define_pretty_variable ($VAR, $COND, $WHERE, @VALUE)
6521 # -----------------------------------------------------
6522 # Like define_variable, but the value is a list, and the variable may
6523 # be defined conditionally.  The second argument is the condition
6524 # under which the value should be defined; this should be the empty
6525 # string to define the variable unconditionally.  The third argument
6526 # is a list holding the values to use for the variable.  The value is
6527 # pretty printed in the output file.
6528 sub define_pretty_variable ($$$@)
6529 {
6530     my ($var, $cond, $where, @value) = @_;
6531
6532     if (! vardef ($var, $cond))
6533     {
6534         Automake::Variable::define ($var, VAR_AUTOMAKE, '', $cond, "@value",
6535                                     '', $where, VAR_PRETTY);
6536         rvar ($var)->rdef ($cond)->set_seen;
6537     }
6538 }
6539
6540
6541 # define_variable ($VAR, $VALUE, $WHERE)
6542 # --------------------------------------
6543 # Define a new Automake Makefile variable VAR to VALUE, but only if
6544 # not already defined.
6545 sub define_variable ($$$)
6546 {
6547     my ($var, $value, $where) = @_;
6548     define_pretty_variable ($var, TRUE, $where, $value);
6549 }
6550
6551
6552 # define_files_variable ($VAR, \@BASENAME, $EXTENSION, $WHERE)
6553 # ------------------------------------------------------------
6554 # Define the $VAR which content is the list of file names composed of
6555 # a @BASENAME and the $EXTENSION.
6556 sub define_files_variable ($\@$$)
6557 {
6558   my ($var, $basename, $extension, $where) = @_;
6559   define_variable ($var,
6560                    join (' ', map { "$_.$extension" } @$basename),
6561                    $where);
6562 }
6563
6564
6565 # Like define_variable, but define a variable to be the configure
6566 # substitution by the same name.
6567 sub define_configure_variable ($)
6568 {
6569   my ($var) = @_;
6570
6571   my $pretty = VAR_ASIS;
6572   my $owner = VAR_CONFIGURE;
6573
6574   # Some variables we do not want to output.  For instance it
6575   # would be a bad idea to output `U = @U@` when `@U@` can be
6576   # substituted as `\`.
6577   $pretty = VAR_SILENT if exists $ignored_configure_vars{$var};
6578
6579   # ANSI2KNR is a variable that Automake wants to redefine, so
6580   # it must be owned by Automake.  (It is also used as a proof
6581   # that AM_C_PROTOTYPES has been run, that's why we do not simply
6582   # omit the AC_SUBST.)
6583   $owner = VAR_AUTOMAKE if $var eq 'ANSI2KNR';
6584
6585   Automake::Variable::define ($var, $owner, '', TRUE, subst $var,
6586                               '', $configure_vars{$var}, $pretty);
6587 }
6588
6589
6590 # define_compiler_variable ($LANG)
6591 # --------------------------------
6592 # Define a compiler variable.  We also handle defining the `LT'
6593 # version of the command when using libtool.
6594 sub define_compiler_variable ($)
6595 {
6596     my ($lang) = @_;
6597
6598     my ($var, $value) = ($lang->compiler, $lang->compile);
6599     my $libtool_tag = '';
6600     $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
6601       if $lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag};
6602     &define_variable ($var, $value, INTERNAL);
6603     if (var ('LIBTOOL'))
6604       {
6605         my $verbose = define_verbose_libtool ();
6606         &define_variable ("LT$var",
6607                           "\$(LIBTOOL) $verbose $libtool_tag\$(AM_LIBTOOLFLAGS) "
6608                           . "\$(LIBTOOLFLAGS) --mode=compile $value",
6609                           INTERNAL);
6610       }
6611     define_verbose_tagvar ($lang->ccer || 'GEN');
6612 }
6613
6614
6615 # define_linker_variable ($LANG)
6616 # ------------------------------
6617 # Define linker variables.
6618 sub define_linker_variable ($)
6619 {
6620     my ($lang) = @_;
6621
6622     my $libtool_tag = '';
6623     $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
6624       if $lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag};
6625     # CCLD = $(CC).
6626     &define_variable ($lang->lder, $lang->ld, INTERNAL);
6627     # CCLINK = $(CCLD) blah blah...
6628     my $link = '';
6629     if (var ('LIBTOOL'))
6630       {
6631         my $verbose = define_verbose_libtool ();
6632         $link = "\$(LIBTOOL) $verbose $libtool_tag\$(AM_LIBTOOLFLAGS) "
6633                 . "\$(LIBTOOLFLAGS) --mode=link ";
6634       }
6635     &define_variable ($lang->linker, $link . $lang->link, INTERNAL);
6636     &define_variable ($lang->compiler,  $lang);
6637     &define_verbose_tagvar ($lang->lder || 'GEN');
6638 }
6639
6640 sub define_per_target_linker_variable ($$)
6641 {
6642   my ($linker, $target) = @_;
6643
6644   # If the user wrote a custom link command, we don't define ours.
6645   return "${target}_LINK"
6646     if set_seen "${target}_LINK";
6647
6648   my $xlink = $linker ? $linker : 'LINK';
6649
6650   my $lang = $link_languages{$xlink};
6651   prog_error "Unknown language for linker variable `$xlink'"
6652     unless $lang;
6653
6654   my $link_command = $lang->link;
6655   if (var 'LIBTOOL')
6656     {
6657       my $libtool_tag = '';
6658       $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
6659         if $lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag};
6660
6661       my $verbose = define_verbose_libtool ();
6662       $link_command =
6663         "\$(LIBTOOL) $verbose $libtool_tag\$(AM_LIBTOOLFLAGS) \$(LIBTOOLFLAGS) "
6664         . "--mode=link " . $link_command;
6665     }
6666
6667   # Rewrite each occurrence of `AM_$flag' in the link
6668   # command into `${derived}_$flag' if it exists.
6669   my $orig_command = $link_command;
6670   my @flags = (@{$lang->flags}, 'LDFLAGS');
6671   push @flags, 'LIBTOOLFLAGS' if var 'LIBTOOL';
6672   for my $flag (@flags)
6673     {
6674       my $val = "${target}_$flag";
6675       $link_command =~ s/\(AM_$flag\)/\($val\)/
6676         if set_seen ($val);
6677     }
6678
6679   # If the computed command is the same as the generic command, use
6680   # the command linker variable.
6681   return ($lang->linker, $lang->lder)
6682     if $link_command eq $orig_command;
6683
6684   &define_variable ("${target}_LINK", $link_command, INTERNAL);
6685   return ("${target}_LINK", $lang->lder);
6686 }
6687
6688 ################################################################
6689
6690 # &check_trailing_slash ($WHERE, $LINE)
6691 # -------------------------------------
6692 # Return 1 iff $LINE ends with a slash.
6693 # Might modify $LINE.
6694 sub check_trailing_slash ($\$)
6695 {
6696   my ($where, $line) = @_;
6697
6698   # Ignore `##' lines.
6699   return 0 if $$line =~ /$IGNORE_PATTERN/o;
6700
6701   # Catch and fix a common error.
6702   msg "syntax", $where, "whitespace following trailing backslash"
6703     if $$line =~ s/\\\s+\n$/\\\n/;
6704
6705   return $$line =~ /\\$/;
6706 }
6707
6708
6709 # &read_am_file ($AMFILE, $WHERE)
6710 # -------------------------------
6711 # Read Makefile.am and set up %contents.  Simultaneously copy lines
6712 # from Makefile.am into $output_trailer, or define variables as
6713 # appropriate.  NOTE we put rules in the trailer section.  We want
6714 # user rules to come after our generated stuff.
6715 sub read_am_file ($$)
6716 {
6717     my ($amfile, $where) = @_;
6718
6719     my $am_file = new Automake::XFile ("< $amfile");
6720     verb "reading $amfile";
6721
6722     # Keep track of the youngest output dependency.
6723     my $mtime = mtime $amfile;
6724     $output_deps_greatest_timestamp = $mtime
6725       if $mtime > $output_deps_greatest_timestamp;
6726
6727     my $spacing = '';
6728     my $comment = '';
6729     my $blank = 0;
6730     my $saw_bk = 0;
6731     my $var_look = VAR_ASIS;
6732
6733     use constant IN_VAR_DEF => 0;
6734     use constant IN_RULE_DEF => 1;
6735     use constant IN_COMMENT => 2;
6736     my $prev_state = IN_RULE_DEF;
6737
6738     while ($_ = $am_file->getline)
6739     {
6740         $where->set ("$amfile:$.");
6741         if (/$IGNORE_PATTERN/o)
6742         {
6743             # Merely delete comments beginning with two hashes.
6744         }
6745         elsif (/$WHITE_PATTERN/o)
6746         {
6747             error $where, "blank line following trailing backslash"
6748               if $saw_bk;
6749             # Stick a single white line before the incoming macro or rule.
6750             $spacing = "\n";
6751             $blank = 1;
6752             # Flush all comments seen so far.
6753             if ($comment ne '')
6754             {
6755                 $output_vars .= $comment;
6756                 $comment = '';
6757             }
6758         }
6759         elsif (/$COMMENT_PATTERN/o)
6760         {
6761             # Stick comments before the incoming macro or rule.  Make
6762             # sure a blank line precedes the first block of comments.
6763             $spacing = "\n" unless $blank;
6764             $blank = 1;
6765             $comment .= $spacing . $_;
6766             $spacing = '';
6767             $prev_state = IN_COMMENT;
6768         }
6769         else
6770         {
6771             last;
6772         }
6773         $saw_bk = check_trailing_slash ($where, $_);
6774     }
6775
6776     # We save the conditional stack on entry, and then check to make
6777     # sure it is the same on exit.  This lets us conditionally include
6778     # other files.
6779     my @saved_cond_stack = @cond_stack;
6780     my $cond = new Automake::Condition (@cond_stack);
6781
6782     my $last_var_name = '';
6783     my $last_var_type = '';
6784     my $last_var_value = '';
6785     my $last_where;
6786     # FIXME: shouldn't use $_ in this loop; it is too big.
6787     while ($_)
6788     {
6789         $where->set ("$amfile:$.");
6790
6791         # Make sure the line is \n-terminated.
6792         chomp;
6793         $_ .= "\n";
6794
6795         # Don't look at MAINTAINER_MODE_TRUE here.  That shouldn't be
6796         # used by users.  @MAINT@ is an anachronism now.
6797         $_ =~ s/\@MAINT\@//g
6798             unless $seen_maint_mode;
6799
6800         my $new_saw_bk = check_trailing_slash ($where, $_);
6801
6802         if (/$IGNORE_PATTERN/o)
6803         {
6804             # Merely delete comments beginning with two hashes.
6805
6806             # Keep any backslash from the previous line.
6807             $new_saw_bk = $saw_bk;
6808         }
6809         elsif (/$WHITE_PATTERN/o)
6810         {
6811             # Stick a single white line before the incoming macro or rule.
6812             $spacing = "\n";
6813             error $where, "blank line following trailing backslash"
6814               if $saw_bk;
6815         }
6816         elsif (/$COMMENT_PATTERN/o)
6817         {
6818             error $where, "comment following trailing backslash"
6819               if $saw_bk && $prev_state != IN_COMMENT;
6820
6821             # Stick comments before the incoming macro or rule.
6822             $comment .= $spacing . $_;
6823             $spacing = '';
6824             $prev_state = IN_COMMENT;
6825         }
6826         elsif ($saw_bk)
6827         {
6828             if ($prev_state == IN_RULE_DEF)
6829             {
6830               my $cond = new Automake::Condition @cond_stack;
6831               $output_trailer .= $cond->subst_string;
6832               $output_trailer .= $_;
6833             }
6834             elsif ($prev_state == IN_COMMENT)
6835             {
6836                 # If the line doesn't start with a `#', add it.
6837                 # We do this because a continued comment like
6838                 #   # A = foo \
6839                 #         bar \
6840                 #         baz
6841                 # is not portable.  BSD make doesn't honor
6842                 # escaped newlines in comments.
6843                 s/^#?/#/;
6844                 $comment .= $spacing . $_;
6845             }
6846             else # $prev_state == IN_VAR_DEF
6847             {
6848               $last_var_value .= ' '
6849                 unless $last_var_value =~ /\s$/;
6850               $last_var_value .= $_;
6851
6852               if (!/\\$/)
6853                 {
6854                   Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
6855                                               $last_var_type, $cond,
6856                                               $last_var_value, $comment,
6857                                               $last_where, VAR_ASIS)
6858                     if $cond != FALSE;
6859                   $comment = $spacing = '';
6860                 }
6861             }
6862         }
6863
6864         elsif (/$IF_PATTERN/o)
6865           {
6866             $cond = cond_stack_if ($1, $2, $where);
6867           }
6868         elsif (/$ELSE_PATTERN/o)
6869           {
6870             $cond = cond_stack_else ($1, $2, $where);
6871           }
6872         elsif (/$ENDIF_PATTERN/o)
6873           {
6874             $cond = cond_stack_endif ($1, $2, $where);
6875           }
6876
6877         elsif (/$RULE_PATTERN/o)
6878         {
6879             # Found a rule.
6880             $prev_state = IN_RULE_DEF;
6881
6882             # For now we have to output all definitions of user rules
6883             # and can't diagnose duplicates (see the comment in
6884             # Automake::Rule::define). So we go on and ignore the return value.
6885             Automake::Rule::define ($1, $amfile, RULE_USER, $cond, $where);
6886
6887             check_variable_expansions ($_, $where);
6888
6889             $output_trailer .= $comment . $spacing;
6890             my $cond = new Automake::Condition @cond_stack;
6891             $output_trailer .= $cond->subst_string;
6892             $output_trailer .= $_;
6893             $comment = $spacing = '';
6894         }
6895         elsif (/$ASSIGNMENT_PATTERN/o)
6896         {
6897             # Found a macro definition.
6898             $prev_state = IN_VAR_DEF;
6899             $last_var_name = $1;
6900             $last_var_type = $2;
6901             $last_var_value = $3;
6902             $last_where = $where->clone;
6903             if ($3 ne '' && substr ($3, -1) eq "\\")
6904               {
6905                 # We preserve the `\' because otherwise the long lines
6906                 # that are generated will be truncated by broken
6907                 # `sed's.
6908                 $last_var_value = $3 . "\n";
6909               }
6910             # Normally we try to output variable definitions in the
6911             # same format they were input.  However, POSIX compliant
6912             # systems are not required to support lines longer than
6913             # 2048 bytes (most notably, some sed implementation are
6914             # limited to 4000 bytes, and sed is used by config.status
6915             # to rewrite Makefile.in into Makefile).  Moreover nobody
6916             # would really write such long lines by hand since it is
6917             # hardly maintainable.  So if a line is longer that 1000
6918             # bytes (an arbitrary limit), assume it has been
6919             # automatically generated by some tools, and flatten the
6920             # variable definition.  Otherwise, keep the variable as it
6921             # as been input.
6922             $var_look = VAR_PRETTY if length ($last_var_value) >= 1000;
6923
6924             if (!/\\$/)
6925               {
6926                 Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
6927                                             $last_var_type, $cond,
6928                                             $last_var_value, $comment,
6929                                             $last_where, $var_look)
6930                   if $cond != FALSE;
6931                 $comment = $spacing = '';
6932                 $var_look = VAR_ASIS;
6933               }
6934         }
6935         elsif (/$INCLUDE_PATTERN/o)
6936         {
6937             my $path = $1;
6938
6939             if ($path =~ s/^\$\(top_srcdir\)\///)
6940               {
6941                 push (@include_stack, "\$\(top_srcdir\)/$path");
6942                 # Distribute any included file.
6943
6944                 # Always use the $(top_srcdir) prefix in DIST_COMMON,
6945                 # otherwise OSF make will implicitly copy the included
6946                 # file in the build tree during `make distdir' to satisfy
6947                 # the dependency.
6948                 # (subdircond2.test and subdircond3.test will fail.)
6949                 push_dist_common ("\$\(top_srcdir\)/$path");
6950               }
6951             else
6952               {
6953                 $path =~ s/\$\(srcdir\)\///;
6954                 push (@include_stack, "\$\(srcdir\)/$path");
6955                 # Always use the $(srcdir) prefix in DIST_COMMON,
6956                 # otherwise OSF make will implicitly copy the included
6957                 # file in the build tree during `make distdir' to satisfy
6958                 # the dependency.
6959                 # (subdircond2.test and subdircond3.test will fail.)
6960                 push_dist_common ("\$\(srcdir\)/$path");
6961                 $path = $relative_dir . "/" . $path if $relative_dir ne '.';
6962               }
6963             $where->push_context ("`$path' included from here");
6964             &read_am_file ($path, $where);
6965             $where->pop_context;
6966         }
6967         else
6968         {
6969             # This isn't an error; it is probably a continued rule.
6970             # In fact, this is what we assume.
6971             $prev_state = IN_RULE_DEF;
6972             check_variable_expansions ($_, $where);
6973             $output_trailer .= $comment . $spacing;
6974             my $cond = new Automake::Condition @cond_stack;
6975             $output_trailer .= $cond->subst_string;
6976             $output_trailer .= $_;
6977             $comment = $spacing = '';
6978             error $where, "`#' comment at start of rule is unportable"
6979               if $_ =~ /^\t\s*\#/;
6980         }
6981
6982         $saw_bk = $new_saw_bk;
6983         $_ = $am_file->getline;
6984     }
6985
6986     $output_trailer .= $comment;
6987
6988     error ($where, "trailing backslash on last line")
6989       if $saw_bk;
6990
6991     error ($where, (@cond_stack ? "unterminated conditionals: @cond_stack"
6992                     : "too many conditionals closed in include file"))
6993       if "@saved_cond_stack" ne "@cond_stack";
6994 }
6995
6996
6997 # define_standard_variables ()
6998 # ----------------------------
6999 # A helper for read_main_am_file which initializes configure variables
7000 # and variables from header-vars.am.
7001 sub define_standard_variables
7002 {
7003   my $saved_output_vars = $output_vars;
7004   my ($comments, undef, $rules) =
7005     file_contents_internal (1, "$libdir/am/header-vars.am",
7006                             new Automake::Location);
7007
7008   foreach my $var (sort keys %configure_vars)
7009     {
7010       &define_configure_variable ($var);
7011     }
7012
7013   $output_vars .= $comments . $rules;
7014 }
7015
7016 # Read main am file.
7017 sub read_main_am_file
7018 {
7019     my ($amfile) = @_;
7020
7021     # This supports the strange variable tricks we are about to play.
7022     prog_error ("variable defined before read_main_am_file\n" . variables_dump ())
7023       if (scalar (variables) > 0);
7024
7025     # Generate copyright header for generated Makefile.in.
7026     # We do discard the output of predefined variables, handled below.
7027     $output_vars = ("# $in_file_name generated by automake "
7028                    . $VERSION . " from $am_file_name.\n");
7029     $output_vars .= '# ' . subst ('configure_input') . "\n";
7030     $output_vars .= $gen_copyright;
7031
7032     # We want to predefine as many variables as possible.  This lets
7033     # the user set them with `+=' in Makefile.am.
7034     &define_standard_variables;
7035
7036     # Read user file, which might override some of our values.
7037     &read_am_file ($amfile, new Automake::Location);
7038 }
7039
7040
7041
7042 ################################################################
7043
7044 # $FLATTENED
7045 # &flatten ($STRING)
7046 # ------------------
7047 # Flatten the $STRING and return the result.
7048 sub flatten
7049 {
7050   $_ = shift;
7051
7052   s/\\\n//somg;
7053   s/\s+/ /g;
7054   s/^ //;
7055   s/ $//;
7056
7057   return $_;
7058 }
7059
7060
7061 # transform_token ($TOKEN, \%PAIRS, $KEY)
7062 # =======================================
7063 # Return the value associated to $KEY in %PAIRS, as used on $TOKEN
7064 # (which should be ?KEY? or any of the special %% requests)..
7065 sub transform_token ($$$)
7066 {
7067   my ($token, $transform, $key) = @_;
7068   my $res = $transform->{$key};
7069   prog_error "Unknown key `$key' in `$token'" unless defined $res;
7070   return $res;
7071 }
7072
7073
7074 # transform ($TOKEN, \%PAIRS)
7075 # ===========================
7076 # If ($TOKEN, $VAL) is in %PAIRS:
7077 #   - replaces %KEY% with $VAL,
7078 #   - enables/disables ?KEY? and ?!KEY?,
7079 #   - replaces %?KEY% with TRUE or FALSE.
7080 #   - replaces %KEY?IFTRUE%, %KEY:IFFALSE%, and %KEY?IFTRUE:IFFALSE% with
7081 #     IFTRUE / IFFALSE, as appropriate.
7082 sub transform ($$)
7083 {
7084   my ($token, $transform) = @_;
7085
7086   # %KEY%.
7087   # Must be before the following pattern to exclude the case
7088   # when there is neither IFTRUE nor IFFALSE.
7089   if ($token =~ /^%([\w\-]+)%$/)
7090     {
7091       return transform_token ($token, $transform, $1);
7092     }
7093   # %KEY?IFTRUE%, %KEY:IFFALSE%, and %KEY?IFTRUE:IFFALSE%.
7094   elsif ($token =~ /^%([\w\-]+)(?:\?([^?:%]+))?(?::([^?:%]+))?%$/)
7095     {
7096       return transform_token ($token, $transform, $1) ? ($2 || '') : ($3 || '');
7097     }
7098   # %?KEY%.
7099   elsif ($token =~ /^%\?([\w\-]+)%$/)
7100     {
7101       return transform_token ($token, $transform, $1) ? 'TRUE' : 'FALSE';
7102     }
7103   # ?KEY? and ?!KEY?.
7104   elsif ($token =~ /^ \? (!?) ([\w\-]+) \? $/x)
7105     {
7106       my $neg = ($1 eq '!') ? 1 : 0;
7107       my $val = transform_token ($token, $transform, $2);
7108       return (!!$val == $neg) ? '##%' : '';
7109     }
7110   else
7111     {
7112       prog_error "Unknown request format: $token";
7113     }
7114 }
7115
7116
7117 # @PARAGRAPHS
7118 # &make_paragraphs ($MAKEFILE, [%TRANSFORM])
7119 # ------------------------------------------
7120 # Load a $MAKEFILE, apply the %TRANSFORM, and return it as a list of
7121 # paragraphs.
7122 sub make_paragraphs ($%)
7123 {
7124   my ($file, %transform) = @_;
7125
7126   # Complete %transform with global options.
7127   # Note that %transform goes last, so it overrides global options.
7128   %transform = ('CYGNUS'      => !! option 'cygnus',
7129                  'MAINTAINER-MODE'
7130                  => $seen_maint_mode ? subst ('MAINTAINER_MODE_TRUE') : '',
7131
7132                  'XZ'          => !! option 'dist-xz',
7133                  'LZMA'        => !! option 'dist-lzma',
7134                  'LZIP'        => !! option 'dist-lzip',
7135                  'BZIP2'       => !! option 'dist-bzip2',
7136                  'COMPRESS'    => !! option 'dist-tarZ',
7137                  'GZIP'        =>  ! option 'no-dist-gzip',
7138                  'SHAR'        => !! option 'dist-shar',
7139                  'ZIP'         => !! option 'dist-zip',
7140
7141                  'INSTALL-INFO' =>  ! option 'no-installinfo',
7142                  'INSTALL-MAN'  =>  ! option 'no-installman',
7143                  'HAVE-MANS'    => !! var ('MANS'),
7144                  'CK-NEWS'      => !! option 'check-news',
7145
7146                  'SUBDIRS'      => !! var ('SUBDIRS'),
7147                  'TOPDIR_P'     => $relative_dir eq '.',
7148
7149                  'BUILD'    => ($seen_canonical >= AC_CANONICAL_BUILD),
7150                  'HOST'     => ($seen_canonical >= AC_CANONICAL_HOST),
7151                  'TARGET'   => ($seen_canonical >= AC_CANONICAL_TARGET),
7152
7153                  'LIBTOOL'      => !! var ('LIBTOOL'),
7154                  'NONLIBTOOL'   => 1,
7155                  'FIRST'        => ! $transformed_files{$file},
7156                 %transform);
7157
7158   $transformed_files{$file} = 1;
7159   $_ = $am_file_cache{$file};
7160
7161   if (! defined $_)
7162     {
7163       verb "reading $file";
7164       # Swallow the whole file.
7165       my $fc_file = new Automake::XFile "< $file";
7166       my $saved_dollar_slash = $/;
7167       undef $/;
7168       $_ = $fc_file->getline;
7169       $/ = $saved_dollar_slash;
7170       $fc_file->close;
7171
7172       # Remove ##-comments.
7173       # Besides we don't need more than two consecutive new-lines.
7174       s/(?:$IGNORE_PATTERN|(?<=\n\n)\n+)//gom;
7175
7176       $am_file_cache{$file} = $_;
7177     }
7178
7179   # Substitute Automake template tokens.
7180   s/(?: % \?? [\w\-]+ %
7181       | % [\w\-]+ (?:\?[^?:%]+)? (?::[^?:%]+)? %
7182       | \? !? [\w\-]+ \?
7183     )/transform($&, \%transform)/gex;
7184   # transform() may have added some ##%-comments to strip.
7185   # (we use `##%' instead of `##' so we can distinguish ##%##%##% from
7186   # ####### and do not remove the latter.)
7187   s/^[ \t]*(?:##%)+.*\n//gm;
7188
7189   # Split at unescaped new lines.
7190   my @lines = split (/(?<!\\)\n/, $_);
7191   my @res;
7192
7193   while (defined ($_ = shift @lines))
7194     {
7195       my $paragraph = $_;
7196       # If we are a rule, eat as long as we start with a tab.
7197       if (/$RULE_PATTERN/smo)
7198         {
7199           while (defined ($_ = shift @lines) && $_ =~ /^\t/)
7200             {
7201               $paragraph .= "\n$_";
7202             }
7203           unshift (@lines, $_);
7204         }
7205
7206       # If we are a comments, eat as much comments as you can.
7207       elsif (/$COMMENT_PATTERN/smo)
7208         {
7209           while (defined ($_ = shift @lines)
7210                  && $_ =~ /$COMMENT_PATTERN/smo)
7211             {
7212               $paragraph .= "\n$_";
7213             }
7214           unshift (@lines, $_);
7215         }
7216
7217       push @res, $paragraph;
7218     }
7219
7220   return @res;
7221 }
7222
7223
7224
7225 # ($COMMENT, $VARIABLES, $RULES)
7226 # &file_contents_internal ($IS_AM, $FILE, $WHERE, [%TRANSFORM])
7227 # -------------------------------------------------------------
7228 # Return contents of a file from $libdir/am, automatically skipping
7229 # macros or rules which are already known. $IS_AM iff the caller is
7230 # reading an Automake file (as opposed to the user's Makefile.am).
7231 sub file_contents_internal ($$$%)
7232 {
7233     my ($is_am, $file, $where, %transform) = @_;
7234
7235     $where->set ($file);
7236
7237     my $result_vars = '';
7238     my $result_rules = '';
7239     my $comment = '';
7240     my $spacing = '';
7241
7242     # The following flags are used to track rules spanning across
7243     # multiple paragraphs.
7244     my $is_rule = 0;            # 1 if we are processing a rule.
7245     my $discard_rule = 0;       # 1 if the current rule should not be output.
7246
7247     # We save the conditional stack on entry, and then check to make
7248     # sure it is the same on exit.  This lets us conditionally include
7249     # other files.
7250     my @saved_cond_stack = @cond_stack;
7251     my $cond = new Automake::Condition (@cond_stack);
7252
7253     foreach (make_paragraphs ($file, %transform))
7254     {
7255         # FIXME: no line number available.
7256         $where->set ($file);
7257
7258         # Sanity checks.
7259         error $where, "blank line following trailing backslash:\n$_"
7260           if /\\$/;
7261         error $where, "comment following trailing backslash:\n$_"
7262           if /\\#/;
7263
7264         if (/^$/)
7265         {
7266             $is_rule = 0;
7267             # Stick empty line before the incoming macro or rule.
7268             $spacing = "\n";
7269         }
7270         elsif (/$COMMENT_PATTERN/mso)
7271         {
7272             $is_rule = 0;
7273             # Stick comments before the incoming macro or rule.
7274             $comment = "$_\n";
7275         }
7276
7277         # Handle inclusion of other files.
7278         elsif (/$INCLUDE_PATTERN/o)
7279         {
7280             if ($cond != FALSE)
7281               {
7282                 my $file = ($is_am ? "$libdir/am/" : '') . $1;
7283                 $where->push_context ("`$file' included from here");
7284                 # N-ary `.=' fails.
7285                 my ($com, $vars, $rules)
7286                   = file_contents_internal ($is_am, $file, $where, %transform);
7287                 $where->pop_context;
7288                 $comment .= $com;
7289                 $result_vars .= $vars;
7290                 $result_rules .= $rules;
7291               }
7292         }
7293
7294         # Handling the conditionals.
7295         elsif (/$IF_PATTERN/o)
7296           {
7297             $cond = cond_stack_if ($1, $2, $file);
7298           }
7299         elsif (/$ELSE_PATTERN/o)
7300           {
7301             $cond = cond_stack_else ($1, $2, $file);
7302           }
7303         elsif (/$ENDIF_PATTERN/o)
7304           {
7305             $cond = cond_stack_endif ($1, $2, $file);
7306           }
7307
7308         # Handling rules.
7309         elsif (/$RULE_PATTERN/mso)
7310         {
7311           $is_rule = 1;
7312           $discard_rule = 0;
7313           # Separate relationship from optional actions: the first
7314           # `new-line tab" not preceded by backslash (continuation
7315           # line).
7316           my $paragraph = $_;
7317           /^(.*?)(?:(?<!\\)\n(\t.*))?$/s;
7318           my ($relationship, $actions) = ($1, $2 || '');
7319
7320           # Separate targets from dependencies: the first colon.
7321           $relationship =~ /^([^:]+\S+) *: *(.*)$/som;
7322           my ($targets, $dependencies) = ($1, $2);
7323           # Remove the escaped new lines.
7324           # I don't know why, but I have to use a tmp $flat_deps.
7325           my $flat_deps = &flatten ($dependencies);
7326           my @deps = split (' ', $flat_deps);
7327
7328           foreach (split (' ', $targets))
7329             {
7330               # FIXME: 1. We are not robust to people defining several targets
7331               # at once, only some of them being in %dependencies.  The
7332               # actions from the targets in %dependencies are usually generated
7333               # from the content of %actions, but if some targets in $targets
7334               # are not in %dependencies the ELSE branch will output
7335               # a rule for all $targets (i.e. the targets which are both
7336               # in %dependencies and $targets will have two rules).
7337
7338               # FIXME: 2. The logic here is not able to output a
7339               # multi-paragraph rule several time (e.g. for each condition
7340               # it is defined for) because it only knows the first paragraph.
7341
7342               # FIXME: 3. We are not robust to people defining a subset
7343               # of a previously defined "multiple-target" rule.  E.g.
7344               # `foo:' after `foo bar:'.
7345
7346               # Output only if not in FALSE.
7347               if (defined $dependencies{$_} && $cond != FALSE)
7348                 {
7349                   &depend ($_, @deps);
7350                   register_action ($_, $actions);
7351                 }
7352               else
7353                 {
7354                   # Free-lance dependency.  Output the rule for all the
7355                   # targets instead of one by one.
7356                   my @undefined_conds =
7357                     Automake::Rule::define ($targets, $file,
7358                                             $is_am ? RULE_AUTOMAKE : RULE_USER,
7359                                             $cond, $where);
7360                   for my $undefined_cond (@undefined_conds)
7361                     {
7362                       my $condparagraph = $paragraph;
7363                       $condparagraph =~ s/^/$undefined_cond->subst_string/gme;
7364                       $result_rules .= "$spacing$comment$condparagraph\n";
7365                     }
7366                   if (scalar @undefined_conds == 0)
7367                     {
7368                       # Remember to discard next paragraphs
7369                       # if they belong to this rule.
7370                       # (but see also FIXME: #2 above.)
7371                       $discard_rule = 1;
7372                     }
7373                   $comment = $spacing = '';
7374                   last;
7375                 }
7376             }
7377         }
7378
7379         elsif (/$ASSIGNMENT_PATTERN/mso)
7380         {
7381             my ($var, $type, $val) = ($1, $2, $3);
7382             error $where, "variable `$var' with trailing backslash"
7383               if /\\$/;
7384
7385             $is_rule = 0;
7386
7387             Automake::Variable::define ($var,
7388                                         $is_am ? VAR_AUTOMAKE : VAR_MAKEFILE,
7389                                         $type, $cond, $val, $comment, $where,
7390                                         VAR_ASIS)
7391               if $cond != FALSE;
7392
7393             $comment = $spacing = '';
7394         }
7395         else
7396         {
7397             # This isn't an error; it is probably some tokens which
7398             # configure is supposed to replace, such as `@SET-MAKE@',
7399             # or some part of a rule cut by an if/endif.
7400             if (! $cond->false && ! ($is_rule && $discard_rule))
7401               {
7402                 s/^/$cond->subst_string/gme;
7403                 $result_rules .= "$spacing$comment$_\n";
7404               }
7405             $comment = $spacing = '';
7406         }
7407     }
7408
7409     error ($where, @cond_stack ?
7410            "unterminated conditionals: @cond_stack" :
7411            "too many conditionals closed in include file")
7412       if "@saved_cond_stack" ne "@cond_stack";
7413
7414     return ($comment, $result_vars, $result_rules);
7415 }
7416
7417
7418 # $CONTENTS
7419 # &file_contents ($BASENAME, $WHERE, [%TRANSFORM])
7420 # ------------------------------------------------
7421 # Return contents of a file from $libdir/am, automatically skipping
7422 # macros or rules which are already known.
7423 sub file_contents ($$%)
7424 {
7425     my ($basename, $where, %transform) = @_;
7426     my ($comments, $variables, $rules) =
7427       file_contents_internal (1, "$libdir/am/$basename.am", $where,
7428                               %transform);
7429     return "$comments$variables$rules";
7430 }
7431
7432
7433 # @PREFIX
7434 # &am_primary_prefixes ($PRIMARY, $CAN_DIST, @PREFIXES)
7435 # -----------------------------------------------------
7436 # Find all variable prefixes that are used for install directories.  A
7437 # prefix `zar' qualifies iff:
7438 #
7439 # * `zardir' is a variable.
7440 # * `zar_PRIMARY' is a variable.
7441 #
7442 # As a side effect, it looks for misspellings.  It is an error to have
7443 # a variable ending in a "reserved" suffix whose prefix is unknown, e.g.
7444 # "bni_PROGRAMS".  However, unusual prefixes are allowed if a variable
7445 # of the same name (with "dir" appended) exists.  For instance, if the
7446 # variable "zardir" is defined, then "zar_PROGRAMS" becomes valid.
7447 # This is to provide a little extra flexibility in those cases which
7448 # need it.
7449 sub am_primary_prefixes ($$@)
7450 {
7451   my ($primary, $can_dist, @prefixes) = @_;
7452
7453   local $_;
7454   my %valid = map { $_ => 0 } @prefixes;
7455   $valid{'EXTRA'} = 0;
7456   foreach my $var (variables $primary)
7457     {
7458       # Automake is allowed to define variables that look like primaries
7459       # but which aren't.  E.g. INSTALL_sh_DATA.
7460       # Autoconf can also define variables like INSTALL_DATA, so
7461       # ignore all configure variables (at least those which are not
7462       # redefined in Makefile.am).
7463       # FIXME: We should make sure that these variables are not
7464       # conditionally defined (or else adjust the condition below).
7465       my $def = $var->def (TRUE);
7466       next if $def && $def->owner != VAR_MAKEFILE;
7467
7468       my $varname = $var->name;
7469
7470       if ($varname =~ /^(nobase_)?(dist_|nodist_)?(.*)_[[:alnum:]]+$/)
7471         {
7472           my ($base, $dist, $X) = ($1 || '', $2 || '', $3 || '');
7473           if ($dist ne '' && ! $can_dist)
7474             {
7475               err_var ($var,
7476                        "invalid variable `$varname': `dist' is forbidden");
7477             }
7478           # Standard directories must be explicitly allowed.
7479           elsif (! defined $valid{$X} && exists $standard_prefix{$X})
7480             {
7481               err_var ($var,
7482                        "`${X}dir' is not a legitimate directory " .
7483                        "for `$primary'");
7484             }
7485           # A not explicitly valid directory is allowed if Xdir is defined.
7486           elsif (! defined $valid{$X} &&
7487                  $var->requires_variables ("`$varname' is used", "${X}dir"))
7488             {
7489               # Nothing to do.  Any error message has been output
7490               # by $var->requires_variables.
7491             }
7492           else
7493             {
7494               # Ensure all extended prefixes are actually used.
7495               $valid{"$base$dist$X"} = 1;
7496             }
7497         }
7498       else
7499         {
7500           prog_error "unexpected variable name: $varname";
7501         }
7502     }
7503
7504   # Return only those which are actually defined.
7505   return sort grep { var ($_ . '_' . $primary) } keys %valid;
7506 }
7507
7508
7509 # Handle `where_HOW' variable magic.  Does all lookups, generates
7510 # install code, and possibly generates code to define the primary
7511 # variable.  The first argument is the name of the .am file to munge,
7512 # the second argument is the primary variable (e.g. HEADERS), and all
7513 # subsequent arguments are possible installation locations.
7514 #
7515 # Returns list of [$location, $value] pairs, where
7516 # $value's are the values in all where_HOW variable, and $location
7517 # there associated location (the place here their parent variables were
7518 # defined).
7519 #
7520 # FIXME: this should be rewritten to be cleaner.  It should be broken
7521 # up into multiple functions.
7522 #
7523 # Usage is: am_install_var (OPTION..., file, HOW, where...)
7524 sub am_install_var
7525 {
7526   my (@args) = @_;
7527
7528   my $do_require = 1;
7529   my $can_dist = 0;
7530   my $default_dist = 0;
7531   while (@args)
7532     {
7533       if ($args[0] eq '-noextra')
7534         {
7535           $do_require = 0;
7536         }
7537       elsif ($args[0] eq '-candist')
7538         {
7539           $can_dist = 1;
7540         }
7541       elsif ($args[0] eq '-defaultdist')
7542         {
7543           $default_dist = 1;
7544           $can_dist = 1;
7545         }
7546       elsif ($args[0] !~ /^-/)
7547         {
7548           last;
7549         }
7550       shift (@args);
7551     }
7552
7553   my ($file, $primary, @prefix) = @args;
7554
7555   # Now that configure substitutions are allowed in where_HOW
7556   # variables, it is an error to actually define the primary.  We
7557   # allow `JAVA', as it is customarily used to mean the Java
7558   # interpreter.  This is but one of several Java hacks.  Similarly,
7559   # `PYTHON' is customarily used to mean the Python interpreter.
7560   reject_var $primary, "`$primary' is an anachronism"
7561     unless $primary eq 'JAVA' || $primary eq 'PYTHON';
7562
7563   # Get the prefixes which are valid and actually used.
7564   @prefix = am_primary_prefixes ($primary, $can_dist, @prefix);
7565
7566   # If a primary includes a configure substitution, then the EXTRA_
7567   # form is required.  Otherwise we can't properly do our job.
7568   my $require_extra;
7569
7570   my @used = ();
7571   my @result = ();
7572
7573   foreach my $X (@prefix)
7574     {
7575       my $nodir_name = $X;
7576       my $one_name = $X . '_' . $primary;
7577       my $one_var = var $one_name;
7578
7579       my $strip_subdir = 1;
7580       # If subdir prefix should be preserved, do so.
7581       if ($nodir_name =~ /^nobase_/)
7582         {
7583           $strip_subdir = 0;
7584           $nodir_name =~ s/^nobase_//;
7585         }
7586
7587       # If files should be distributed, do so.
7588       my $dist_p = 0;
7589       if ($can_dist)
7590         {
7591           $dist_p = (($default_dist && $nodir_name !~ /^nodist_/)
7592                      || (! $default_dist && $nodir_name =~ /^dist_/));
7593           $nodir_name =~ s/^(dist|nodist)_//;
7594         }
7595
7596
7597       # Use the location of the currently processed variable.
7598       # We are not processing a particular condition, so pick the first
7599       # available.
7600       my $tmpcond = $one_var->conditions->one_cond;
7601       my $where = $one_var->rdef ($tmpcond)->location->clone;
7602
7603       # Append actual contents of where_PRIMARY variable to
7604       # @result, skipping @substitutions@.
7605       foreach my $locvals ($one_var->value_as_list_recursive (location => 1))
7606         {
7607           my ($loc, $value) = @$locvals;
7608           # Skip configure substitutions.
7609           if ($value =~ /^\@.*\@$/)
7610             {
7611               if ($nodir_name eq 'EXTRA')
7612                 {
7613                   error ($where,
7614                          "`$one_name' contains configure substitution, "
7615                          . "but shouldn't");
7616                 }
7617               # Check here to make sure variables defined in
7618               # configure.ac do not imply that EXTRA_PRIMARY
7619               # must be defined.
7620               elsif (! defined $configure_vars{$one_name})
7621                 {
7622                   $require_extra = $one_name
7623                     if $do_require;
7624                 }
7625             }
7626           else
7627             {
7628               # Strip any $(EXEEXT) suffix the user might have added, or this
7629               # will confuse &handle_source_transform and &check_canonical_spelling.
7630               # We'll add $(EXEEXT) back later anyway.
7631               # Do it here rather than in handle_programs so the uniquifying at the
7632               # end of this function works.
7633               ${$locvals}[1] =~ s/\$\(EXEEXT\)$//
7634                 if $primary eq 'PROGRAMS';
7635
7636               push (@result, $locvals);
7637             }
7638         }
7639       # A blatant hack: we rewrite each _PROGRAMS primary to include
7640       # EXEEXT.
7641       append_exeext { 1 } $one_name
7642         if $primary eq 'PROGRAMS';
7643       # "EXTRA" shouldn't be used when generating clean targets,
7644       # all, or install targets.  We used to warn if EXTRA_FOO was
7645       # defined uselessly, but this was annoying.
7646       next
7647         if $nodir_name eq 'EXTRA';
7648
7649       if ($nodir_name eq 'check')
7650         {
7651           push (@check, '$(' . $one_name . ')');
7652         }
7653       else
7654         {
7655           push (@used, '$(' . $one_name . ')');
7656         }
7657
7658       # Is this to be installed?
7659       my $install_p = $nodir_name ne 'noinst' && $nodir_name ne 'check';
7660
7661       # If so, with install-exec? (or install-data?).
7662       my $exec_p = ($nodir_name =~ /$EXEC_DIR_PATTERN/o);
7663
7664       my $check_options_p = $install_p && !! option 'std-options';
7665
7666       # Use the location of the currently processed variable as context.
7667       $where->push_context ("while processing `$one_name'");
7668
7669       # The variable containing all files to distribute.
7670       my $distvar = "\$($one_name)";
7671       $distvar = shadow_unconditionally ($one_name, $where)
7672         if ($dist_p && $one_var->has_conditional_contents);
7673
7674       # Singular form of $PRIMARY.
7675       (my $one_primary = $primary) =~ s/S$//;
7676       $output_rules .= &file_contents ($file, $where,
7677                                        PRIMARY     => $primary,
7678                                        ONE_PRIMARY => $one_primary,
7679                                        DIR         => $X,
7680                                        NDIR        => $nodir_name,
7681                                        BASE        => $strip_subdir,
7682
7683                                        EXEC      => $exec_p,
7684                                        INSTALL   => $install_p,
7685                                        DIST      => $dist_p,
7686                                        DISTVAR   => $distvar,
7687                                        'CK-OPTS' => $check_options_p);
7688     }
7689
7690   # The JAVA variable is used as the name of the Java interpreter.
7691   # The PYTHON variable is used as the name of the Python interpreter.
7692   if (@used && $primary ne 'JAVA' && $primary ne 'PYTHON')
7693     {
7694       # Define it.
7695       define_pretty_variable ($primary, TRUE, INTERNAL, @used);
7696       $output_vars .= "\n";
7697     }
7698
7699   err_var ($require_extra,
7700            "`$require_extra' contains configure substitution,\n"
7701            . "but `EXTRA_$primary' not defined")
7702     if ($require_extra && ! var ('EXTRA_' . $primary));
7703
7704   # Push here because PRIMARY might be configure time determined.
7705   push (@all, '$(' . $primary . ')')
7706     if @used && $primary ne 'JAVA' && $primary ne 'PYTHON';
7707
7708   # Make the result unique.  This lets the user use conditionals in
7709   # a natural way, but still lets us program lazily -- we don't have
7710   # to worry about handling a particular object more than once.
7711   # We will keep only one location per object.
7712   my %result = ();
7713   for my $pair (@result)
7714     {
7715       my ($loc, $val) = @$pair;
7716       $result{$val} = $loc;
7717     }
7718   my @l = sort keys %result;
7719   return map { [$result{$_}->clone, $_] } @l;
7720 }
7721
7722
7723 ################################################################
7724
7725 # Each key in this hash is the name of a directory holding a
7726 # Makefile.in.  These variables are local to `is_make_dir'.
7727 my %make_dirs = ();
7728 my $make_dirs_set = 0;
7729
7730 sub is_make_dir
7731 {
7732     my ($dir) = @_;
7733     if (! $make_dirs_set)
7734     {
7735         foreach my $iter (@configure_input_files)
7736         {
7737             $make_dirs{dirname ($iter)} = 1;
7738         }
7739         # We also want to notice Makefile.in's.
7740         foreach my $iter (@other_input_files)
7741         {
7742             if ($iter =~ /Makefile\.in$/)
7743             {
7744                 $make_dirs{dirname ($iter)} = 1;
7745             }
7746         }
7747         $make_dirs_set = 1;
7748     }
7749     return defined $make_dirs{$dir};
7750 }
7751
7752 ################################################################
7753
7754 # Find the aux dir.  This should match the algorithm used by
7755 # ./configure. (See the Autoconf documentation for for
7756 # AC_CONFIG_AUX_DIR.)
7757 sub locate_aux_dir ()
7758 {
7759   if (! $config_aux_dir_set_in_configure_ac)
7760     {
7761       # The default auxiliary directory is the first
7762       # of ., .., or ../.. that contains install-sh.
7763       # Assume . if install-sh doesn't exist yet.
7764       for my $dir (qw (. .. ../..))
7765         {
7766           if (-f "$dir/install-sh")
7767             {
7768               $config_aux_dir = $dir;
7769               last;
7770             }
7771         }
7772       $config_aux_dir = '.' unless $config_aux_dir;
7773     }
7774   # Avoid unsightly '/.'s.
7775   $am_config_aux_dir =
7776     '$(top_srcdir)' . ($config_aux_dir eq '.' ? "" : "/$config_aux_dir");
7777   $am_config_aux_dir =~ s,/*$,,;
7778 }
7779
7780
7781 # &maybe_push_required_file ($DIR, $FILE, $FULLFILE)
7782 # --------------------------------------------------
7783 # See if we want to push this file onto dist_common.  This function
7784 # encodes the rules for deciding when to do so.
7785 sub maybe_push_required_file
7786 {
7787   my ($dir, $file, $fullfile) = @_;
7788
7789   if ($dir eq $relative_dir)
7790     {
7791       push_dist_common ($file);
7792       return 1;
7793     }
7794   elsif ($relative_dir eq '.' && ! &is_make_dir ($dir))
7795     {
7796       # If we are doing the topmost directory, and the file is in a
7797       # subdir which does not have a Makefile, then we distribute it
7798       # here.
7799
7800       # If a required file is above the source tree, it is important
7801       # to prefix it with `$(srcdir)' so that no VPATH search is
7802       # performed.  Otherwise problems occur with Make implementations
7803       # that rewrite and simplify rules whose dependencies are found in a
7804       # VPATH location.  Here is an example with OSF1/Tru64 Make.
7805       #
7806       #   % cat Makefile
7807       #   VPATH = sub
7808       #   distdir: ../a
7809       #           echo ../a
7810       #   % ls
7811       #   Makefile a
7812       #   % make
7813       #   echo a
7814       #   a
7815       #
7816       # Dependency `../a' was found in `sub/../a', but this make
7817       # implementation simplified it as `a'.  (Note that the sub/
7818       # directory does not even exist.)
7819       #
7820       # This kind of VPATH rewriting seems hard to cancel.  The
7821       # distdir.am hack against VPATH rewriting works only when no
7822       # simplification is done, i.e., for dependencies which are in
7823       # subdirectories, not in enclosing directories.  Hence, in
7824       # the latter case we use a full path to make sure no VPATH
7825       # search occurs.
7826       $fullfile = '$(srcdir)/' . $fullfile
7827         if $dir =~ m,^\.\.(?:$|/),;
7828
7829       push_dist_common ($fullfile);
7830       return 1;
7831     }
7832   return 0;
7833 }
7834
7835
7836 # If a file name appears as a key in this hash, then it has already
7837 # been checked for.  This allows us not to report the same error more
7838 # than once.
7839 my %required_file_not_found = ();
7840
7841 # &require_file_internal ($WHERE, $MYSTRICT, $DIRECTORY, @FILES)
7842 # --------------------------------------------------------------
7843 # Verify that the file must exist in $DIRECTORY, or install it.
7844 # $MYSTRICT is the strictness level at which this file becomes required.
7845 sub require_file_internal ($$$@)
7846 {
7847   my ($where, $mystrict, $dir, @files) = @_;
7848
7849   foreach my $file (@files)
7850     {
7851       my $fullfile = "$dir/$file";
7852       my $found_it = 0;
7853       my $dangling_sym = 0;
7854
7855       if (-l $fullfile && ! -f $fullfile)
7856         {
7857           $dangling_sym = 1;
7858         }
7859       elsif (dir_has_case_matching_file ($dir, $file))
7860         {
7861           $found_it = 1;
7862           maybe_push_required_file ($dir, $file, $fullfile);
7863         }
7864
7865       # `--force-missing' only has an effect if `--add-missing' is
7866       # specified.
7867       if ($found_it && (! $add_missing || ! $force_missing))
7868         {
7869           next;
7870         }
7871       else
7872         {
7873           # If we've already looked for it, we're done.  You might
7874           # wonder why we don't do this before searching for the
7875           # file.  If we do that, then something like
7876           # AC_OUTPUT(subdir/foo foo) will fail to put foo.in into
7877           # DIST_COMMON.
7878           if (! $found_it)
7879             {
7880               next if defined $required_file_not_found{$fullfile};
7881               $required_file_not_found{$fullfile} = 1;
7882             }
7883
7884           if ($strictness >= $mystrict)
7885             {
7886               if ($dangling_sym && $add_missing)
7887                 {
7888                   unlink ($fullfile);
7889                 }
7890
7891               my $trailer = '';
7892               my $trailer2 = '';
7893               my $suppress = 0;
7894
7895               # Only install missing files according to our desired
7896               # strictness level.
7897               my $message = "required file `$fullfile' not found";
7898               if ($add_missing)
7899                 {
7900                   if (-f "$libdir/$file")
7901                     {
7902                       $suppress = 1;
7903
7904                       # Install the missing file.  Symlink if we
7905                       # can, copy if we must.  Note: delete the file
7906                       # first, in case it is a dangling symlink.
7907                       $message = "installing `$fullfile'";
7908
7909                       # The license file should not be volatile.
7910                       if ($file eq "COPYING")
7911                         {
7912                           $message .= " using GNU General Public License v3 file";
7913                           $trailer2 = "\n    Consider adding the COPYING file"
7914                                     . " to the version control system"
7915                                     . "\n    for your code, to avoid questions"
7916                                     . " about which license your project uses";
7917                         }
7918
7919                       # Windows Perl will hang if we try to delete a
7920                       # file that doesn't exist.
7921                       unlink ($fullfile) if -f $fullfile;
7922                       if ($symlink_exists && ! $copy_missing)
7923                         {
7924                           if (! symlink ("$libdir/$file", $fullfile)
7925                               || ! -e $fullfile)
7926                             {
7927                               $suppress = 0;
7928                               $trailer = "; error while making link: $!";
7929                             }
7930                         }
7931                       elsif (system ('cp', "$libdir/$file", $fullfile))
7932                         {
7933                           $suppress = 0;
7934                           $trailer = "\n    error while copying";
7935                         }
7936                       set_dir_cache_file ($dir, $file);
7937                     }
7938
7939                   if (! maybe_push_required_file (dirname ($fullfile),
7940                                                   $file, $fullfile))
7941                     {
7942                       if (! $found_it && ! $automake_will_process_aux_dir)
7943                         {
7944                           # We have added the file but could not push it
7945                           # into DIST_COMMON, probably because this is
7946                           # an auxiliary file and we are not processing
7947                           # the top level Makefile.  Furthermore Automake
7948                           # hasn't been asked to create the Makefile.in
7949                           # that distributes the aux dir files.
7950                           error ($where, 'please rerun automake without '
7951                                  . "Makefile arguments\n"
7952                                  . "so $fullfile gets distributed");
7953                         }
7954                     }
7955                 }
7956               else
7957                 {
7958                   $trailer = "\n  `automake --add-missing' can install `$file'"
7959                     if -f "$libdir/$file";
7960                 }
7961
7962               # If --force-missing was specified, and we have
7963               # actually found the file, then do nothing.
7964               next
7965                 if $found_it && $force_missing;
7966
7967               # If we couldn't install the file, but it is a target in
7968               # the Makefile, don't print anything.  This allows files
7969               # like README, AUTHORS, or THANKS to be generated.
7970               next
7971                 if !$suppress && rule $file;
7972
7973               msg ($suppress ? 'note' : 'error', $where, "$message$trailer$trailer2");
7974             }
7975         }
7976     }
7977 }
7978
7979 # &require_file ($WHERE, $MYSTRICT, @FILES)
7980 # -----------------------------------------
7981 sub require_file ($$@)
7982 {
7983     my ($where, $mystrict, @files) = @_;
7984     require_file_internal ($where, $mystrict, $relative_dir, @files);
7985 }
7986
7987 # &require_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
7988 # -----------------------------------------------------------
7989 sub require_file_with_macro ($$$@)
7990 {
7991     my ($cond, $macro, $mystrict, @files) = @_;
7992     $macro = rvar ($macro) unless ref $macro;
7993     require_file ($macro->rdef ($cond)->location, $mystrict, @files);
7994 }
7995
7996 # &require_libsource_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
7997 # ----------------------------------------------------------------
7998 # Require an AC_LIBSOURCEd file.  If AC_CONFIG_LIBOBJ_DIR was called, it
7999 # must be in that directory.  Otherwise expect it in the current directory.
8000 sub require_libsource_with_macro ($$$@)
8001 {
8002     my ($cond, $macro, $mystrict, @files) = @_;
8003     $macro = rvar ($macro) unless ref $macro;
8004     if ($config_libobj_dir)
8005       {
8006         require_file_internal ($macro->rdef ($cond)->location, $mystrict,
8007                                $config_libobj_dir, @files);
8008       }
8009     else
8010       {
8011         require_file ($macro->rdef ($cond)->location, $mystrict, @files);
8012       }
8013 }
8014
8015 # Queue to push require_conf_file requirements to.
8016 my $required_conf_file_queue;
8017
8018 # &queue_required_conf_file ($QUEUE, $KEY, $DIR, $WHERE, $MYSTRICT, @FILES)
8019 # -------------------------------------------------------------------------
8020 sub queue_required_conf_file ($$$$@)
8021 {
8022     my ($queue, $key, $dir, $where, $mystrict, @files) = @_;
8023     my @serial_loc;
8024     if (ref $where)
8025       {
8026         @serial_loc = (QUEUE_LOCATION, $where->serialize ());
8027       }
8028     else
8029       {
8030         @serial_loc = (QUEUE_STRING, $where);
8031       }
8032     $queue->enqueue ($key, $dir, @serial_loc, $mystrict, 0 + @files, @files);
8033 }
8034
8035 # &require_queued_conf_file ($QUEUE)
8036 # ----------------------------------
8037 sub require_queued_conf_file ($)
8038 {
8039     my ($queue) = @_;
8040     my $where;
8041     my $dir = $queue->dequeue ();
8042     my $loc_key = $queue->dequeue ();
8043     if ($loc_key eq QUEUE_LOCATION)
8044       {
8045         $where = Automake::Location::deserialize ($queue);
8046       }
8047     elsif ($loc_key eq QUEUE_STRING)
8048       {
8049         $where = $queue->dequeue ();
8050       }
8051     else
8052       {
8053         prog_error "unexpected key $loc_key";
8054       }
8055     my $mystrict = $queue->dequeue ();
8056     my $nfiles = $queue->dequeue ();
8057     my @files;
8058     push @files, $queue->dequeue ()
8059       foreach (1 .. $nfiles);
8060
8061     # Dequeuing happens outside of per-makefile context, so we have to
8062     # set the variables used by require_file_internal and the functions
8063     # it calls.  Gross!
8064     $relative_dir = $dir;
8065     require_file_internal ($where, $mystrict, $config_aux_dir, @files);
8066 }
8067
8068 # &require_conf_file ($WHERE, $MYSTRICT, @FILES)
8069 # ----------------------------------------------
8070 # Looks in configuration path, as specified by AC_CONFIG_AUX_DIR;
8071 # worker threads may queue up the action to be serialized by the master.
8072 #
8073 # FIXME: this seriously relies on the semantics of require_file_internal
8074 # and maybe_push_required_file, in that we exploit the fact that only the
8075 # contents of the last handled output file may be impacted (which in turn
8076 # is dealt with by the master thread).
8077 sub require_conf_file ($$@)
8078 {
8079     my ($where, $mystrict, @files) = @_;
8080     if (defined $required_conf_file_queue)
8081       {
8082         queue_required_conf_file ($required_conf_file_queue, QUEUE_CONF_FILE,
8083                                   $relative_dir, $where, $mystrict, @files);
8084       }
8085     else
8086       {
8087         require_file_internal ($where, $mystrict, $config_aux_dir, @files);
8088       }
8089 }
8090
8091
8092 # &require_conf_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
8093 # ----------------------------------------------------------------
8094 sub require_conf_file_with_macro ($$$@)
8095 {
8096     my ($cond, $macro, $mystrict, @files) = @_;
8097     require_conf_file (rvar ($macro)->rdef ($cond)->location,
8098                        $mystrict, @files);
8099 }
8100
8101 ################################################################
8102
8103 # &require_build_directory ($DIRECTORY)
8104 # -------------------------------------
8105 # Emit rules to create $DIRECTORY if needed, and return
8106 # the file that any target requiring this directory should be made
8107 # dependent upon.
8108 # We don't want to emit the rule twice, and want to reuse it
8109 # for directories with equivalent names (e.g., `foo/bar' and `./foo//bar').
8110 sub require_build_directory ($)
8111 {
8112   my $directory = shift;
8113
8114   return $directory_map{$directory} if exists $directory_map{$directory};
8115
8116   my $cdir = File::Spec->canonpath ($directory);
8117
8118   if (exists $directory_map{$cdir})
8119     {
8120       my $stamp = $directory_map{$cdir};
8121       $directory_map{$directory} = $stamp;
8122       return $stamp;
8123     }
8124
8125   my $dirstamp = "$cdir/\$(am__dirstamp)";
8126
8127   $directory_map{$directory} = $dirstamp;
8128   $directory_map{$cdir} = $dirstamp;
8129
8130   # Set a variable for the dirstamp basename.
8131   define_pretty_variable ('am__dirstamp', TRUE, INTERNAL,
8132                           '$(am__leading_dot)dirstamp');
8133
8134   # Directory must be removed by `make distclean'.
8135   $clean_files{$dirstamp} = DIST_CLEAN;
8136
8137   $output_rules .= ("$dirstamp:\n"
8138                     . "\t\@\$(MKDIR_P) $directory\n"
8139                     . "\t\@: > $dirstamp\n");
8140
8141   return $dirstamp;
8142 }
8143
8144 # &require_build_directory_maybe ($FILE)
8145 # --------------------------------------
8146 # If $FILE lies in a subdirectory, emit a rule to create this
8147 # directory and return the file that $FILE should be made
8148 # dependent upon.  Otherwise, just return the empty string.
8149 sub require_build_directory_maybe ($)
8150 {
8151     my $file = shift;
8152     my $directory = dirname ($file);
8153
8154     if ($directory ne '.')
8155     {
8156         return require_build_directory ($directory);
8157     }
8158     else
8159     {
8160         return '';
8161     }
8162 }
8163
8164 ################################################################
8165
8166 # Push a list of files onto dist_common.
8167 sub push_dist_common
8168 {
8169   prog_error "push_dist_common run after handle_dist"
8170     if $handle_dist_run;
8171   Automake::Variable::define ('DIST_COMMON', VAR_AUTOMAKE, '+', TRUE, "@_",
8172                               '', INTERNAL, VAR_PRETTY);
8173 }
8174
8175
8176 ################################################################
8177
8178 # generate_makefile ($MAKEFILE_AM, $MAKEFILE_IN)
8179 # ----------------------------------------------
8180 # Generate a Makefile.in given the name of the corresponding Makefile and
8181 # the name of the file output by config.status.
8182 sub generate_makefile ($$)
8183 {
8184   my ($makefile_am, $makefile_in) = @_;
8185
8186   # Reset all the Makefile.am related variables.
8187   initialize_per_input;
8188
8189   # AUTOMAKE_OPTIONS can contains -W flags to disable or enable
8190   # warnings for this file.  So hold any warning issued before
8191   # we have processed AUTOMAKE_OPTIONS.
8192   buffer_messages ('warning');
8193
8194   # Name of input file ("Makefile.am") and output file
8195   # ("Makefile.in").  These have no directory components.
8196   $am_file_name = basename ($makefile_am);
8197   $in_file_name = basename ($makefile_in);
8198
8199   # $OUTPUT is encoded.  If it contains a ":" then the first element
8200   # is the real output file, and all remaining elements are input
8201   # files.  We don't scan or otherwise deal with these input files,
8202   # other than to mark them as dependencies.  See
8203   # &scan_autoconf_files for details.
8204   my ($makefile, @inputs) = split (/:/, $output_files{$makefile_in});
8205
8206   $relative_dir = dirname ($makefile);
8207   $am_relative_dir = dirname ($makefile_am);
8208   $topsrcdir = backname ($relative_dir);
8209
8210   read_main_am_file ($makefile_am);
8211   if (handle_options)
8212     {
8213       # Process buffered warnings.
8214       flush_messages;
8215       # Fatal error.  Just return, so we can continue with next file.
8216       return;
8217     }
8218   # Process buffered warnings.
8219   flush_messages;
8220
8221   # There are a few install-related variables that you should not define.
8222   foreach my $var ('PRE_INSTALL', 'POST_INSTALL', 'NORMAL_INSTALL')
8223     {
8224       my $v = var $var;
8225       if ($v)
8226         {
8227           my $def = $v->def (TRUE);
8228           prog_error "$var not defined in condition TRUE"
8229             unless $def;
8230           reject_var $var, "`$var' should not be defined"
8231             if $def->owner != VAR_AUTOMAKE;
8232         }
8233     }
8234
8235   # Catch some obsolete variables.
8236   msg_var ('obsolete', 'INCLUDES',
8237            "`INCLUDES' is the old name for `AM_CPPFLAGS' (or `*_CPPFLAGS')")
8238     if var ('INCLUDES');
8239
8240   # Must do this after reading .am file.
8241   define_variable ('subdir', $relative_dir, INTERNAL);
8242
8243   # If DIST_SUBDIRS is defined, make sure SUBDIRS is, so that
8244   # recursive rules are enabled.
8245   define_pretty_variable ('SUBDIRS', TRUE, INTERNAL, '')
8246     if var 'DIST_SUBDIRS' && ! var 'SUBDIRS';
8247
8248   # Check first, because we might modify some state.
8249   check_cygnus;
8250   check_gnu_standards;
8251   check_gnits_standards;
8252
8253   handle_configure ($makefile_am, $makefile_in, $makefile, @inputs);
8254   handle_gettext;
8255   handle_libraries;
8256   handle_ltlibraries;
8257   handle_programs;
8258   handle_scripts;
8259
8260   # These must be run after all the sources are scanned.  They
8261   # use variables defined by &handle_libraries, &handle_ltlibraries,
8262   # or &handle_programs.
8263   handle_compile;
8264   handle_languages;
8265   handle_libtool;
8266
8267   # Variables used by distdir.am and tags.am.
8268   define_pretty_variable ('SOURCES', TRUE, INTERNAL, @sources);
8269   if (! option 'no-dist')
8270     {
8271       define_pretty_variable ('DIST_SOURCES', TRUE, INTERNAL, @dist_sources);
8272     }
8273
8274   handle_multilib;
8275   handle_texinfo;
8276   handle_emacs_lisp;
8277   handle_python;
8278   handle_java;
8279   handle_man_pages;
8280   handle_data;
8281   handle_headers;
8282   handle_subdirs;
8283   handle_tags;
8284   handle_minor_options;
8285   # Must come after handle_programs so that %known_programs is up-to-date.
8286   handle_tests;
8287
8288   # This must come after most other rules.
8289   handle_dist;
8290
8291   handle_footer;
8292   do_check_merge_target;
8293   handle_all ($makefile);
8294
8295   # FIXME: Gross!
8296   if (var ('lib_LTLIBRARIES') && var ('bin_PROGRAMS'))
8297     {
8298       $output_rules .= "install-binPROGRAMS: install-libLTLIBRARIES\n\n";
8299     }
8300   if (var ('nobase_lib_LTLIBRARIES') && var ('bin_PROGRAMS'))
8301     {
8302       $output_rules .= "install-binPROGRAMS: install-nobase_libLTLIBRARIES\n\n";
8303     }
8304
8305   handle_install;
8306   handle_clean ($makefile);
8307   handle_factored_dependencies;
8308
8309   # Comes last, because all the above procedures may have
8310   # defined or overridden variables.
8311   $output_vars .= output_variables;
8312
8313   check_typos;
8314
8315   if ($exit_code != 0)
8316     {
8317       verb "not writing $makefile_in because of earlier errors";
8318       return;
8319     }
8320
8321   mkdir ($am_relative_dir, 0755) if ! -d $am_relative_dir;
8322
8323   # We make sure that `all:' is the first target.
8324   my $output =
8325     "$output_vars$output_all$output_header$output_rules$output_trailer";
8326
8327   # Decide whether we must update the output file or not.
8328   # We have to update in the following situations.
8329   #  * $force_generation is set.
8330   #  * any of the output dependencies is younger than the output
8331   #  * the contents of the output is different (this can happen
8332   #    if the project has been populated with a file listed in
8333   #    @common_files since the last run).
8334   # Output's dependencies are split in two sets:
8335   #  * dependencies which are also configure dependencies
8336   #    These do not change between each Makefile.am
8337   #  * other dependencies, specific to the Makefile.am being processed
8338   #    (such as the Makefile.am itself, or any Makefile fragment
8339   #    it includes).
8340   my $timestamp = mtime $makefile_in;
8341   if (! $force_generation
8342       && $configure_deps_greatest_timestamp < $timestamp
8343       && $output_deps_greatest_timestamp < $timestamp
8344       && $output eq contents ($makefile_in))
8345     {
8346       verb "$makefile_in unchanged";
8347       # No need to update.
8348       return;
8349     }
8350
8351   if (-e $makefile_in)
8352     {
8353       unlink ($makefile_in)
8354         or fatal "cannot remove $makefile_in: $!";
8355     }
8356
8357   my $gm_file = new Automake::XFile "> $makefile_in";
8358   verb "creating $makefile_in";
8359   print $gm_file $output;
8360 }
8361
8362 ################################################################
8363
8364
8365
8366
8367 ################################################################
8368
8369 # Print usage information.
8370 sub usage ()
8371 {
8372     print "Usage: $0 [OPTION]... [Makefile]...
8373
8374 Generate Makefile.in for configure from Makefile.am.
8375
8376 Operation modes:
8377       --help               print this help, then exit
8378       --version            print version number, then exit
8379   -v, --verbose            verbosely list files processed
8380       --no-force           only update Makefile.in's that are out of date
8381   -W, --warnings=CATEGORY  report the warnings falling in CATEGORY
8382
8383 Dependency tracking:
8384   -i, --ignore-deps      disable dependency tracking code
8385       --include-deps     enable dependency tracking code
8386
8387 Flavors:
8388       --cygnus           assume program is part of Cygnus-style tree
8389       --foreign          set strictness to foreign
8390       --gnits            set strictness to gnits
8391       --gnu              set strictness to gnu
8392
8393 Library files:
8394   -a, --add-missing      add missing standard files to package
8395       --libdir=DIR       directory storing library files
8396   -c, --copy             with -a, copy missing files (default is symlink)
8397   -f, --force-missing    force update of standard files
8398
8399 ";
8400     Automake::ChannelDefs::usage;
8401
8402     my ($last, @lcomm);
8403     $last = '';
8404     foreach my $iter (sort ((@common_files, @common_sometimes)))
8405     {
8406         push (@lcomm, $iter) unless $iter eq $last;
8407         $last = $iter;
8408     }
8409
8410     my @four;
8411     print "\nFiles which are automatically distributed, if found:\n";
8412     format USAGE_FORMAT =
8413   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<
8414   $four[0],           $four[1],           $four[2],           $four[3]
8415 .
8416     $~ = "USAGE_FORMAT";
8417
8418     my $cols = 4;
8419     my $rows = int(@lcomm / $cols);
8420     my $rest = @lcomm % $cols;
8421
8422     if ($rest)
8423     {
8424         $rows++;
8425     }
8426     else
8427     {
8428         $rest = $cols;
8429     }
8430
8431     for (my $y = 0; $y < $rows; $y++)
8432     {
8433         @four = ("", "", "", "");
8434         for (my $x = 0; $x < $cols; $x++)
8435         {
8436             last if $y + 1 == $rows && $x == $rest;
8437
8438             my $idx = (($x > $rest)
8439                        ?  ($rows * $rest + ($rows - 1) * ($x - $rest))
8440                        : ($rows * $x));
8441
8442             $idx += $y;
8443             $four[$x] = $lcomm[$idx];
8444         }
8445         write;
8446     }
8447
8448     print '
8449 Report bugs to <@PACKAGE_BUGREPORT@>.
8450 GNU Automake home page: <@PACKAGE_URL@>.
8451 General help using GNU software: <http://www.gnu.org/gethelp/>.
8452 ';
8453
8454     # --help always returns 0 per GNU standards.
8455     exit 0;
8456 }
8457
8458
8459 # &version ()
8460 # -----------
8461 # Print version information
8462 sub version ()
8463 {
8464   print <<EOF;
8465 automake (GNU $PACKAGE) $VERSION
8466 Copyright (C) 2011 Free Software Foundation, Inc.
8467 License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl-2.0.html>
8468 This is free software: you are free to change and redistribute it.
8469 There is NO WARRANTY, to the extent permitted by law.
8470
8471 Written by Tom Tromey <tromey\@redhat.com>
8472        and Alexandre Duret-Lutz <adl\@gnu.org>.
8473 EOF
8474   # --version always returns 0 per GNU standards.
8475   exit 0;
8476 }
8477
8478 ################################################################
8479
8480 # Parse command line.
8481 sub parse_arguments ()
8482 {
8483   my $strict = 'gnu';
8484   my $cygnus = 0;
8485   my $ignore_deps = 0;
8486   my @warnings = ();
8487
8488   my %cli_options =
8489     (
8490      'libdir=s' => \$libdir,
8491      'gnu'              => sub { $strict = 'gnu'; },
8492      'gnits'            => sub { $strict = 'gnits'; },
8493      'foreign'          => sub { $strict = 'foreign'; },
8494      'cygnus'           => \$cygnus,
8495      'include-deps'     => sub { $ignore_deps = 0; },
8496      'i|ignore-deps'    => sub { $ignore_deps = 1; },
8497      'no-force' => sub { $force_generation = 0; },
8498      'f|force-missing'  => \$force_missing,
8499      'a|add-missing'    => \$add_missing,
8500      'c|copy'           => \$copy_missing,
8501      'v|verbose'        => sub { setup_channel 'verb', silent => 0; },
8502      'W|warnings=s'     => \@warnings,
8503      );
8504   use Getopt::Long;
8505   Getopt::Long::config ("bundling", "pass_through");
8506
8507   # See if --version or --help is used.  We want to process these before
8508   # anything else because the GNU Coding Standards require us to
8509   # `exit 0' after processing these options, and we can't guarantee this
8510   # if we treat other options first.  (Handling other options first
8511   # could produce error diagnostics, and in this condition it is
8512   # confusing if Automake does `exit 0'.)
8513   my %cli_options_1st_pass =
8514     (
8515      'version' => \&version,
8516      'help'    => \&usage,
8517      # Recognize all other options (and their arguments) but do nothing.
8518      map { $_ => sub {} } (keys %cli_options)
8519      );
8520   my @ARGV_backup = @ARGV;
8521   Getopt::Long::GetOptions %cli_options_1st_pass
8522     or exit 1;
8523   @ARGV = @ARGV_backup;
8524
8525   # Now *really* process the options.  This time we know that --help
8526   # and --version are not present, but we specify them nonetheless so
8527   # that ambiguous abbreviation are diagnosed.
8528   Getopt::Long::GetOptions %cli_options, 'version' => sub {}, 'help' => sub {}
8529     or exit 1;
8530
8531   set_strictness ($strict);
8532   my $cli_where = new Automake::Location;
8533   set_global_option ('cygnus', $cli_where) if $cygnus;
8534   set_global_option ('no-dependencies', $cli_where) if $ignore_deps;
8535   for my $warning (@warnings)
8536     {
8537       &parse_warnings ('-W', $warning);
8538     }
8539
8540   return unless @ARGV;
8541
8542   if ($ARGV[0] =~ /^-./)
8543     {
8544       my %argopts;
8545       for my $k (keys %cli_options)
8546         {
8547           if ($k =~ /(.*)=s$/)
8548             {
8549               map { $argopts{(length ($_) == 1)
8550                              ? "-$_" : "--$_" } = 1; } (split (/\|/, $1));
8551             }
8552         }
8553       if ($ARGV[0] eq '--')
8554         {
8555           shift @ARGV;
8556         }
8557       elsif (exists $argopts{$ARGV[0]})
8558         {
8559           fatal ("option `$ARGV[0]' requires an argument.\n"
8560                  . "Try `$0 --help' for more information");
8561         }
8562       else
8563         {
8564           fatal ("unrecognized option `$ARGV[0]'.\n"
8565                  . "Try `$0 --help' for more information");
8566         }
8567     }
8568
8569   my $errspec = 0;
8570   foreach my $arg (@ARGV)
8571     {
8572       fatal ("empty argument\nTry `$0 --help' for more information")
8573         if ($arg eq '');
8574
8575       # Handle $local:$input syntax.
8576       my ($local, @rest) = split (/:/, $arg);
8577       @rest = ("$local.in",) unless @rest;
8578       my $input = locate_am @rest;
8579       if ($input)
8580         {
8581           push @input_files, $input;
8582           $output_files{$input} = join (':', ($local, @rest));
8583         }
8584       else
8585         {
8586           error "no Automake input file found for `$arg'";
8587           $errspec = 1;
8588         }
8589     }
8590   fatal "no input file found among supplied arguments"
8591     if $errspec && ! @input_files;
8592 }
8593
8594
8595 # handle_makefile ($MAKEFILE_IN)
8596 # ------------------------------
8597 # Deal with $MAKEFILE_IN.
8598 sub handle_makefile ($)
8599 {
8600   my ($file) =  @_;
8601   ($am_file = $file) =~ s/\.in$//;
8602   if (! -f ($am_file . '.am'))
8603     {
8604       error "`$am_file.am' does not exist";
8605     }
8606   else
8607     {
8608       # Any warning setting now local to this Makefile.am.
8609       dup_channel_setup;
8610
8611       generate_makefile ($am_file . '.am', $file);
8612
8613       # Back out any warning setting.
8614       drop_channel_setup;
8615     }
8616 }
8617
8618 # handle_makefiles_serial ()
8619 # --------------------------
8620 # Deal with all makefiles, without threads.
8621 sub handle_makefiles_serial ()
8622 {
8623   foreach my $file (@input_files)
8624     {
8625       handle_makefile ($file);
8626     }
8627 }
8628
8629 # get_number_of_threads ()
8630 # ------------------------
8631 # Logic for deciding how many worker threads to use.
8632 sub get_number_of_threads
8633 {
8634   my $nthreads = $ENV{'AUTOMAKE_JOBS'} || 0;
8635
8636   $nthreads = 0
8637     unless $nthreads =~ /^[0-9]+$/;
8638
8639   # It doesn't make sense to use more threads than makefiles,
8640   my $max_threads = @input_files;
8641
8642   # but a single worker thread is helpful for exposing bugs.
8643   if ($automake_will_process_aux_dir && $max_threads > 1)
8644     {
8645       $max_threads--;
8646     }
8647   if ($nthreads > $max_threads)
8648     {
8649       $nthreads = $max_threads;
8650     }
8651   return $nthreads;
8652 }
8653
8654 # handle_makefiles_threaded ($NTHREADS)
8655 # -------------------------------------
8656 # Deal with all makefiles, using threads.  The general strategy is to
8657 # spawn NTHREADS worker threads, dispatch makefiles to them, and let the
8658 # worker threads push back everything that needs serialization:
8659 # * warning and (normal) error messages, for stable stderr output
8660 #   order and content (avoiding duplicates, for example),
8661 # * races when installing aux files (and respective messages),
8662 # * races when collecting aux files for distribution.
8663 #
8664 # The latter requires that the makefile that deals with the aux dir
8665 # files be handled last, done by the master thread.
8666 sub handle_makefiles_threaded ($)
8667 {
8668   my ($nthreads) = @_;
8669
8670   my @queued_input_files = @input_files;
8671   my $last_input_file = undef;
8672   if ($automake_will_process_aux_dir)
8673     {
8674       $last_input_file = pop @queued_input_files;
8675     }
8676
8677   # The file queue distributes all makefiles, the message queues
8678   # collect all serializations needed for respective files.
8679   my $file_queue = Thread::Queue->new;
8680   my %msg_queues;
8681   foreach my $file (@queued_input_files)
8682     {
8683       $msg_queues{$file} = Thread::Queue->new;
8684     }
8685
8686   verb "spawning $nthreads worker threads";
8687   my @threads = (1 .. $nthreads);
8688   foreach my $t (@threads)
8689     {
8690       $t = threads->new (sub
8691         {
8692           while (my $file = $file_queue->dequeue)
8693             {
8694               verb "handling $file";
8695               my $queue = $msg_queues{$file};
8696               setup_channel_queue ($queue, QUEUE_MESSAGE);
8697               $required_conf_file_queue = $queue;
8698               handle_makefile ($file);
8699               $queue->enqueue (undef);
8700               setup_channel_queue (undef, undef);
8701               $required_conf_file_queue = undef;
8702             }
8703           return $exit_code;
8704         });
8705     }
8706
8707   # Queue all normal makefiles.
8708   verb "queuing " . @queued_input_files . " input files";
8709   $file_queue->enqueue (@queued_input_files, (undef) x @threads);
8710
8711   # Collect and process serializations.
8712   foreach my $file (@queued_input_files)
8713     {
8714       verb "dequeuing messages for " . $file;
8715       reset_local_duplicates ();
8716       my $queue = $msg_queues{$file};
8717       while (my $key = $queue->dequeue)
8718         {
8719           if ($key eq QUEUE_MESSAGE)
8720             {
8721               pop_channel_queue ($queue);
8722             }
8723           elsif ($key eq QUEUE_CONF_FILE)
8724             {
8725               require_queued_conf_file ($queue);
8726             }
8727           else
8728             {
8729               prog_error "unexpected key $key";
8730             }
8731         }
8732     }
8733
8734   foreach my $t (@threads)
8735     {
8736       my @exit_thread = $t->join;
8737       $exit_code = $exit_thread[0]
8738         if ($exit_thread[0] > $exit_code);
8739     }
8740
8741   # The master processes the last file.
8742   if ($automake_will_process_aux_dir)
8743     {
8744       verb "processing last input file";
8745       handle_makefile ($last_input_file);
8746     }
8747 }
8748
8749 ################################################################
8750
8751 # Parse the WARNINGS environment variable.
8752 parse_WARNINGS;
8753
8754 # Parse command line.
8755 parse_arguments;
8756
8757 $configure_ac = require_configure_ac;
8758
8759 # Do configure.ac scan only once.
8760 scan_autoconf_files;
8761
8762 if (! @input_files)
8763   {
8764     my $msg = '';
8765     $msg = "\nDid you forget AC_CONFIG_FILES([Makefile]) in $configure_ac?"
8766       if -f 'Makefile.am';
8767     fatal ("no `Makefile.am' found for any configure output$msg");
8768   }
8769
8770 my $nthreads = get_number_of_threads ();
8771
8772 if ($perl_threads && $nthreads >= 1)
8773   {
8774     handle_makefiles_threaded ($nthreads);
8775   }
8776 else
8777   {
8778     handle_makefiles_serial ();
8779   }
8780
8781 exit $exit_code;
8782
8783
8784 ### Setup "GNU" style for perl-mode and cperl-mode.
8785 ## Local Variables:
8786 ## perl-indent-level: 2
8787 ## perl-continued-statement-offset: 2
8788 ## perl-continued-brace-offset: 0
8789 ## perl-brace-offset: 0
8790 ## perl-brace-imaginary-offset: 0
8791 ## perl-label-offset: -2
8792 ## cperl-indent-level: 2
8793 ## cperl-brace-offset: 0
8794 ## cperl-continued-brace-offset: 0
8795 ## cperl-label-offset: -2
8796 ## cperl-extra-newline-before-brace: t
8797 ## cperl-merge-trailing-else: nil
8798 ## cperl-continued-statement-offset: 2
8799 ## End: