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