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