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