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