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