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