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