5 eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac'
8 # automake - create Makefile.in from Makefile.am
9 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
10 # 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)
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
27 # Originally written by David Mackenzie <djm@gnu.ai.mit.edu>.
28 # Perl reimplementation by Tom Tromey <tromey@redhat.com>.
34 my $perllibdir = $ENV{'perllibdir'} || '@datadir@/@PACKAGE@-@APIVERSION@';
35 unshift @INC, (split ':', $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'};
48 struct (# Short name of the language (c, f77...).
50 # Nice name of the language (C, Fortran 77...).
53 # List of configure variables which must be defined.
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.
64 # Name of the compiling variable (COMPILE).
66 # Content of the compiling variable.
68 # Flag to require compilation without linking (-c).
69 'compile_flag' => "\$",
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'.
79 # The file to use when generating rules for this language.
80 # The default is 'depend2'.
83 # Name of the linking variable (LINK).
85 # Content of the linking variable.
88 # Name of the linker variable (LD).
90 # Content of the linker variable ($(CC)).
93 # Flag to specify the output file (-o).
94 'output_flag' => "\$",
97 # This is a subroutine which is called whenever we finally
98 # determine the context in which a source file will be
100 '_target_hook' => "\$");
106 if (defined $self->_finish)
108 &{$self->_finish} ();
112 sub target_hook ($$$$)
115 if (defined $self->_target_hook)
117 &{$self->_target_hook} (@_);
124 use Automake::Config;
125 use Automake::General;
127 use Automake::Channels;
128 use Automake::ChannelDefs;
129 use Automake::Configure_ac;
130 use Automake::FileUtils;
131 use Automake::Location;
132 use Automake::Condition qw/TRUE FALSE/;
133 use Automake::DisjConditions;
134 use Automake::Options;
135 use Automake::Version;
136 use Automake::Variable;
137 use Automake::VarDef;
139 use Automake::RuleDef;
140 use Automake::Wrap 'makefile_wrap';
148 # Some regular expressions. One reason to put them here is that it
149 # makes indentation work better in Emacs.
151 # Writing singled-quoted-$-terminated regexes is a pain because
152 # perl-mode thinks of $' as the ${'} variable (instead of a $ followed
153 # by a closing quote. Letting perl-mode think the quote is not closed
154 # leads to all sort of misindentations. On the other hand, defining
155 # regexes as double-quoted strings is far less readable. So usually
158 # $REGEX = '^regex_value' . "\$";
160 my $IGNORE_PATTERN = '^\s*##([^#\n].*)?\n';
161 my $WHITE_PATTERN = '^\s*' . "\$";
162 my $COMMENT_PATTERN = '^#';
163 my $TARGET_PATTERN='[$a-zA-Z_.@%][-.a-zA-Z0-9_(){}/$+@%]*';
164 # A rule has three parts: a list of targets, a list of dependencies,
165 # and optionally actions.
167 "^($TARGET_PATTERN(?:(?:\\\\\n|\\s)+$TARGET_PATTERN)*) *:([^=].*|)\$";
169 # Only recognize leading spaces, not leading tabs. If we recognize
170 # leading tabs here then we need to make the reader smarter, because
171 # otherwise it will think rules like `foo=bar; \' are errors.
172 my $ASSIGNMENT_PATTERN = '^ *([^ \t=:+]*)\s*([:+]?)=\s*(.*)' . "\$";
173 # This pattern recognizes a Gnits version id and sets $1 if the
174 # release is an alpha release. We also allow a suffix which can be
175 # used to extend the version number with a "fork" identifier.
176 my $GNITS_VERSION_PATTERN = '\d+\.\d+([a-z]|\.\d+)?(-[A-Za-z0-9]+)?';
178 my $IF_PATTERN = '^if\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*)\s*(?:#.*)?' . "\$";
180 '^else(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?' . "\$";
182 '^endif(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?' . "\$";
183 my $PATH_PATTERN = '(\w|[/.-])+';
184 # This will pass through anything not of the prescribed form.
185 my $INCLUDE_PATTERN = ('^include\s+'
186 . '((\$\(top_srcdir\)/' . $PATH_PATTERN . ')'
187 . '|(\$\(srcdir\)/' . $PATH_PATTERN . ')'
188 . '|([^/\$]' . $PATH_PATTERN . '))\s*(#.*)?' . "\$");
190 # Match `-d' as a command-line argument in a string.
191 my $DASH_D_PATTERN = "(^|\\s)-d(\\s|\$)";
192 # Directories installed during 'install-exec' phase.
193 my $EXEC_DIR_PATTERN =
194 '^(?:bin|sbin|libexec|sysconf|localstate|lib|pkglib|.*exec.*)' . "\$";
196 # Values for AC_CANONICAL_*
197 use constant AC_CANONICAL_HOST => 1;
198 use constant AC_CANONICAL_SYSTEM => 2;
200 # Values indicating when something should be cleaned.
201 use constant MOSTLY_CLEAN => 0;
202 use constant CLEAN => 1;
203 use constant DIST_CLEAN => 2;
204 use constant MAINTAINER_CLEAN => 3;
207 my @libtool_files = qw(ltmain.sh config.guess config.sub);
208 # ltconfig appears here for compatibility with old versions of libtool.
209 my @libtool_sometimes = qw(ltconfig ltcf-c.sh ltcf-cxx.sh ltcf-gcj.sh);
211 # Commonly found files we look for and automatically include in
214 (qw(ABOUT-GNU ABOUT-NLS AUTHORS BACKLOG COPYING COPYING.DOC COPYING.LIB
215 COPYING.LESSER ChangeLog INSTALL NEWS README THANKS TODO
216 ansi2knr.1 ansi2knr.c compile config.guess config.rpath config.sub
217 configure configure.ac configure.in depcomp elisp-comp
218 install-sh libversion.in mdate-sh missing mkinstalldirs
219 py-compile texinfo.tex ylwrap),
220 @libtool_files, @libtool_sometimes);
222 # Commonly used files we auto-include, but only sometimes.
223 my @common_sometimes =
224 qw(aclocal.m4 acconfig.h config.h.top config.h.bot stamp-vti);
226 # Standard directories from the GNU Coding Standards, and additional
227 # pkg* directories from Automake. Stored in a hash for fast member check.
228 my %standard_prefix =
229 map { $_ => 1 } (qw(bin data exec include info lib libexec lisp
230 localstate man man1 man2 man3 man4 man5 man6
231 man7 man8 man9 oldinclude pkgdatadir
232 pkgincludedir pkglibdir sbin sharedstate
235 # Copyright on generated Makefile.ins.
236 my $gen_copyright = "\
237 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
238 # Free Software Foundation, Inc.
239 # This Makefile.in is free software; the Free Software Foundation
240 # gives unlimited permission to copy and/or distribute it,
241 # with or without modifications, as long as this notice is preserved.
243 # This program is distributed in the hope that it will be useful,
244 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
245 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
246 # PARTICULAR PURPOSE.
249 # These constants are returned by lang_*_rewrite functions.
250 # LANG_SUBDIR means that the resulting object file should be in a
251 # subdir if the source file is. In this case the file name cannot
252 # have `..' components.
253 use constant LANG_IGNORE => 0;
254 use constant LANG_PROCESS => 1;
255 use constant LANG_SUBDIR => 2;
257 # These are used when keeping track of whether an object can be built
258 # by two different paths.
259 use constant COMPILE_LIBTOOL => 1;
260 use constant COMPILE_ORDINARY => 2;
262 # We can't always associate a location to a variable or a rule,
263 # when its defined by Automake. We use INTERNAL in this case.
264 use constant INTERNAL => new Automake::Location;
267 ## ---------------------------------- ##
268 ## Variables related to the options. ##
269 ## ---------------------------------- ##
271 # TRUE if we should always generate Makefile.in.
272 my $force_generation = 1;
274 # From the Perl manual.
275 my $symlink_exists = (eval 'symlink ("", "");', $@ eq '');
277 # TRUE if missing standard files should be installed.
280 # TRUE if we should copy missing files; otherwise symlink if possible.
281 my $copy_missing = 0;
283 # TRUE if we should always update files that we know about.
284 my $force_missing = 0;
287 ## ---------------------------------------- ##
288 ## Variables filled during files scanning. ##
289 ## ---------------------------------------- ##
291 # Name of the configure.ac file.
294 # Files found by scanning configure.ac for LIBOBJS.
297 # Names used in AC_CONFIG_HEADER call.
298 my @config_headers = ();
300 # Names used in AC_CONFIG_LINKS call.
301 my @config_links = ();
303 # Directory where output files go. Actually, output files are
304 # relative to this directory.
305 my $output_directory;
307 # List of Makefile.am's to process, and their corresponding outputs.
308 my @input_files = ();
309 my %output_files = ();
311 # Complete list of Makefile.am's that exist.
312 my @configure_input_files = ();
314 # List of files in AC_CONFIG_FILES/AC_OUTPUT without Makefile.am's,
316 my @other_input_files = ();
317 # Where each AC_CONFIG_FILES/AC_OUTPUT/AC_CONFIG_LINK/AC_CONFIG_HEADER appears.
318 # The keys are the files created by these macros.
319 my %ac_config_files_location = ();
321 # List of directories to search for configure-required files. This
322 # can be set by AC_CONFIG_AUX_DIR.
323 my @config_aux_path = qw(. .. ../..);
324 my $config_aux_dir = '';
325 my $config_aux_dir_set_in_configure_in = 0;
327 # Whether AM_GNU_GETTEXT has been seen in configure.ac.
328 my $seen_gettext = 0;
329 # Whether AM_GNU_GETTEXT([external]) is used.
330 my $seen_gettext_external = 0;
331 # Where AM_GNU_GETTEXT appears.
332 my $ac_gettext_location;
334 # TRUE if we've seen AC_CANONICAL_(HOST|SYSTEM).
335 my $seen_canonical = 0;
336 my $canonical_location;
338 # Where AM_MAINTAINER_MODE appears.
341 # Actual version we've seen.
342 my $package_version = '';
344 # Where version is defined.
345 my $package_version_location;
347 # TRUE if we've seen AC_ENABLE_MULTILIB.
348 my $seen_multilib = 0;
350 # TRUE if we've seen AM_PROG_CC_C_O
353 # Where AM_INIT_AUTOMAKE is called;
354 my $seen_init_automake = 0;
356 # TRUE if we've seen AM_AUTOMAKE_VERSION.
357 my $seen_automake_version = 0;
359 # Hash table of discovered configure substitutions. Keys are names,
360 # values are `FILE:LINE' strings which are used by error message
362 my %configure_vars = ();
364 # Files included by $configure_ac.
365 my @configure_deps = ();
367 # Greatest timestamp of configure's dependencies.
368 my $configure_deps_greatest_timestamp = 0;
370 # Hash table of AM_CONDITIONAL variables seen in configure.
371 my %configure_cond = ();
373 # This maps extensions onto language names.
374 my %extension_map = ();
376 # List of the DIST_COMMON files we discovered while reading
378 my $configure_dist_common = '';
380 # This maps languages names onto objects.
383 # List of targets we must always output.
384 # FIXME: Complete, and remove falsely required targets.
385 my %required_targets =
398 # FIXME: Not required, temporary hacks.
399 # Well, actually they are sort of required: the -recursive
400 # targets will run them anyway...
405 'install-data-am' => 1,
406 'install-exec-am' => 1,
407 'installcheck-am' => 1,
413 # This is set to 1 when Automake needs to be run again.
414 # (For instance, this happens when an auxiliary file such as
415 # depcomp is added after the toplevel Makefile.in -- which
416 # should distribute depcomp -- has been generated.)
417 my $automake_needs_to_reprocess_all_files = 0;
419 # If a file name appears as a key in this hash, then it has already
420 # been checked for. This variable is local to the "require file"
422 my %require_file_found = ();
424 # The name of the Makefile currently being processed.
428 ################################################################
430 ## ------------------------------------------ ##
431 ## Variables reset by &initialize_per_input. ##
432 ## ------------------------------------------ ##
434 # Basename and relative dir of the input file.
438 # Same but wrt Makefile.in.
442 # Greatest timestamp of the output's dependencies (excluding
443 # configure's dependencies).
444 my $output_deps_greatest_timestamp;
446 # These two variables are used when generating each Makefile.in.
447 # They hold the Makefile.in until it is ready to be printed.
454 # This is the conditional stack, updated on if/else/endif, and
455 # used to build Condition objects.
458 # This holds the set of included files.
461 # This holds a list of directories which we must create at `dist'
462 # time. This is used in some strange scenarios involving weird
463 # AC_OUTPUT commands.
466 # List of dependencies for the obvious targets.
471 # Keys in this hash table are files to delete. The associated
472 # value tells when this should happen (MOSTLY_CLEAN, DIST_CLEAN, etc.)
475 # Keys in this hash table are object files or other files in
476 # subdirectories which need to be removed. This only holds files
477 # which are created by compilations. The value in the hash indicates
478 # when the file should be removed.
479 my %compile_clean_files;
481 # Keys in this hash table are directories where we expect to build a
482 # libtool object. We use this information to decide what directories
484 my %libtool_clean_directories;
486 # Value of `$(SOURCES)', used by tags.am.
488 # Sources which go in the distribution.
491 # This hash maps object file names onto their corresponding source
492 # file names. This is used to ensure that each object is created
493 # by a single source file.
496 # This hash maps object file names onto an integer value representing
497 # whether this object has been built via ordinary compilation or
498 # libtool compilation (the COMPILE_* constants).
499 my %object_compilation_map;
502 # This keeps track of the directories for which we've already
503 # created dirstamp code.
509 # This is a list of all targets to run during "make dist".
512 # Keys in this hash are the basenames of files which must depend on
513 # ansi2knr. Values are either the empty string, or the directory in
514 # which the ANSI source file appears; the directory must have a
518 # This is the name of the redirect `all' target to use.
521 # This keeps track of which extensions we've seen (that we care
525 # This is random scratch space for the language finish functions.
526 # Don't randomly overwrite it; examine other uses of keys first.
527 my %language_scratch;
529 # We keep track of which objects need special (per-executable)
530 # handling on a per-language basis.
531 my %lang_specific_files;
533 # This is set when `handle_dist' has finished. Once this happens,
534 # we should no longer push on dist_common.
537 # Used to store a set of linkers needed to generate the sources currently
538 # under consideration.
541 # True if we need `LINK' defined. This is a hack.
544 # Was get_object_extension run?
545 # FIXME: This is a hack. a better switch should be found.
546 my $get_object_extension_was_run;
548 ################################################################
550 # var_SUFFIXES_trigger ($TYPE, $VALUE)
551 # ------------------------------------
552 # This is called by Automake::Variable::define() when SUFFIXES
553 # is defined ($TYPE eq '') or appended ($TYPE eq '+').
554 # The work here needs to be performed as a side-effect of the
555 # macro_define() call because SUFFIXES definitions impact
556 # on $KNOWN_EXTENSIONS_PATTERN which is used used when parsing
558 sub var_SUFFIXES_trigger ($$)
560 my ($type, $value) = @_;
561 accept_extensions (split (' ', $value));
563 Automake::Variable::hook ('SUFFIXES', \&var_SUFFIXES_trigger);
565 ################################################################
567 ## --------------------------------- ##
568 ## Forward subroutine declarations. ##
569 ## --------------------------------- ##
570 sub register_language (%);
571 sub file_contents_internal ($$$%);
572 sub define_files_variable ($\@$$);
575 # &initialize_per_input ()
576 # ------------------------
577 # (Re)-Initialize per-Makefile.am variables.
578 sub initialize_per_input ()
580 reset_local_duplicates ();
583 $am_relative_dir = '';
588 $output_deps_greatest_timestamp = 0;
592 $output_trailer = '';
596 Automake::Options::reset;
597 Automake::Variable::reset;
598 Automake::Rule::reset;
616 %object_compilation_map = ();
628 %extension_seen = ();
630 %language_scratch = ();
632 %lang_specific_files = ();
634 $handle_dist_run = 0;
638 $get_object_extension_was_run = 0;
640 %compile_clean_files = ();
642 # We always include `.'. This isn't strictly correct.
643 %libtool_clean_directories = ('.' => 1);
647 ################################################################
649 # Initialize our list of languages that are internally supported.
652 register_language ('name' => 'c',
654 'config_vars' => ['CC'],
657 'flags' => ['CFLAGS', 'CPPFLAGS'],
658 'compiler' => 'COMPILE',
659 'compile' => '$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)',
663 'link' => '$(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
664 'compile_flag' => '-c',
665 'extensions' => ['.c'],
666 '_finish' => \&lang_c_finish);
669 register_language ('name' => 'cxx',
671 'config_vars' => ['CXX'],
672 'linker' => 'CXXLINK',
673 'link' => '$(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
675 'flags' => ['CXXFLAGS', 'CPPFLAGS'],
676 'compile' => '$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)',
677 'compiler' => 'CXXCOMPILE',
678 'compile_flag' => '-c',
679 'output_flag' => '-o',
683 'extensions' => ['.c++', '.cc', '.cpp', '.cxx', '.C']);
686 register_language ('name' => 'objc',
687 'Name' => 'Objective C',
688 'config_vars' => ['OBJC'],
689 'linker' => 'OBJCLINK',,
690 'link' => '$(OBJCLD) $(AM_OBJCFLAGS) $(OBJCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
692 'flags' => ['OBJCFLAGS', 'CPPFLAGS'],
693 'compile' => '$(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS)',
694 'compiler' => 'OBJCCOMPILE',
695 'compile_flag' => '-c',
696 'output_flag' => '-o',
700 'extensions' => ['.m']);
703 register_language ('name' => 'header',
705 'extensions' => ['.h', '.H', '.hxx', '.h++', '.hh',
708 'output_extensions' => sub { return () },
710 '_finish' => sub { });
713 register_language ('name' => 'yacc',
715 'config_vars' => ['YACC'],
716 'flags' => ['YFLAGS'],
717 'compile' => '$(YACC) $(YFLAGS) $(AM_YFLAGS)',
718 'compiler' => 'YACCCOMPILE',
719 'extensions' => ['.y'],
720 'output_extensions' => sub { (my $ext = $_[0]) =~ tr/y/c/;
722 'rule_file' => 'yacc',
723 '_finish' => \&lang_yacc_finish,
724 '_target_hook' => \&lang_yacc_target_hook);
725 register_language ('name' => 'yaccxx',
726 'Name' => 'Yacc (C++)',
727 'config_vars' => ['YACC'],
728 'rule_file' => 'yacc',
729 'flags' => ['YFLAGS'],
730 'compiler' => 'YACCCOMPILE',
731 'compile' => '$(YACC) $(YFLAGS) $(AM_YFLAGS)',
732 'extensions' => ['.y++', '.yy', '.yxx', '.ypp'],
733 'output_extensions' => sub { (my $ext = $_[0]) =~ tr/y/c/;
735 '_finish' => \&lang_yacc_finish,
736 '_target_hook' => \&lang_yacc_target_hook);
739 register_language ('name' => 'lex',
741 'config_vars' => ['LEX'],
742 'rule_file' => 'lex',
743 'flags' => ['LFLAGS'],
744 'compile' => '$(LEX) $(LFLAGS) $(AM_LFLAGS)',
745 'compiler' => 'LEXCOMPILE',
746 'extensions' => ['.l'],
747 'output_extensions' => sub { (my $ext = $_[0]) =~ tr/l/c/;
749 '_finish' => \&lang_lex_finish,
750 '_target_hook' => \&lang_lex_target_hook);
751 register_language ('name' => 'lexxx',
752 'Name' => 'Lex (C++)',
753 'config_vars' => ['LEX'],
754 'rule_file' => 'lex',
755 'flags' => ['LFLAGS'],
756 'compile' => '$(LEX) $(LFLAGS) $(AM_LFLAGS)',
757 'compiler' => 'LEXCOMPILE',
758 'extensions' => ['.l++', '.ll', '.lxx', '.lpp'],
759 'output_extensions' => sub { (my $ext = $_[0]) =~ tr/l/c/;
761 '_finish' => \&lang_lex_finish,
762 '_target_hook' => \&lang_lex_target_hook);
765 register_language ('name' => 'asm',
766 'Name' => 'Assembler',
767 'config_vars' => ['CCAS', 'CCASFLAGS'],
769 'flags' => ['CCASFLAGS'],
770 # Users can set AM_ASFLAGS to includes DEFS, INCLUDES,
771 # or anything else required. They can also set AS.
772 'compile' => '$(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS)',
773 'compiler' => 'CCASCOMPILE',
774 'compile_flag' => '-c',
775 'extensions' => ['.s', '.S'],
777 # With assembly we still use the C linker.
778 '_finish' => \&lang_c_finish);
781 register_language ('name' => 'f77',
782 'Name' => 'Fortran 77',
783 'linker' => 'F77LINK',
784 'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
785 'flags' => ['FFLAGS'],
786 'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS)',
787 'compiler' => 'F77COMPILE',
788 'compile_flag' => '-c',
789 'output_flag' => '-o',
793 'extensions' => ['.f', '.for', '.f90']);
795 # Preprocessed Fortran 77
797 # The current support for preprocessing Fortran 77 just involves
798 # passing `$(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS)
799 # $(CPPFLAGS)' as additional flags to the Fortran 77 compiler, since
800 # this is how GNU Make does it; see the `GNU Make Manual, Edition 0.51
801 # for `make' Version 3.76 Beta' (specifically, from info file
802 # `(make)Catalogue of Rules').
804 # A better approach would be to write an Autoconf test
805 # (i.e. AC_PROG_FPP) for a Fortran 77 preprocessor, because not all
806 # Fortran 77 compilers know how to do preprocessing. The Autoconf
807 # macro AC_PROG_FPP should test the Fortran 77 compiler first for
808 # preprocessing capabilities, and then fall back on cpp (if cpp were
810 register_language ('name' => 'ppf77',
811 'Name' => 'Preprocessed Fortran 77',
812 'config_vars' => ['F77'],
813 'linker' => 'F77LINK',
814 'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
817 'flags' => ['FFLAGS', 'CPPFLAGS'],
818 'compiler' => 'PPF77COMPILE',
819 'compile' => '$(F77) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)',
820 'compile_flag' => '-c',
821 'output_flag' => '-o',
823 'extensions' => ['.F']);
826 register_language ('name' => 'ratfor',
828 'config_vars' => ['F77'],
829 'linker' => 'F77LINK',
830 'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
833 'flags' => ['RFLAGS', 'FFLAGS'],
835 'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)',
836 'compiler' => 'RCOMPILE',
837 'compile_flag' => '-c',
838 'output_flag' => '-o',
840 'extensions' => ['.r']);
843 register_language ('name' => 'java',
845 'config_vars' => ['GCJ'],
846 'linker' => 'GCJLINK',
847 'link' => '$(GCJLD) $(AM_GCJFLAGS) $(GCJFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
849 'flags' => ['GCJFLAGS'],
850 'compile' => '$(GCJ) $(AM_GCJFLAGS) $(GCJFLAGS)',
851 'compiler' => 'GCJCOMPILE',
852 'compile_flag' => '-c',
853 'output_flag' => '-o',
857 'extensions' => ['.java', '.class', '.zip', '.jar']);
859 ################################################################
861 # Error reporting functions.
863 # err_am ($MESSAGE, [%OPTIONS])
864 # -----------------------------
865 # Uncategorized errors about the current Makefile.am.
868 msg_am ('error', @_);
871 # err_ac ($MESSAGE, [%OPTIONS])
872 # -----------------------------
873 # Uncategorized errors about configure.ac.
876 msg_ac ('error', @_);
879 # msg_am ($CHANNEL, $MESSAGE, [%OPTIONS])
880 # ---------------------------------------
881 # Messages about about the current Makefile.am.
884 my ($channel, $msg, %opts) = @_;
885 msg $channel, "${am_file}.am", $msg, %opts;
888 # msg_ac ($CHANNEL, $MESSAGE, [%OPTIONS])
889 # ---------------------------------------
890 # Messages about about configure.ac.
893 my ($channel, $msg, %opts) = @_;
894 msg $channel, $configure_ac, $msg, %opts;
897 ################################################################
901 # Return a configure-style substitution using the indicated text.
902 # We do this to avoid having the substitutions directly in automake.in;
903 # when we do that they are sometimes removed and this causes confusion
908 return '@' . $text . '@';
911 ################################################################
915 # &backname ($REL-DIR)
916 # --------------------
917 # If I `cd $REL-DIR', then to come back, I should `cd $BACKPATH'.
918 # For instance `src/foo' => `../..'.
919 # Works with non strictly increasing paths, i.e., `src/../lib' => `..'.
924 foreach (split (/\//, $file))
926 next if $_ eq '.' || $_ eq '';
936 return join ('/', @res) || '.';
939 ################################################################
942 # Handle AUTOMAKE_OPTIONS variable. Return 1 on error, 0 otherwise.
945 my $var = var ('AUTOMAKE_OPTIONS');
948 # FIXME: We should disallow conditional definitions of AUTOMAKE_OPTIONS.
949 if (process_option_list ($var->rdef (TRUE)->location,
950 $var->value_as_list_recursive (cond_filter =>
957 if ($strictness == GNITS)
959 set_option ('readme-alpha', INTERNAL);
960 set_option ('std-options', INTERNAL);
961 set_option ('check-news', INTERNAL);
968 # get_object_extension ($OUT)
969 # ---------------------------
970 # Return object extension. Just once, put some code into the output.
971 # OUT is the name of the output file
972 sub get_object_extension
976 # Maybe require libtool library object files.
977 my $extension = '.$(OBJEXT)';
978 $extension = '.lo' if ($out =~ /\.la$/);
980 # Check for automatic de-ANSI-fication.
981 $extension = '$U' . $extension
982 if option 'ansi2knr';
984 $get_object_extension_was_run = 1;
990 # Call finish function for each language that was used.
993 if (! option 'no-dependencies')
995 # Include auto-dep code. Don't include it if DEP_FILES would
997 if (&saw_sources_p (0) && keys %dep_files)
999 # Set location of depcomp.
1000 &define_variable ('depcomp', "\$(SHELL) $config_aux_dir/depcomp",
1002 &define_variable ('am__depfiles_maybe', 'depfiles', INTERNAL);
1004 require_conf_file ("$am_file.am", FOREIGN, 'depcomp');
1006 my @deplist = sort keys %dep_files;
1008 # We define this as a conditional variable because BSD
1009 # make can't handle backslashes for continuing comments on
1010 # the following line.
1011 define_pretty_variable ('DEP_FILES',
1012 new Automake::Condition ('AMDEP_TRUE'),
1013 INTERNAL, @deplist);
1015 # Generate each `include' individually. Irix 6 make will
1016 # not properly include several files resulting from a
1017 # variable expansion; generating many separate includes
1019 $output_rules .= "\n";
1020 foreach my $iter (@deplist)
1022 $output_rules .= (subst ('AMDEP_TRUE')
1023 . subst ('am__include')
1025 . subst ('am__quote')
1027 . subst ('am__quote')
1031 # Compute the set of directories to remove in distclean-depend.
1032 my @depdirs = uniq (map { dirname ($_) } @deplist);
1033 $output_rules .= &file_contents ('depend',
1034 new Automake::Location,
1035 DEPDIRS => "@depdirs");
1040 &define_variable ('depcomp', '', INTERNAL);
1041 &define_variable ('am__depfiles_maybe', '', INTERNAL);
1046 # Is the c linker needed?
1048 foreach my $ext (sort keys %extension_seen)
1050 next unless $extension_map{$ext};
1052 my $lang = $languages{$extension_map{$ext}};
1054 my $rule_file = $lang->rule_file || 'depend2';
1056 # Get information on $LANG.
1057 my $pfx = $lang->autodep;
1058 my $fpfx = ($pfx eq '') ? 'CC' : $pfx;
1060 my ($AMDEP, $FASTDEP) =
1061 (option 'no-dependencies' || $lang->autodep eq 'no')
1062 ? ('FALSE', 'FALSE') : ('AMDEP', "am__fastdep$fpfx");
1064 my %transform = ('EXT' => $ext,
1068 'FASTDEP' => $FASTDEP,
1069 '-c' => $lang->compile_flag || '',
1071 => (count_files_for_language ($lang->name) > 1));
1073 # Generate the appropriate rules for this extension.
1074 if (((! option 'no-dependencies') && $lang->autodep ne 'no')
1075 || defined $lang->compile)
1077 # Some C compilers don't support -c -o. Use it only if really
1079 my $output_flag = $lang->output_flag || '';
1082 && $lang->name eq 'c'
1083 && option 'subdir-objects');
1085 # Compute a possible derived extension.
1086 # This is not used by depend2.am.
1087 my $der_ext = (&{$lang->output_extensions} ($ext))[0];
1090 file_contents ($rule_file,
1091 new Automake::Location,
1095 'DERIVED-EXT' => $der_ext,
1097 # In this situation we know that the
1098 # object is in this directory, so
1099 # $(DEPDIR) is the correct location for
1101 DEPBASE => '$(DEPDIR)/$*',
1108 COMPILE => '$(' . $lang->compiler . ')',
1109 LTCOMPILE => '$(LT' . $lang->compiler . ')',
1110 -o => $output_flag);
1113 # Now include code for each specially handled object with this
1115 my %seen_files = ();
1116 foreach my $file (@{$lang_specific_files{$lang->name}})
1118 my ($derived, $source, $obj, $myext) = split (' ', $file);
1120 # We might see a given object twice, for instance if it is
1121 # used under different conditions.
1122 next if defined $seen_files{$obj};
1123 $seen_files{$obj} = 1;
1125 prog_error ("found " . $lang->name .
1126 " in handle_languages, but compiler not defined")
1127 unless defined $lang->compile;
1129 my $obj_compile = $lang->compile;
1131 # Rewrite each occurrence of `AM_$flag' in the compile
1132 # rule into `${derived}_$flag' if it exists.
1133 for my $flag (@{$lang->flags})
1135 my $val = "${derived}_$flag";
1136 $obj_compile =~ s/\(AM_$flag\)/\($val\)/
1140 my $obj_ltcompile = '$(LIBTOOL) --mode=compile ' . $obj_compile;
1142 # We _need_ `-o' for per object rules.
1143 my $output_flag = $lang->output_flag || '-o';
1145 my $depbase = dirname ($obj);
1149 unless $depbase eq '';
1150 $depbase .= '$(DEPDIR)/' . basename ($obj);
1152 # Support for deansified files in subdirectories is ugly
1153 # enough to deserve an explanation.
1155 # A Note about normal ansi2knr processing first. On
1157 # AUTOMAKE_OPTIONS = ansi2knr
1158 # bin_PROGRAMS = foo
1159 # foo_SOURCES = foo.c
1161 # we generate rules similar to:
1163 # foo: foo$U.o; link ...
1164 # foo$U.o: foo$U.c; compile ...
1165 # foo_.c: foo.c; ansi2knr ...
1167 # this is fairly compact, and will call ansi2knr depending
1168 # on the value of $U (`' or `_').
1170 # It's harder with subdir sources. On
1172 # AUTOMAKE_OPTIONS = ansi2knr
1173 # bin_PROGRAMS = foo
1174 # foo_SOURCES = sub/foo.c
1176 # we have to create foo_.c in the current directory.
1177 # (Unless the user asks 'subdir-objects'.) This is important
1178 # in case the same file (`foo.c') is compiled from other
1179 # directories with different cpp options: foo_.c would
1180 # be preprocessed for only one set of options if it were
1181 # put in the subdirectory.
1183 # Because foo$U.o must be built from either foo_.c or
1184 # sub/foo.c we can't be as concise as in the first example.
1187 # foo: foo$U.o; link ...
1188 # foo_.o: foo_.c; compile ...
1189 # foo.o: sub/foo.c; compile ...
1190 # foo_.c: foo.c; ansi2knr ...
1192 # This is why we'll now transform $rule_file twice
1193 # if we detect this case.
1194 # A first time we output the compile rule with `$U'
1195 # replaced by `_' and the source directory removed,
1196 # and another time we simply remove `$U'.
1198 # Note that at this point $source (as computed by
1199 # &handle_single_transform_list) is `sub/foo$U.c'.
1200 # This can be confusing: it can be used as-is when
1201 # subdir-objects is set, otherwise you have to know
1202 # it really means `foo_.c' or `sub/foo.c'.
1203 my $objdir = dirname ($obj);
1204 my $srcdir = dirname ($source);
1205 if ($lang->ansi && $obj =~ /\$U/)
1207 prog_error "`$obj' contains \$U, but `$source' doesn't."
1208 if $source !~ /\$U/;
1210 (my $source_ = $source) =~ s/\$U/_/g;
1211 # Explicitly clean the _.c files if they are in
1212 # a subdirectory. (In the current directory they get
1213 # erased by a `rm -f *_.c' rule.)
1214 $clean_files{$source_} = MOSTLY_CLEAN
1216 # Output an additional rule if _.c and .c are not in
1217 # the same directory. (_.c is always in $objdir.)
1218 if ($objdir ne $srcdir)
1220 (my $obj_ = $obj) =~ s/\$U/_/g;
1221 (my $depbase_ = $depbase) =~ s/\$U/_/g;
1222 $source_ = basename ($source_);
1225 file_contents ($rule_file,
1226 new Automake::Location,
1230 DEPBASE => $depbase_,
1233 OBJ => "$obj_$myext",
1234 OBJOBJ => "$obj_.obj",
1235 LTOBJ => "$obj_.lo",
1237 COMPILE => $obj_compile,
1238 LTCOMPILE => $obj_ltcompile,
1239 -o => $output_flag);
1241 $depbase =~ s/\$U//g;
1242 $source =~ s/\$U//g;
1247 file_contents ($rule_file,
1248 new Automake::Location,
1252 DEPBASE => $depbase,
1255 # Use $myext and not `.o' here, in case
1256 # we are actually building a new source
1257 # file -- e.g. via yacc.
1258 OBJ => "$obj$myext",
1259 OBJOBJ => "$obj.obj",
1262 COMPILE => $obj_compile,
1263 LTCOMPILE => $obj_ltcompile,
1264 -o => $output_flag);
1267 # The rest of the loop is done once per language.
1268 next if defined $done{$lang};
1271 # Load the language dependent Makefile chunks.
1272 my %lang = map { uc ($_) => 0 } keys %languages;
1273 $lang{uc ($lang->name)} = 1;
1274 $output_rules .= file_contents ('lang-compile',
1275 new Automake::Location,
1278 # If the source to a program consists entirely of code from a
1279 # `pure' language, for instance C++ for Fortran 77, then we
1280 # don't need the C compiler code. However if we run into
1281 # something unusual then we do generate the C code. There are
1282 # probably corner cases here that do not work properly.
1283 # People linking Java code to Fortran code deserve pain.
1284 $needs_c ||= ! $lang->pure;
1286 define_compiler_variable ($lang)
1287 if ($lang->compile);
1289 define_linker_variable ($lang)
1292 require_variables ("$am_file.am", $lang->Name . " source seen",
1293 TRUE, @{$lang->config_vars});
1295 # Call the finisher.
1298 # Flags listed in `->flags' are user variables (per GNU Standards),
1299 # they should not be overridden in the Makefile...
1300 my @dont_override = @{$lang->flags};
1301 # ... and so is LDFLAGS.
1302 push @dont_override, 'LDFLAGS' if $lang->link;
1304 foreach my $flag (@dont_override)
1306 my $var = var $flag;
1309 for my $cond ($var->conditions->conds)
1311 if ($var->rdef ($cond)->owner == VAR_MAKEFILE)
1313 msg_cond_var ('gnu', $cond, $flag,
1314 "`$flag' is a user variable, "
1315 . "you should not override it;\n"
1316 . "use `AM_$flag' instead.");
1323 # If the project is entirely C++ or entirely Fortran 77 (i.e., 1
1324 # suffix rule was learned), don't bother with the C stuff. But if
1325 # anything else creeps in, then use it.
1327 if $need_link || suffix_rules_count > 1;
1331 &define_compiler_variable ($languages{'c'})
1332 unless defined $done{$languages{'c'}};
1333 define_linker_variable ($languages{'c'});
1337 # Check to make sure a source defined in LIBOBJS is not explicitly
1338 # mentioned. This is a separate function (as opposed to being inlined
1339 # in handle_source_transform) because it isn't always appropriate to
1341 sub check_libobjs_sources
1343 my ($one_file, $unxformed) = @_;
1345 foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
1346 'dist_EXTRA_', 'nodist_EXTRA_')
1349 my $varname = $prefix . $one_file . '_SOURCES';
1350 my $var = var ($varname);
1353 @files = $var->value_as_list_recursive;
1355 elsif ($prefix eq '')
1357 @files = ($unxformed . '.c');
1364 foreach my $file (@files)
1366 err_var ($prefix . $one_file . '_SOURCES',
1367 "automatically discovered file `$file' should not" .
1368 " be explicitly mentioned")
1369 if defined $libsources{$file};
1376 # handle_single_transform_list ($VAR, $TOPPARENT, $DERIVED, $OBJ, @FILES)
1377 # -----------------------------------------------------------------------
1378 # Does much of the actual work for handle_source_transform.
1380 # $VAR is the name of the variable that the source filenames come from
1381 # $TOPPARENT is the name of the _SOURCES variable which is being processed
1382 # $DERIVED is the name of resulting executable or library
1383 # $OBJ is the object extension (e.g., `$U.lo')
1384 # @FILES is the list of source files to transform
1385 # Result is a list of the names of objects
1386 # %linkers_used will be updated with any linkers needed
1387 sub handle_single_transform_list ($$$$@)
1389 my ($var, $topparent, $derived, $obj, @files) = @_;
1391 my $nonansi_obj = $obj;
1392 $nonansi_obj =~ s/\$U//g;
1394 # Turn sources into objects. We use a while loop like this
1395 # because we might add to @files in the loop.
1396 while (scalar @files > 0)
1400 # Configure substitutions in _SOURCES variables are errors.
1403 my $parent_msg = '';
1404 $parent_msg = "\nand is referred to from `$topparent'"
1405 if $topparent ne $var->name;
1407 "`" . $var->name . "' includes configure substitution `$_'"
1408 . $parent_msg . ";\nconfigure " .
1409 "substitutions are not allowed in _SOURCES variables");
1413 # If the source file is in a subdirectory then the `.o' is put
1414 # into the current directory, unless the subdir-objects option
1417 # Split file name into base and extension.
1418 next if ! /^(?:(.*)\/)?([^\/]*)($KNOWN_EXTENSIONS_PATTERN)$/;
1420 my $directory = $1 || '';
1424 # We must generate a rule for the object if it requires its own flags.
1426 my ($linker, $object);
1428 # This records whether we've seen a derived source file (e.g.
1430 my $derived_source = 0;
1432 # This holds the `aggregate context' of the file we are
1433 # currently examining. If the file is compiled with
1434 # per-object flags, then it will be the name of the object.
1435 # Otherwise it will be `AM'. This is used by the target hook
1436 # language function.
1437 my $aggregate = 'AM';
1439 $extension = &derive_suffix ($extension, $nonansi_obj);
1441 if ($extension_map{$extension} &&
1442 ($lang = $languages{$extension_map{$extension}}))
1444 # Found the language, so see what it says.
1445 &saw_extension ($extension);
1447 # Note: computed subr call. The language rewrite function
1448 # should return one of the LANG_* constants. It could
1449 # also return a list whose first value is such a constant
1450 # and whose second value is a new source extension which
1451 # should be applied. This means this particular language
1452 # generates another source file which we must then process
1454 my $subr = \&{'lang_' . $lang->name . '_rewrite'};
1455 my ($r, $source_extension)
1456 = &$subr ($directory, $base, $extension);
1457 # Skip this entry if we were asked not to process it.
1458 next if $r == LANG_IGNORE;
1460 # Now extract linker and other info.
1461 $linker = $lang->linker;
1464 if (defined $source_extension)
1466 $this_obj_ext = $source_extension;
1467 $derived_source = 1;
1471 $this_obj_ext = $obj;
1475 $this_obj_ext = $nonansi_obj;
1477 $object = $base . $this_obj_ext;
1479 # Do we have per-executable flags for this executable?
1480 my $have_per_exec_flags = 0;
1481 foreach my $flag (@{$lang->flags})
1483 if (set_seen ("${derived}_$flag"))
1485 $have_per_exec_flags = 1;
1490 if ($have_per_exec_flags)
1492 # We have a per-executable flag in effect for this
1493 # object. In this case we rewrite the object's
1494 # name to ensure it is unique. We also require
1495 # the `compile' program to deal with compilers
1496 # where `-c -o' does not work.
1498 # We choose the name `DERIVED_OBJECT' to ensure
1499 # (1) uniqueness, and (2) continuity between
1500 # invocations. However, this will result in a
1501 # name that is too long for losing systems, in
1502 # some situations. So we provide _SHORTNAME to
1505 my $dname = $derived;
1506 my $var = var ($derived . '_SHORTNAME');
1509 # FIXME: should use the same Condition as
1510 # the _SOURCES variable. But this is really
1511 # silly overkill -- nobody should have
1512 # conditional shortnames.
1513 $dname = $var->variable_value;
1515 $object = $dname . '-' . $object;
1517 require_conf_file ("$am_file.am", FOREIGN, 'compile')
1518 if $lang->name eq 'c';
1520 prog_error ($lang->name . " flags defined without compiler")
1521 if ! defined $lang->compile;
1526 # If rewrite said it was ok, put the object into a
1528 if ($r == LANG_SUBDIR && $directory ne '')
1530 $object = $directory . '/' . $object;
1533 # If doing dependency tracking, then we can't print
1534 # the rule. If we have a subdir object, we need to
1535 # generate an explicit rule. Actually, in any case
1536 # where the object is not in `.' we need a special
1537 # rule. The per-object rules in this case are
1538 # generated later, by handle_languages.
1539 if ($renamed || $directory ne '')
1541 my $obj_sans_ext = substr ($object, 0,
1542 - length ($this_obj_ext));
1543 my $full_ansi = $full;
1544 if ($lang->ansi && option 'ansi2knr')
1546 $full_ansi =~ s/$KNOWN_EXTENSIONS_PATTERN$/\$U$&/;
1547 $obj_sans_ext .= '$U';
1550 my $val = ("$full_ansi $obj_sans_ext "
1551 # Only use $this_obj_ext in the derived
1552 # source case because in the other case we
1553 # *don't* want $(OBJEXT) to appear here.
1554 . ($derived_source ? $this_obj_ext : '.o'));
1556 # If we renamed the object then we want to use the
1557 # per-executable flag name. But if this is simply a
1558 # subdir build then we still want to use the AM_ flag
1562 $val = "$derived $val";
1563 $aggregate = $derived;
1570 # Each item on this list is a string consisting of
1571 # four space-separated values: the derived flag prefix
1572 # (e.g. for `foo_CFLAGS', it is `foo'), the name of the
1573 # source file, the base name of the output file, and
1574 # the extension for the object file.
1575 push (@{$lang_specific_files{$lang->name}}, $val);
1578 elsif ($extension eq $nonansi_obj)
1580 # This is probably the result of a direct suffix rule.
1581 # In this case we just accept the rewrite.
1582 $object = "$base$extension";
1587 # No error message here. Used to have one, but it was
1589 # FIXME: we could potentially do more processing here,
1590 # perhaps treating the new extension as though it were a
1591 # new source extension (as above). This would require
1592 # more restructuring than is appropriate right now.
1596 err_am "object `$object' created by `$full' and `$object_map{$object}'"
1597 if (defined $object_map{$object}
1598 && $object_map{$object} ne $full);
1600 my $comp_val = (($object =~ /\.lo$/)
1601 ? COMPILE_LIBTOOL : COMPILE_ORDINARY);
1602 (my $comp_obj = $object) =~ s/\.lo$/.\$(OBJEXT)/;
1603 if (defined $object_compilation_map{$comp_obj}
1604 && $object_compilation_map{$comp_obj} != 0
1605 # Only see the error once.
1606 && ($object_compilation_map{$comp_obj}
1607 != (COMPILE_LIBTOOL | COMPILE_ORDINARY))
1608 && $object_compilation_map{$comp_obj} != $comp_val)
1610 err_am "object `$comp_obj' created both with libtool and without";
1612 $object_compilation_map{$comp_obj} |= $comp_val;
1616 # Let the language do some special magic if required.
1617 $lang->target_hook ($aggregate, $object, $full);
1620 if ($derived_source)
1622 prog_error ($lang->name . " has automatic dependency tracking")
1623 if $lang->autodep ne 'no';
1624 # Make sure this new source file is handled next. That will
1625 # make it appear to be at the right place in the list.
1626 unshift (@files, $object);
1627 # Distribute derived sources unless the source they are
1628 # derived from is not.
1629 &push_dist_common ($object)
1630 unless ($topparent =~ /^(?:nobase_)?nodist_/);
1634 $linkers_used{$linker} = 1;
1636 push (@result, $object);
1638 if (! defined $object_map{$object})
1641 $object_map{$object} = $full;
1643 # If resulting object is in subdir, we need to make
1644 # sure the subdir exists at build time.
1645 if ($object =~ /\//)
1647 # FIXME: check that $DIRECTORY is somewhere in the
1650 # For Java, the way we're handling it right now, a
1651 # `..' component doesn't make sense.
1652 if ($lang->name eq 'java' && $object =~ /(\/|^)\.\.\//)
1654 err_am "`$full' should not contain a `..' component";
1657 # Make sure object is removed by `make mostlyclean'.
1658 $compile_clean_files{$object} = MOSTLY_CLEAN;
1659 # If we have a libtool object then we also must remove
1661 if ($object =~ /\.lo$/)
1663 (my $xobj = $object) =~ s,lo$,\$(OBJEXT),;
1664 $compile_clean_files{$xobj} = MOSTLY_CLEAN;
1666 # Remove any libtool object in this directory.
1667 $libtool_clean_directories{$directory} = 1;
1670 push (@dep_list, require_build_directory ($directory));
1672 # If we're generating dependencies, we also want
1673 # to make sure that the appropriate subdir of the
1674 # .deps directory is created.
1676 require_build_directory ($directory . '/$(DEPDIR)'))
1677 unless option 'no-dependencies';
1680 &pretty_print_rule ($object . ':', "\t", @dep_list)
1681 if scalar @dep_list > 0;
1684 # Transform .o or $o file into .P file (for automatic
1686 if ($lang && $lang->autodep ne 'no')
1688 my $depfile = $object;
1689 $depfile =~ s/\.([^.]*)$/.P$1/;
1690 $depfile =~ s/\$\(OBJEXT\)$/o/;
1691 $dep_files{dirname ($depfile) . '/$(DEPDIR)/'
1692 . basename ($depfile)} = 1;
1701 # define_objects_from_sources ($VAR, $OBJVAR, $NODEFINE, $ONE_FILE,
1702 # $OBJ, $PARENT, $TOPPARENT, $WHERE)
1703 # ---------------------------------------------------------------------
1704 # Define an _OBJECTS variable for a _SOURCES variable (or subvariable)
1707 # $VAR is the name of the _SOURCES variable
1708 # $OBJVAR is the name of the _OBJECTS variable if known (otherwise
1709 # it will be generated and returned).
1710 # $NODEFINE is a boolean: if true, $OBJVAR will not be defined (but
1711 # work done to determine the linker will be).
1712 # $ONE_FILE is the canonical (transformed) name of object to build
1713 # $OBJ is the object extension (i.e. either `.o' or `.lo').
1714 # $TOPPARENT is the _SOURCES variable being processed.
1715 # $WHERE context into which this definition is done
1717 # Result is a pair ($LINKER, $OBJVAR):
1718 # $LINKER is a boolean, true if a linker is needed to deal with the objects
1719 sub define_objects_from_sources ($$$$$$$)
1721 my ($var, $objvar, $nodefine, $one_file, $obj, $topparent, $where) = @_;
1723 my $needlinker = "";
1725 transform_variable_recursively
1726 ($var, $objvar, 'am__objects', $nodefine, $where,
1727 # The transform code to run on each filename.
1729 my ($subvar, $val, $cond, $full_cond) = @_;
1730 my @trans = &handle_single_transform_list ($subvar, $topparent,
1731 $one_file, $obj, $val);
1732 $needlinker = "true" if @trans;
1740 # Handle SOURCE->OBJECT transform for one program or library.
1742 # canonical (transformed) name of object to build
1743 # actual name of object to build
1744 # object extension (i.e. either `.o' or `$o'.
1745 # Return result is name of linker variable that must be used.
1746 # Empty return means just use `LINK'.
1747 sub handle_source_transform
1749 # one_file is canonical name. unxformed is given name. obj is
1751 my ($one_file, $unxformed, $obj, $where) = @_;
1755 # No point in continuing if _OBJECTS is defined.
1756 return if reject_var ($one_file . '_OBJECTS',
1757 $one_file . '_OBJECTS should not be defined');
1762 foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
1763 'dist_EXTRA_', 'nodist_EXTRA_')
1765 my $varname = $prefix . $one_file . "_SOURCES";
1766 my $var = var $varname;
1769 # We are going to define _OBJECTS variables using the prefix.
1770 # Then we glom them all together. So we can't use the null
1771 # prefix here as we need it later.
1772 my $xpfx = ($prefix eq '') ? 'am_' : $prefix;
1774 # Keep track of which prefixes we saw.
1775 $used_pfx{$xpfx} = 1
1776 unless $prefix =~ /EXTRA_/;
1778 push @sources, "\$($varname)";
1779 if ($prefix !~ /^nodist_/)
1781 # If the VAR wasn't defined conditionally, we add
1782 # it to DIST_SOURCES as is. Otherwise we create a
1783 # am__VAR_DIST variable which contains all possible values,
1784 # and add this variable to DIST_SOURCES.
1785 my $distvar = $varname;
1786 if ($var->has_conditional_contents)
1788 $distvar = "am__${varname}_DIST";
1789 my @files = uniq ($var->value_as_list_recursive);
1790 define_pretty_variable ($distvar, TRUE, $where, @files);
1792 push @dist_sources, "\$($distvar)"
1796 define_objects_from_sources ($varname,
1797 $xpfx . $one_file . '_OBJECTS',
1798 $prefix =~ /EXTRA_/,
1799 $one_file, $obj, $varname, $where);
1803 $linker ||= &resolve_linker (%linkers_used);
1806 my @keys = sort keys %used_pfx;
1807 if (scalar @keys == 0)
1809 # The default source for libfoo.la is libfoo.c, but for
1810 # backward compatibility we first look at libfoo_la.c
1811 my $old_default_source = "$one_file.c";
1812 (my $default_source = $unxformed) =~ s,(\.[^./\\]*)?$,.c,;
1813 if ($old_default_source ne $default_source
1814 && (rule $old_default_source || -f $old_default_source))
1816 my $loc = $where->clone;
1818 msg ('obsolete', $loc,
1819 "the default source for `$unxformed' has been changed "
1820 . "to `$default_source'.\n(Using `$old_default_source' for "
1821 . "backward compatibility.)");
1822 $default_source = $old_default_source;
1825 &define_variable ($one_file . "_SOURCES", $default_source, $where);
1826 push (@sources, $default_source);
1827 push (@dist_sources, $default_source);
1831 &handle_single_transform_list ($one_file . '_SOURCES',
1832 $one_file . '_SOURCES',
1835 $linker ||= &resolve_linker (%linkers_used);
1836 define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @result);
1840 @keys = map { '$(' . $_ . $one_file . '_OBJECTS)' } @keys;
1841 define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @keys);
1844 # If we want to use `LINK' we must make sure it is defined.
1854 # handle_lib_objects ($XNAME, $VAR)
1855 # ---------------------------------
1856 # Special-case ALLOCA and LIBOBJS substitutions in _LDADD or _LIBADD variables.
1857 # Also, generate _DEPENDENCIES variable if appropriate.
1859 # transformed name of object being built, or empty string if no object
1860 # name of _LDADD/_LIBADD-type variable to examine
1861 # Returns 1 if LIBOBJS seen, 0 otherwise.
1862 sub handle_lib_objects
1864 my ($xname, $varname) = @_;
1866 my $var = var ($varname);
1867 prog_error "handle_lib_objects: `$varname' undefined"
1869 prog_error "handle_lib_objects: unexpected variable name `$varname'"
1870 unless $varname =~ /^(.*)(?:LIB|LD)ADD$/;
1871 my $prefix = $1 || 'AM_';
1873 my $seen_libobjs = 0;
1876 transform_variable_recursively
1877 ($varname, $xname . '_DEPENDENCIES', 'am__DEPENDENCIES',
1879 # Transformation function, run on each filename.
1881 my ($subvar, $val, $cond, $full_cond) = @_;
1885 # Skip -lfoo and -Ldir silently; these are explicitly allowed.
1886 if ($val !~ /^-[lL]/ &&
1887 # Skip -dlopen and -dlpreopen; these are explicitly allowed
1888 # for Libtool libraries or programs. (Actually we are a bit
1889 # laxest here since this code also applies to non-libtool
1890 # libraries or programs, for which -dlopen and -dlopreopen
1891 # are pure non-sence. Diagnosting this doesn't seems very
1892 # important: the developer will quickly get complaints from
1894 $val !~ /^-dl(?:pre)?open$/ &&
1895 # Only get this error once.
1899 # FIXME: should display a stack of nested variables
1900 # as context when $var != $subvar.
1901 err_var ($var, "linker flags such as `$val' belong in "
1902 . "`${prefix}LDFLAGS");
1906 elsif ($val !~ /^\@.*\@$/)
1908 # Assume we have a file of some sort, and output it into the
1909 # dependency variable. Autoconf substitutions are not output;
1910 # rarely is a new dependency substituted into e.g. foo_LDADD
1911 # -- but bad things (e.g. -lX11) are routinely substituted.
1912 # Note that LIBOBJS and ALLOCA are exceptions to this rule,
1913 # and handled specially below.
1916 elsif ($val =~ /^\@(LT)?LIBOBJS\@$/)
1918 handle_LIBOBJS ($subvar, $full_cond, $1);
1922 elsif ($val =~ /^\@(LT)?ALLOCA\@$/)
1924 handle_ALLOCA ($subvar, $full_cond, $1);
1933 return $seen_libobjs;
1936 sub handle_LIBOBJS ($$$)
1938 my ($var, $cond, $lt) = @_;
1940 my $myobjext = ($1 ? 'l' : '') . 'o';
1942 $var->requires_variables ("\@${lt}LIBOBJS\@ used", $lt . 'LIBOBJS')
1943 if ! keys %libsources;
1945 foreach my $iter (keys %libsources)
1947 if ($iter =~ /\.[cly]$/)
1949 &saw_extension ($&);
1950 &saw_extension ('.c');
1953 if ($iter =~ /\.h$/)
1955 require_file_with_macro ($cond, $var, FOREIGN, $iter);
1957 elsif ($iter ne 'alloca.c')
1959 my $rewrite = $iter;
1960 $rewrite =~ s/\.c$/.P$myobjext/;
1961 $dep_files{'$(DEPDIR)/' . $rewrite} = 1;
1962 $rewrite = "^" . quotemeta ($iter) . "\$";
1963 # Only require the file if it is not a built source.
1964 my $bs = var ('BUILT_SOURCES');
1965 if (! $bs || ! grep (/$rewrite/, $bs->value_as_list_recursive))
1967 require_file_with_macro ($cond, $var, FOREIGN, $iter);
1973 sub handle_ALLOCA ($$$)
1975 my ($var, $cond, $lt) = @_;
1976 my $myobjext = ($lt ? 'l' : '') . 'o';
1978 $var->requires_variables ("\@${lt}ALLOCA\@ used", $lt . 'ALLOCA');
1979 $dep_files{'$(DEPDIR)/alloca.P' . $myobjext} = 1;
1980 require_file_with_macro ($cond, $var, FOREIGN, 'alloca.c');
1981 &saw_extension ('c');
1984 # Canonicalize the input parameter
1988 $string =~ tr/A-Za-z0-9_\@/_/c;
1992 # Canonicalize a name, and check to make sure the non-canonical name
1993 # is never used. Returns canonical name. Arguments are name and a
1994 # list of suffixes to check for.
1995 sub check_canonical_spelling
1997 my ($name, @suffixes) = @_;
1999 my $xname = &canonicalize ($name);
2000 if ($xname ne $name)
2002 foreach my $xt (@suffixes)
2004 reject_var ("$name$xt", "use `$xname$xt', not `$name$xt'");
2014 # Set up the compile suite.
2015 sub handle_compile ()
2018 unless $get_object_extension_was_run;
2021 my $default_includes = '';
2022 if (! option 'nostdinc')
2024 $default_includes = ' -I. -I$(srcdir)';
2026 my $var = var 'CONFIG_HEADER';
2029 foreach my $hdr (split (' ', $var->variable_value))
2031 $default_includes .= ' -I' . dirname ($hdr);
2036 my (@mostly_rms, @dist_rms);
2037 foreach my $item (sort keys %compile_clean_files)
2039 if ($compile_clean_files{$item} == MOSTLY_CLEAN)
2041 push (@mostly_rms, "\t-rm -f $item");
2043 elsif ($compile_clean_files{$item} == DIST_CLEAN)
2045 push (@dist_rms, "\t-rm -f $item");
2049 prog_error 'invalid entry in %compile_clean_files';
2053 my ($coms, $vars, $rules) =
2054 &file_contents_internal (1, "$libdir/am/compile.am",
2055 new Automake::Location,
2056 ('DEFAULT_INCLUDES' => $default_includes,
2057 'MOSTLYRMS' => join ("\n", @mostly_rms),
2058 'DISTRMS' => join ("\n", @dist_rms)));
2059 $output_vars .= $vars;
2060 $output_rules .= "$coms$rules";
2062 # Check for automatic de-ANSI-fication.
2063 if (option 'ansi2knr')
2065 my ($ansi2knr_filename, $ansi2knr_where) = @{option 'ansi2knr'};
2066 my $ansi2knr_dir = '';
2068 require_variables ($ansi2knr_where, "option `ansi2knr' is used",
2069 TRUE, "ANSI2KNR", "U");
2071 # topdir is where ansi2knr should be.
2072 if ($ansi2knr_filename eq 'ansi2knr')
2074 # Only require ansi2knr files if they should appear in
2076 require_file ($ansi2knr_where, FOREIGN,
2077 'ansi2knr.c', 'ansi2knr.1');
2079 # ansi2knr needs to be built before subdirs, so unshift it.
2080 unshift (@all, '$(ANSI2KNR)');
2084 $ansi2knr_dir = dirname ($ansi2knr_filename);
2087 $output_rules .= &file_contents ('ansi2knr',
2088 new Automake::Location,
2089 'ANSI2KNR-DIR' => $ansi2knr_dir);
2096 # Handle libtool rules.
2099 return unless var ('LIBTOOL');
2101 # Libtool requires some files, but only at top level.
2102 require_conf_file_with_macro (TRUE, 'LIBTOOL', FOREIGN, @libtool_files)
2103 if $relative_dir eq '.';
2106 foreach my $item (sort keys %libtool_clean_directories)
2108 my $dir = ($item eq '.') ? '' : "$item/";
2109 # .libs is for Unix, _libs for DOS.
2110 push (@libtool_rms, "\t-rm -rf ${dir}.libs ${dir}_libs");
2113 # Output the libtool compilation rules.
2114 $output_rules .= &file_contents ('libtool',
2115 new Automake::Location,
2116 LTRMS => join ("\n", @libtool_rms));
2119 # handle_programs ()
2120 # ------------------
2121 # Handle C programs.
2124 my @proglist = &am_install_var ('progs', 'PROGRAMS',
2125 'bin', 'sbin', 'libexec', 'pkglib',
2127 return if ! @proglist;
2129 my $seen_global_libobjs =
2130 var ('LDADD') && &handle_lib_objects ('', 'LDADD');
2132 foreach my $pair (@proglist)
2134 my ($where, $one_file) = @$pair;
2136 my $seen_libobjs = 0;
2137 my $obj = &get_object_extension ($one_file);
2139 # Strip any $(EXEEXT) suffix the user might have added, or this
2140 # will confuse &handle_source_transform and &check_canonical_spelling.
2141 # We'll add $(EXEEXT) back later anyway.
2142 $one_file =~ s/\$\(EXEEXT\)$//;
2144 # Canonicalize names and check for misspellings.
2145 my $xname = &check_canonical_spelling ($one_file, '_LDADD', '_LDFLAGS',
2146 '_SOURCES', '_OBJECTS',
2149 $where->push_context ("while processing program `$one_file'");
2150 $where->set (INTERNAL->get);
2152 my $linker = &handle_source_transform ($xname, $one_file, $obj, $where);
2154 if (var ($xname . "_LDADD"))
2156 $seen_libobjs = &handle_lib_objects ($xname, $xname . '_LDADD');
2160 # User didn't define prog_LDADD override. So do it.
2161 &define_variable ($xname . '_LDADD', '$(LDADD)', $where);
2163 # This does a bit too much work. But we need it to
2164 # generate _DEPENDENCIES when appropriate.
2167 $seen_libobjs = &handle_lib_objects ($xname, 'LDADD');
2171 reject_var ($xname . '_LIBADD',
2172 "use `${xname}_LDADD', not `${xname}_LIBADD'");
2174 set_seen ($xname . '_DEPENDENCIES');
2175 set_seen ($xname . '_LDFLAGS');
2177 # Determine program to use for link.
2179 if (var ($xname . '_LINK'))
2181 $xlink = $xname . '_LINK';
2185 $xlink = $linker ? $linker : 'LINK';
2188 # If the resulting program lies into a subdirectory,
2189 # make sure this directory will exist.
2190 my $dirstamp = require_build_directory_maybe ($one_file);
2192 $output_rules .= &file_contents ('program',
2194 PROGRAM => $one_file,
2197 DIRSTAMP => $dirstamp,
2198 EXEEXT => '$(EXEEXT)');
2200 if ($seen_libobjs || $seen_global_libobjs)
2202 if (var ($xname . '_LDADD'))
2204 &check_libobjs_sources ($xname, $xname . '_LDADD');
2206 elsif (var ('LDADD'))
2208 &check_libobjs_sources ($xname, 'LDADD');
2215 # handle_libraries ()
2216 # -------------------
2218 sub handle_libraries
2220 my @liblist = &am_install_var ('libs', 'LIBRARIES',
2221 'lib', 'pkglib', 'noinst', 'check');
2222 return if ! @liblist;
2224 my @prefix = am_primary_prefixes ('LIBRARIES', 0, 'lib', 'pkglib',
2229 my $var = rvar ($prefix[0] . '_LIBRARIES');
2230 $var->requires_variables ('library used', 'RANLIB');
2233 foreach my $pair (@liblist)
2235 my ($where, $onelib) = @$pair;
2237 my $seen_libobjs = 0;
2238 # Check that the library fits the standard naming convention.
2239 if (basename ($onelib) !~ /^lib.*\.a/)
2241 error $where, "`$onelib' is not a standard library name";
2244 $where->push_context ("while processing library `$onelib'");
2245 $where->set (INTERNAL->get);
2247 my $obj = &get_object_extension ($onelib);
2249 # Canonicalize names and check for misspellings.
2250 my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_SOURCES',
2251 '_OBJECTS', '_DEPENDENCIES',
2254 if (! var ($xlib . '_AR'))
2256 &define_variable ($xlib . '_AR', '$(AR) $(ARFLAGS)', $where);
2259 # Generate support for conditional object inclusion in
2261 if (var ($xlib . '_LIBADD'))
2263 if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2270 &define_variable ($xlib . "_LIBADD", '', $where);
2273 reject_var ($xlib . '_LDADD',
2274 "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
2276 # Make sure we at look at this.
2277 set_seen ($xlib . '_DEPENDENCIES');
2279 &handle_source_transform ($xlib, $onelib, $obj, $where);
2281 # If the resulting library lies into a subdirectory,
2282 # make sure this directory will exist.
2283 my $dirstamp = require_build_directory_maybe ($onelib);
2285 $output_rules .= &file_contents ('library',
2289 DIRSTAMP => $dirstamp);
2293 if (var ($xlib . '_LIBADD'))
2295 &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
2302 # handle_ltlibraries ()
2303 # ---------------------
2304 # Handle shared libraries.
2305 sub handle_ltlibraries
2307 my @liblist = &am_install_var ('ltlib', 'LTLIBRARIES',
2308 'noinst', 'lib', 'pkglib', 'check');
2309 return if ! @liblist;
2312 my @prefix = am_primary_prefixes ('LTLIBRARIES', 0, 'lib', 'pkglib',
2317 my $var = rvar ($prefix[0] . '_LTLIBRARIES');
2318 $var->requires_variables ('Libtool library used', 'LIBTOOL');
2321 my %liblocations = (); # Location (in Makefile.am) of each library.
2323 foreach my $key (@prefix)
2325 # Get the installation directory of each library.
2326 (my $dir = $key) =~ s/^nobase_//;
2327 my $var = rvar ($key . '_LTLIBRARIES');
2328 for my $pair ($var->value_as_list_recursive (location => 1))
2330 my ($where, $lib) = @$pair;
2331 # We reject libraries which are installed in several places,
2332 # because we don't handle this in the rules (think `-rpath').
2334 # However, we allow the same library to be listed many times
2335 # for the same directory. This is for users who need setups
2338 # lib_LTLIBRARIES = libfoo.la
2341 # lib_LTLIBRARIES = libfoo.la
2344 # Actually this will also allow
2345 # lib_LTLIBRARIES = libfoo.la libfoo.la
2346 # Diagnosing this case doesn't seem worth the plain (we'd
2347 # have to fill $instdirs on a per-condition basis, check
2348 # implied conditions, etc.)
2349 if (defined $instdirs{$lib} && $instdirs{$lib} ne $dir)
2351 error ($where, "`$lib' is already going to be installed in "
2352 . "`$instdirs{$lib}'", partial => 1);
2353 error ($liblocations{$lib}, "`$lib' previously declared here");
2357 $instdirs{$lib} = $dir;
2358 $liblocations{$lib} = $where->clone;
2363 foreach my $pair (@liblist)
2365 my ($where, $onelib) = @$pair;
2367 my $seen_libobjs = 0;
2368 my $obj = &get_object_extension ($onelib);
2370 # Canonicalize names and check for misspellings.
2371 my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_LDFLAGS',
2372 '_SOURCES', '_OBJECTS',
2375 # Check that the library fits the standard naming convention.
2376 my $libname_rx = "^lib.*\.la";
2377 my $ldvar = var ("${xlib}_LDFLAGS") || var ('AM_LDFLAGS');
2378 my $ldvar2 = var ('LDFLAGS');
2379 if (($ldvar && grep (/-module/, $ldvar->value_as_list_recursive))
2380 || ($ldvar2 && grep (/-module/, $ldvar2->value_as_list_recursive)))
2382 # Relax name checking for libtool modules.
2383 $libname_rx = "\.la";
2385 if (basename ($onelib) !~ /$libname_rx$/)
2387 msg ('error-gnu/warn', $where,
2388 "`$onelib' is not a standard libtool library name");
2391 $where->push_context ("while processing Libtool library `$onelib'");
2392 $where->set (INTERNAL->get);
2394 # Make sure we at look at these.
2395 set_seen ($xlib . '_LDFLAGS');
2396 set_seen ($xlib . '_DEPENDENCIES');
2398 # Generate support for conditional object inclusion in
2400 if (var ($xlib . '_LIBADD'))
2402 if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2409 &define_variable ($xlib . "_LIBADD", '', $where);
2412 reject_var ("${xlib}_LDADD",
2413 "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
2416 my $linker = &handle_source_transform ($xlib, $onelib, $obj, $where);
2418 # Determine program to use for link.
2420 if (var ($xlib . '_LINK'))
2422 $xlink = $xlib . '_LINK';
2426 $xlink = $linker ? $linker : 'LINK';
2430 if ($instdirs{$onelib} eq 'EXTRA'
2431 || $instdirs{$onelib} eq 'noinst'
2432 || $instdirs{$onelib} eq 'check')
2434 # It's an EXTRA_ library, so we can't specify -rpath,
2435 # because we don't know where the library will end up.
2436 # The user probably knows, but generally speaking automake
2437 # doesn't -- and in fact configure could decide
2438 # dynamically between two different locations.
2443 $rpath = ('-rpath $(' . $instdirs{$onelib} . 'dir)');
2446 # If the resulting library lies into a subdirectory,
2447 # make sure this directory will exist.
2448 my $dirstamp = require_build_directory_maybe ($onelib);
2450 # Remember to cleanup .libs/ in this directory.
2451 my $dirname = dirname $onelib;
2452 $libtool_clean_directories{$dirname} = 1;
2454 $output_rules .= &file_contents ('ltlibrary',
2456 LTLIBRARY => $onelib,
2457 XLTLIBRARY => $xlib,
2460 DIRSTAMP => $dirstamp);
2463 if (var ($xlib . '_LIBADD'))
2465 &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
2471 # See if any _SOURCES variable were misspelled.
2474 # It is ok if the user sets this particular variable.
2475 set_seen 'AM_LDFLAGS';
2477 foreach my $var (variables)
2479 my $varname = $var->name;
2480 # A configure variable is always legitimate.
2481 next if exists $configure_vars{$varname};
2484 foreach my $primary ('_SOURCES', '_LIBADD', '_LDADD', '_LDFLAGS',
2487 if ($varname =~ /$primary$/)
2495 for my $cond ($var->conditions->conds)
2497 msg_var 'syntax', $var, "unused variable: `$varname'"
2498 unless $var->rdef ($cond)->seen;
2507 # NOTE we no longer automatically clean SCRIPTS, because it is
2508 # useful to sometimes distribute scripts verbatim. This happens
2509 # e.g. in Automake itself.
2510 &am_install_var ('-candist', 'scripts', 'SCRIPTS',
2511 'bin', 'sbin', 'libexec', 'pkgdata',
2518 ## ------------------------ ##
2519 ## Handling Texinfo files. ##
2520 ## ------------------------ ##
2522 # ($OUTFILE, $VFILE, @CLEAN_FILES)
2523 # &scan_texinfo_file ($FILENAME)
2524 # ------------------------------
2525 # $OUTFILE - name of the info file produced by $FILENAME.
2526 # $VFILE - name of the version.texi file used (undef if none).
2527 # @CLEAN_FILES - list of byproducts (indexes etc.)
2528 sub scan_texinfo_file ($)
2530 my ($filename) = @_;
2532 # Some of the following extensions are always created, no matter
2533 # whether indexes are used or not. Other (like cps, fns, ... pgs)
2534 # are only created when they are used. We used to scan $FILENAME
2535 # for their use, but that is not enough: they could be used in
2536 # included files. We can't scan included files because we don't
2537 # know the include path. Therefore we always erase these files, no
2538 # matter whether they are used or not.
2540 # (tmp is only created if an @macro is used and a certain e-TeX
2541 # feature is not available.)
2542 my %clean_suffixes =
2543 map { $_ => 1 } (qw(aux log toc tmp
2549 pg pgs)); # grep 'new.*index' texinfo.tex
2551 my $texi = new Automake::XFile "< $filename";
2552 verb "reading $filename";
2554 my ($outfile, $vfile);
2555 while ($_ = $texi->getline)
2557 if (/^\@setfilename +(\S+)/)
2559 # Honor only the first @setfilename. (It's possible to have
2560 # more occurrences later if the manual shows examples of how
2561 # to use @setfilename...)
2565 if ($outfile =~ /\.(.+)$/ && $1 ne 'info')
2567 error ("$filename:$.",
2568 "output `$outfile' has unrecognized extension");
2572 # A "version.texi" file is actually any file whose name matches
2574 elsif (/^\@include\s+(vers[^.]*\.texi)\s*$/)
2579 # Try to find new or unused indexes.
2581 # Creating a new category of index.
2582 elsif (/^\@def(code)?index (\w+)/)
2584 $clean_suffixes{$2} = 1;
2585 $clean_suffixes{"$2s"} = 1;
2588 # Merging an index into an another.
2589 elsif (/^\@syn(code)?index (\w+) (\w+)/)
2591 delete $clean_suffixes{"$2s"};
2592 $clean_suffixes{"$3s"} = 1;
2599 err_am "`$filename' missing \@setfilename";
2603 my $infobase = basename ($filename);
2604 $infobase =~ s/\.te?xi(nfo)?$//;
2605 return ($outfile, $vfile,
2606 map { "$infobase.$_" } (sort keys %clean_suffixes));
2610 # ($DIRSTAMP, @CLEAN_FILES)
2611 # output_texinfo_build_rules ($SOURCE, $DEST, $INSRC, @DEPENDENCIES)
2612 # ------------------------------------------------------------------
2613 # SOURCE - the source Texinfo file
2614 # DEST - the destination Info file
2615 # INSRC - wether DEST should be built in the source tree
2616 # DEPENDENCIES - known dependencies
2617 sub output_texinfo_build_rules ($$$@)
2619 my ($source, $dest, $insrc, @deps) = @_;
2621 # Split `a.texi' into `a' and `.texi'.
2622 my ($spfx, $ssfx) = ($source =~ /^(.*?)(\.[^.]*)?$/);
2623 my ($dpfx, $dsfx) = ($dest =~ /^(.*?)(\.[^.]*)?$/);
2628 # We can output two kinds of rules: the "generic" rules use Make
2629 # suffix rules and are appropriate when $source and $dest do not lie
2630 # in a sub-directory; the "specific" rules are needed in the other
2633 # The former are output only once (this is not really apparent here,
2634 # but just remember that some logic deeper in Automake will not
2635 # output the same rule twice); while the later need to be output for
2636 # each Texinfo source.
2639 my $sdir = dirname $source;
2640 if ($sdir eq '.' && dirname ($dest) eq '.')
2643 $makeinfoflags = '-I $(srcdir)';
2648 $makeinfoflags = "-I $sdir -I \$(srcdir)/$sdir";
2651 # A directory can contain two kinds of info files: some built in the
2652 # source tree, and some built in the build tree. The rules are
2653 # different in each case. However we cannot output two different
2654 # set of generic rules. Because in-source builds are more usual, we
2655 # use generic rules in this case and fall back to "specific" rules
2656 # for build-dir builds. (It should not be a problem to invert this
2658 $generic = 0 unless $insrc;
2660 # We cannot use a suffix rule to build info files with an empty
2661 # extension. Otherwise we would output a single suffix inference
2662 # rule, with separate dependencies, as in
2666 # foo.info: foo.texi
2668 # which confuse Solaris make. (See the Autoconf manual for
2669 # details.) Therefore we use a specific rule in this case. This
2670 # applies to info files only (dvi and pdf files always have an
2672 my $generic_info = ($generic && $dsfx) ? 1 : 0;
2674 # If the resulting file lie into a subdirectory,
2675 # make sure this directory will exist.
2676 my $dirstamp = require_build_directory_maybe ($dest);
2678 my $dipfx = ($insrc ? '$(srcdir)/' : '') . $dpfx;
2680 $output_rules .= file_contents ('texibuild',
2681 new Automake::Location,
2683 DEST_PREFIX => $dpfx,
2684 DEST_INFO_PREFIX => $dipfx,
2685 DEST_SUFFIX => $dsfx,
2686 DIRSTAMP => $dirstamp,
2687 GENERIC => $generic,
2688 GENERIC_INFO => $generic_info,
2690 MAKEINFOFLAGS => $makeinfoflags,
2693 SOURCE_INFO => ($generic_info
2695 SOURCE_REAL => $source,
2696 SOURCE_SUFFIX => $ssfx,
2698 return ($dirstamp, "$dpfx.dvi", "$dpfx.pdf", "$dpfx.ps", "$dpfx.html");
2703 # handle_texinfo_helper ($info_texinfos)
2704 # --------------------------------------
2705 # Handle all Texinfo source; helper for handle_texinfo.
2706 sub handle_texinfo_helper ($)
2708 my ($info_texinfos) = @_;
2709 my (@infobase, @info_deps_list, @texi_deps);
2714 # Build a regex matching user-cleaned files.
2715 my $d = var 'DISTCLEANFILES';
2716 my $c = var 'CLEANFILES';
2718 push @f, $d->value_as_list_recursive (inner_expand => 1) if $d;
2719 push @f, $c->value_as_list_recursive (inner_expand => 1) if $c;
2720 @f = map { s|[^A-Za-z_0-9*\[\]\-]|\\$&|g; s|\*|[^/]*|g; $_; } @f;
2721 my $user_cleaned_files = '^(?:' . join ('|', @f) . ')$';
2724 ($info_texinfos->value_as_list_recursive (inner_expand => 1))
2726 my $infobase = $texi;
2727 $infobase =~ s/\.(txi|texinfo|texi)$//;
2729 if ($infobase eq $texi)
2731 # FIXME: report line number.
2732 err_am "texinfo file `$texi' has unrecognized extension";
2736 push @infobase, $infobase;
2738 # If 'version.texi' is referenced by input file, then include
2739 # automatic versioning capability.
2740 my ($out_file, $vtexi, @clean_files) =
2741 scan_texinfo_file ("$relative_dir/$texi")
2743 push (@texi_cleans, @clean_files);
2745 # If the Texinfo source is in a subdirectory, create the
2746 # resulting info in this subdirectory. If it is in the current
2747 # directory, try hard to not prefix "./" because it breaks the
2749 my $outdir = dirname ($texi) . '/';
2750 $outdir = "" if $outdir eq './';
2751 $out_file = $outdir . $out_file;
2753 # Until Automake 1.6.3, .info files were built in the
2754 # source tree. This was an obstacle to the support of
2755 # non-distributed .info files, and non-distributed .texi
2758 # * Non-distributed .texi files is important in some packages
2759 # where .texi files are built at make time, probably using
2760 # other binaries built in the package itself, maybe using
2761 # tools or information found on the build host. Because
2762 # these files are not distributed they are always rebuilt
2763 # at make time; they should therefore not lie in the source
2764 # directory. One plan was to support this using
2765 # nodist_info_TEXINFOS or something similar. (Doing this
2766 # requires some sanity checks. For instance Automake should
2768 # dist_info_TEXINFO = foo.texi
2769 # nodist_foo_TEXINFO = included.texi
2770 # because a distributed file should never depend on a
2771 # non-distributed file.)
2773 # * If .texi files are not distributed, then .info files should
2774 # not be distributed either. There are also cases where one
2775 # want to distribute .texi files, but do not want to
2776 # distribute the .info files. For instance the Texinfo package
2777 # distributes the tool used to build these files; it would
2778 # be a waste of space to distribute them. It's not clear
2779 # which syntax we should use to indicate that .info files should
2780 # not be distributed. Akim Demaille suggested that eventually
2781 # we switch to a new syntax:
2782 # | Maybe we should take some inspiration from what's already
2783 # | done in the rest of Automake. Maybe there is too much
2784 # | syntactic sugar here, and you want
2785 # | nodist_INFO = bar.info
2786 # | dist_bar_info_SOURCES = bar.texi
2787 # | bar_texi_DEPENDENCIES = foo.texi
2788 # | with a bit of magic to have bar.info represent the whole
2789 # | bar*info set. That's a lot more verbose that the current
2790 # | situation, but it is # not new, hence the user has less
2793 # | But there is still too much room for meaningless specs:
2794 # | nodist_INFO = bar.info
2795 # | dist_bar_info_SOURCES = bar.texi
2796 # | dist_PS = bar.ps something-written-by-hand.ps
2797 # | nodist_bar_ps_SOURCES = bar.texi
2798 # | bar_texi_DEPENDENCIES = foo.texi
2799 # | here bar.texi is dist_ in line 2, and nodist_ in 4.
2801 # Back to the point, it should be clear that in order to support
2802 # non-distributed .info files, we need to build them in the
2803 # build tree, not in the source tree (non-distributed .texi
2804 # files are less of a problem, because we do not output build
2805 # rules for them). In Automake 1.7 .info build rules have been
2806 # largely cleaned up so that .info files get always build in the
2807 # build tree, even when distributed. The idea was that
2808 # (1) if during a VPATH build the .info file was found to be
2809 # absent or out-of-date (in the source tree or in the
2810 # build tree), Make would rebuild it in the build tree.
2811 # If an up-to-date source-tree of the .info file existed,
2812 # make would not rebuild it in the build tree.
2813 # (2) having two copies of .info files, one in the source tree
2814 # and one (newer) in the build tree is not a problem
2815 # because `make dist' always pick files in the build tree
2817 # However it turned out the be a bad idea for several reasons:
2818 # * Tru64, OpenBSD, and FreeBSD (not NetBSD) Make do behave
2819 # like GNU Make on point (1) above. These implementations
2820 # of Make would always rebuild .info files in the build
2821 # tree, even if such files were up to date in the source
2822 # tree. Consequently, it was impossible the perform a VPATH
2823 # build of a package containing Texinfo files using these
2824 # Make implementations.
2825 # (Refer to the Autoconf Manual, section "Limitation of
2826 # Make", paragraph "VPATH", item "target lookup", for
2827 # an account of the differences between these
2829 # * The GNU Coding Standards require these files to be built
2830 # in the source-tree (when they are distributed, that is).
2831 # * Keeping a fresher copy of distributed files in the
2832 # build tree can be annoying during development because
2833 # - if the files is kept under CVS, you really want it
2834 # to be updated in the source tree
2835 # - it os confusing that `make distclean' does not erase
2836 # all files in the build tree.
2838 # Consequently, starting with Automake 1.8, .info files are
2839 # built in the source tree again. Because we still plan to
2840 # support non-distributed .info files at some point, we
2841 # have a single variable ($INSRC) that controls whether
2842 # the current .info file must be built in the source tree
2843 # or in the build tree. Actually this variable is switched
2844 # off for .info files that appear to be cleaned; this is
2845 # for backward compatibility with package such as Texinfo,
2846 # which do things like
2847 # info_TEXINFOS = texinfo.txi info-stnd.texi info.texi
2848 # DISTCLEANFILES = texinfo texinfo-* info*.info*
2849 # # Do not create info files for distribution.
2851 # in order not to distribute .info files.
2852 my $insrc = ($out_file =~ $user_cleaned_files) ? 0 : 1;
2854 my $soutdir = '$(srcdir)/' . $outdir;
2855 $outdir = $soutdir if $insrc;
2857 # If user specified file_TEXINFOS, then use that as explicit
2860 push (@texi_deps, "$soutdir$vtexi") if $vtexi;
2862 my $canonical = canonicalize ($infobase);
2863 if (var ($canonical . "_TEXINFOS"))
2865 push (@texi_deps, '$(' . $canonical . '_TEXINFOS)');
2866 push_dist_common ('$(' . $canonical . '_TEXINFOS)');
2869 my ($dirstamp, @cfiles) =
2870 output_texinfo_build_rules ($texi, $out_file, $insrc, @texi_deps);
2871 push (@texi_cleans, @cfiles);
2873 push (@info_deps_list, $out_file);
2875 # If a vers*.texi file is needed, emit the rule.
2878 err_am ("`$vtexi', included in `$texi', "
2879 . "also included in `$versions{$vtexi}'")
2880 if defined $versions{$vtexi};
2881 $versions{$vtexi} = $texi;
2883 # We number the stamp-vti files. This is doable since the
2884 # actual names don't matter much. We only number starting
2885 # with the second one, so that the common case looks nice.
2886 my $vti = ($done ? $done : 'vti');
2889 # This is ugly, but it is our historical practice.
2890 if ($config_aux_dir_set_in_configure_in)
2892 require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
2897 require_file_with_macro (TRUE, 'info_TEXINFOS',
2898 FOREIGN, 'mdate-sh');
2902 if ($config_aux_dir_set_in_configure_in)
2904 $conf_dir = $config_aux_dir;
2905 $conf_dir .= '/' unless $conf_dir =~ /\/$/;
2909 $conf_dir = '$(srcdir)/';
2911 $output_rules .= file_contents ('texi-vers',
2912 new Automake::Location,
2915 STAMPVTI => "${soutdir}stamp-$vti",
2916 VTEXI => "$soutdir$vtexi",
2918 DIRSTAMP => $dirstamp);
2922 # Handle location of texinfo.tex.
2923 my $need_texi_file = 0;
2925 if (var ('TEXINFO_TEX'))
2927 # The user defined TEXINFO_TEX so assume he knows what he is
2929 $texinfodir = ('$(srcdir)/'
2930 . dirname (variable_value ('TEXINFO_TEX')));
2932 elsif (option 'cygnus')
2934 $texinfodir = '$(top_srcdir)/../texinfo';
2935 define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
2937 elsif ($config_aux_dir_set_in_configure_in)
2939 $texinfodir = $config_aux_dir;
2940 define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
2941 $need_texi_file = 2; # so that we require_conf_file later
2945 $texinfodir = '$(srcdir)';
2946 $need_texi_file = 1;
2948 define_variable ('am__TEXINFO_TEX_DIR', $texinfodir, INTERNAL);
2950 push (@dist_targets, 'dist-info');
2952 if (! option 'no-installinfo')
2954 # Make sure documentation is made and installed first. Use
2955 # $(INFO_DEPS), not 'info', because otherwise recursive makes
2956 # get run twice during "make all".
2957 unshift (@all, '$(INFO_DEPS)');
2960 define_files_variable ("DVIS", @infobase, 'dvi', INTERNAL);
2961 define_files_variable ("PDFS", @infobase, 'pdf', INTERNAL);
2962 define_files_variable ("PSS", @infobase, 'ps', INTERNAL);
2963 define_files_variable ("HTMLS", @infobase, 'html', INTERNAL);
2965 # This next isn't strictly needed now -- the places that look here
2966 # could easily be changed to look in info_TEXINFOS. But this is
2967 # probably better, in case noinst_TEXINFOS is ever supported.
2968 define_variable ("TEXINFOS", variable_value ('info_TEXINFOS'), INTERNAL);
2970 # Do some error checking. Note that this file is not required
2971 # when in Cygnus mode; instead we defined TEXINFO_TEX explicitly
2973 if ($need_texi_file && ! option 'no-texinfo.tex')
2975 if ($need_texi_file > 1)
2977 require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
2982 require_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
2987 return makefile_wrap ("", "\t ", @texi_cleans);
2993 # Handle all Texinfo source.
2994 sub handle_texinfo ()
2996 reject_var 'TEXINFOS', "`TEXINFOS' is an anachronism; use `info_TEXINFOS'";
2997 # FIXME: I think this is an obsolete future feature name.
2998 reject_var 'html_TEXINFOS', "HTML generation not yet supported";
3000 my $info_texinfos = var ('info_TEXINFOS');
3004 $texiclean = handle_texinfo_helper ($info_texinfos);
3006 $output_rules .= file_contents ('texinfos',
3007 new Automake::Location,
3008 TEXICLEAN => $texiclean,
3009 'LOCAL-TEXIS' => !!$info_texinfos);
3013 # Handle any man pages.
3014 sub handle_man_pages
3016 reject_var 'MANS', "`MANS' is an anachronism; use `man_MANS'";
3018 # Find all the sections in use. We do this by first looking for
3019 # "standard" sections, and then looking for any additional
3020 # sections used in man_MANS.
3021 my (%sections, %vlist);
3022 # We handle nodist_ for uniformity. man pages aren't distributed
3023 # by default so it isn't actually very important.
3024 foreach my $pfx ('', 'dist_', 'nodist_')
3026 # Add more sections as needed.
3027 foreach my $section ('0'..'9', 'n', 'l')
3029 my $varname = $pfx . 'man' . $section . '_MANS';
3032 $sections{$section} = 1;
3033 $varname = '$(' . $varname . ')';
3034 $vlist{$varname} = 1;
3036 &push_dist_common ($varname)
3041 my $varname = $pfx . 'man_MANS';
3042 my $var = var ($varname);
3045 foreach ($var->value_as_list_recursive)
3047 # A page like `foo.1c' goes into man1dir.
3048 if (/\.([0-9a-z])([a-z]*)$/)
3054 $varname = '$(' . $varname . ')';
3055 $vlist{$varname} = 1;
3056 &push_dist_common ($varname)
3061 return unless %sections;
3063 # Now for each section, generate an install and uninstall rule.
3064 # Sort sections so output is deterministic.
3065 foreach my $section (sort keys %sections)
3067 $output_rules .= &file_contents ('mans',
3068 new Automake::Location,
3069 SECTION => $section);
3072 my @mans = sort keys %vlist;
3073 $output_vars .= file_contents ('mans-vars',
3074 new Automake::Location,
3077 push (@all, '$(MANS)')
3078 unless option 'no-installman';
3081 # Handle DATA variables.
3084 &am_install_var ('-noextra', '-candist', 'data', 'DATA',
3085 'data', 'sysconf', 'sharedstate', 'localstate',
3086 'pkgdata', 'lisp', 'noinst', 'check');
3094 if (var ('SUBDIRS'))
3096 $output_rules .= ("tags-recursive:\n"
3097 . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3098 # Never fail here if a subdir fails; it
3100 . "\t test \"\$\$subdir\" = . || (cd \$\$subdir"
3101 . " && \$(MAKE) \$(AM_MAKEFLAGS) tags); \\\n"
3103 push (@tag_deps, 'tags-recursive');
3104 &depend ('.PHONY', 'tags-recursive');
3106 $output_rules .= ("ctags-recursive:\n"
3107 . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3108 # Never fail here if a subdir fails; it
3110 . "\t test \"\$\$subdir\" = . || (cd \$\$subdir"
3111 . " && \$(MAKE) \$(AM_MAKEFLAGS) ctags); \\\n"
3113 push (@ctag_deps, 'ctags-recursive');
3114 &depend ('.PHONY', 'ctags-recursive');
3117 if (&saw_sources_p (1)
3118 || var ('ETAGS_ARGS')
3122 foreach my $spec (@config_headers)
3124 my ($out, @ins) = split_config_file_spec ($spec);
3125 foreach my $in (@ins)
3127 # If the config header source is in this directory,
3129 push @config, basename ($in)
3130 if $relative_dir eq dirname ($in);
3133 $output_rules .= &file_contents ('tags',
3134 new Automake::Location,
3135 CONFIG => "@config",
3136 TAGSDIRS => "@tag_deps",
3137 CTAGSDIRS => "@ctag_deps");
3139 set_seen 'TAGS_DEPENDENCIES';
3141 elsif (reject_var ('TAGS_DEPENDENCIES',
3142 "doesn't make sense to define `TAGS_DEPENDENCIES'"
3143 . "without\nsources or `ETAGS_ARGS'"))
3148 # Every Makefile must define some sort of TAGS rule.
3149 # Otherwise, it would be possible for a top-level "make TAGS"
3150 # to fail because some subdirectory failed.
3151 $output_rules .= "tags: TAGS\nTAGS:\n\n";
3153 $output_rules .= "ctags: CTAGS\nCTAGS:\n\n";
3157 # Handle multilib support.
3160 if ($seen_multilib && $relative_dir eq '.')
3162 $output_rules .= &file_contents ('multilib', new Automake::Location);
3163 push (@all, 'all-multi');
3169 # &for_dist_common ($A, $B)
3170 # -------------------------
3171 # Subroutine for &handle_dist: sort files to dist.
3173 # We put README first because it then becomes easier to make a
3174 # Usenet-compliant shar file (in these, README must be first).
3176 # FIXME: do more ordering of files here.
3191 # Handle 'dist' target.
3194 return if option 'no-dist';
3196 # At least one of the archive formats must be enabled.
3197 if ($relative_dir eq '.')
3199 my $archive_defined = option 'no-dist-gzip' ? 0 : 1;
3200 $archive_defined ||=
3201 grep { option "dist-$_" } ('shar', 'zip', 'tarZ', 'bzip2');
3202 error (option 'no-dist-gzip',
3203 "no-dist-gzip specified but no dist-* specified, "
3204 . "at least one archive format must be enabled")
3205 unless $archive_defined;
3208 # Look for common files that should be included in distribution.
3209 # If the aux dir is set, and it does not have a Makefile.am, then
3210 # we check for these files there as well.
3213 if ($relative_dir eq '.'
3214 && $config_aux_dir_set_in_configure_in)
3216 ($auxdir = $config_aux_dir) =~ s,^\$\(top_srcdir\)/,,;
3217 if (! &is_make_dir ($auxdir))
3222 foreach my $cfile (@common_files)
3224 if (-f ($relative_dir . "/" . $cfile)
3225 # The file might be absent, but if it can be built it's ok.
3228 &push_dist_common ($cfile);
3231 # Don't use `elsif' here because a file might meaningfully
3232 # appear in both directories.
3233 if ($check_aux && -f ($auxdir . '/' . $cfile))
3235 &push_dist_common ($auxdir . '/' . $cfile);
3239 # We might copy elements from $configure_dist_common to
3240 # %dist_common if we think we need to. If the file appears in our
3241 # directory, we would have discovered it already, so we don't
3242 # check that. But if the file is in a subdir without a Makefile,
3243 # we want to distribute it here if we are doing `.'. Ugly!
3244 if ($relative_dir eq '.')
3246 foreach my $file (split (' ' , $configure_dist_common))
3248 push_dist_common ($file)
3249 unless is_make_dir (dirname ($file));
3253 # Files to distributed. Don't use ->value_as_list_recursive
3254 # as it recursively expands `$(dist_pkgdata_DATA)' etc.
3255 my @dist_common = split (' ', rvar ('DIST_COMMON')->variable_value);
3256 @dist_common = uniq (sort for_dist_common (@dist_common));
3257 variable_delete 'DIST_COMMON';
3258 define_pretty_variable ('DIST_COMMON', TRUE, INTERNAL, @dist_common);
3260 # Now that we've processed DIST_COMMON, disallow further attempts
3262 $handle_dist_run = 1;
3264 # Scan EXTRA_DIST to see if we need to distribute anything from a
3265 # subdir. If so, add it to the list. I didn't want to do this
3266 # originally, but there were so many requests that I finally
3268 my $extra_dist = var ('EXTRA_DIST');
3271 # FIXME: This should be fixed to work with conditions. That
3272 # will require only making the entries in %dist_dirs under the
3273 # appropriate condition. This is meaningful if the nature of
3274 # the distribution should depend upon the configure options
3276 foreach ($extra_dist->value_as_list_recursive)
3279 next unless s,/+[^/]+$,,;
3285 # We have to check DIST_COMMON for extra directories in case the
3286 # user put a source used in AC_OUTPUT into a subdir.
3287 my $topsrcdir = backname ($relative_dir);
3288 foreach (rvar ('DIST_COMMON')->value_as_list_recursive)
3291 s/\$\(top_srcdir\)/$topsrcdir/;
3293 # Strip any leading `./'.
3295 next unless s,/+[^/]+$,,;
3300 # Rule to check whether a distribution is viable.
3301 my %transform = ('DISTCHECK-HOOK' => !! rule 'distcheck-hook',
3302 'GETTEXT' => $seen_gettext && !$seen_gettext_external);
3304 # Prepend $(distdir) to each directory given.
3305 my %rewritten = map { '$(distdir)/' . "$_" => 1 } keys %dist_dirs;
3306 $transform{'DISTDIRS'} = join (' ', sort keys %rewritten);
3308 # If we have SUBDIRS, create all dist subdirectories and do
3310 my $subdirs = var ('SUBDIRS');
3313 # If SUBDIRS is conditionally defined, then set DIST_SUBDIRS
3314 # to all possible directories, and use it. If DIST_SUBDIRS is
3315 # defined, just use it.
3316 my $dist_subdir_name;
3317 # Note that we check DIST_SUBDIRS first on purpose, so that
3318 # we don't call has_conditional_contents for now reason.
3319 # (In the past one project used so many conditional subdirectories
3320 # that calling has_conditional_contents on SUBDIRS caused
3321 # automake to grow to 150Mb -- this should not happen with
3322 # the current implementation of has_conditional_contents,
3323 # but it's more efficient to avoid the call anyway.)
3324 if (var ('DIST_SUBDIRS'))
3326 $dist_subdir_name = 'DIST_SUBDIRS';
3328 elsif ($subdirs->has_conditional_contents)
3330 $dist_subdir_name = 'DIST_SUBDIRS';
3331 define_pretty_variable
3332 ('DIST_SUBDIRS', TRUE, INTERNAL,
3333 uniq ($subdirs->value_as_list_recursive));
3337 $dist_subdir_name = 'SUBDIRS';
3338 # We always define this because that is what `distclean'
3340 define_pretty_variable ('DIST_SUBDIRS', TRUE, INTERNAL,
3344 $transform{'DIST_SUBDIR_NAME'} = $dist_subdir_name;
3347 # If the target `dist-hook' exists, make sure it is run. This
3348 # allows users to do random weird things to the distribution
3349 # before it is packaged up.
3350 push (@dist_targets, 'dist-hook')
3351 if rule 'dist-hook';
3352 $transform{'DIST-TARGETS'} = join(' ', @dist_targets);
3354 $output_rules .= &file_contents ('distdir',
3355 new Automake::Location,
3360 # &handle_subdirs ()
3361 # ------------------
3362 # Handle subdirectories.
3363 sub handle_subdirs ()
3365 my $subdirs = var ('SUBDIRS');
3369 my @subdirs = $subdirs->value_as_list_recursive;
3371 my $dsubdirs = var ('DIST_SUBDIRS');
3372 @dsubdirs = $dsubdirs->value_as_list_recursive
3375 # If an `obj/' directory exists, BSD make will enter it before
3376 # reading `Makefile'. Hence the `Makefile' in the current directory
3382 # % cat obj/Makefile
3388 # % pmake # BSD make
3391 msg_var ('portability', 'SUBDIRS',
3392 "naming a subdirectory `obj' causes troubles with BSD make")
3393 if grep ($_ eq 'obj', @subdirs);
3394 msg_var ('portability', 'DIST_SUBDIRS',
3395 "naming a subdirectory `obj' causes troubles with BSD make")
3396 if grep ($_ eq 'obj', @dsubdirs);
3398 # Make sure each directory mentioned in SUBDIRS actually exists.
3399 foreach my $dir (@subdirs)
3401 # Skip directories substituted by configure.
3402 next if $dir =~ /^\@.*\@$/;
3404 if (! -d $relative_dir . '/' . $dir)
3406 err_var ('SUBDIRS', "required directory $relative_dir/$dir "
3407 . "does not exist");
3411 err_var 'SUBDIRS', "directory should not contain `/'"
3415 $output_rules .= &file_contents ('subdirs', new Automake::Location);
3416 rvar ('RECURSIVE_TARGETS')->rdef (TRUE)->{'pretty'} = VAR_SORTED; # Gross!
3420 # ($REGEN, @DEPENDENCIES)
3423 # If aclocal.m4 creation is automated, return the list of its dependencies.
3424 sub scan_aclocal_m4 ()
3426 my $regen_aclocal = 0;
3428 set_seen 'CONFIG_STATUS_DEPENDENCIES';
3429 set_seen 'CONFIGURE_DEPENDENCIES';
3431 if (-f 'aclocal.m4')
3433 &define_variable ("ACLOCAL_M4", '$(top_srcdir)/aclocal.m4', INTERNAL);
3435 my $aclocal = new Automake::XFile "< aclocal.m4";
3436 my $line = $aclocal->getline;
3437 $regen_aclocal = $line =~ 'generated automatically by aclocal';
3442 if (set_seen ('ACLOCAL_M4_SOURCES'))
3444 push (@ac_deps, '$(ACLOCAL_M4_SOURCES)');
3445 msg_var ('obsolete', 'ACLOCAL_M4_SOURCES',
3446 "`ACLOCAL_M4_SOURCES' is obsolete.\n"
3447 . "It should be safe to simply remove it.");
3450 # Note that it might be possible that aclocal.m4 doesn't exist but
3451 # should be auto-generated. This case probably isn't very
3454 return ($regen_aclocal, @ac_deps);
3459 # &prepend_srcdir (@INPUTS)
3460 # -------------------------
3461 # Prepend $(srcdir) or $(top_srcdir) to all @INPUTS. The idea is that
3462 # if an input file has a directory part the same as the current
3463 # directory, then the directory part is simply replaced by $(srcdir).
3464 # But if the directory part is different, then $(top_srcdir) is
3466 sub prepend_srcdir (@)
3471 foreach my $single (@inputs)
3473 if (dirname ($single) eq $relative_dir)
3475 push (@newinputs, '$(srcdir)/' . basename ($single));
3479 push (@newinputs, '$(top_srcdir)/' . $single);
3486 # rewrite_inputs_into_dependencies ($OUTPUT, @INPUTS)
3487 # ---------------------------------------------------
3488 # Compute a list of dependencies appropriate for the rebuild
3490 # AC_CONFIG_FILES($OUTPUT:$INPUT[0]:$INPUTS[1]:...)
3491 # Also distribute $INPUTs which are not build by another AC_CONFIG_FILES.
3492 sub rewrite_inputs_into_dependencies ($@)
3494 my ($file, @inputs) = @_;
3499 if (exists $ac_config_files_location{$i})
3501 my $di = dirname $i;
3502 if ($di eq $relative_dir)
3506 # In the top-level Makefile we do not use $(top_builddir), because
3507 # we are already there, and since the targets are built without
3508 # a $(top_builddir), it helps BSD Make to match them with
3510 elsif ($relative_dir ne '.')
3512 $i = '$(top_builddir)/' . $i;
3517 msg ('error', $ac_config_files_location{$file},
3518 "required file `$i' not found")
3519 unless exists $output_files{$i} || -f $i;
3520 ($i) = prepend_srcdir ($i);
3521 push_dist_common ($i);
3530 # &handle_configure ($MAKEFILE_AM, $MAKEFILE_IN, $MAKEFILE, @INPUTS)
3531 # ------------------------------------------------------------------
3532 # Handle remaking and configure stuff.
3533 # We need the name of the input file, to do proper remaking rules.
3534 sub handle_configure ($$$@)
3536 my ($makefile_am, $makefile_in, $makefile, @inputs) = @_;
3538 prog_error 'empty @inputs'
3541 my ($rel_makefile_am, $rel_makefile_in) = prepend_srcdir ($makefile_am,
3543 my $rel_makefile = basename $makefile;
3545 my $colon_infile = ':' . join (':', @inputs);
3546 $colon_infile = '' if $colon_infile eq ":$makefile.in";
3547 my @rewritten = rewrite_inputs_into_dependencies ($makefile, @inputs);
3548 my ($regen_aclocal_m4, @aclocal_m4_deps) = scan_aclocal_m4;
3549 define_pretty_variable ('am__aclocal_m4_deps', TRUE, INTERNAL,
3550 @configure_deps, @aclocal_m4_deps,
3551 '$(top_srcdir)/' . $configure_ac);
3552 my @configuredeps = ('$(am__aclocal_m4_deps)', '$(CONFIGURE_DEPENDENCIES)');
3553 push @configuredeps, '$(ACLOCAL_M4)' if -f 'aclocal.m4';
3554 define_pretty_variable ('am__configure_deps', TRUE, INTERNAL,
3557 $output_rules .= file_contents
3559 new Automake::Location,
3560 MAKEFILE => $rel_makefile,
3561 'MAKEFILE-DEPS' => "@rewritten",
3562 'CONFIG-MAKEFILE' => ($relative_dir eq '.') ? '$@' : '$(subdir)/$@',
3563 'MAKEFILE-IN' => $rel_makefile_in,
3564 'MAKEFILE-IN-DEPS' => "@include_stack",
3565 'MAKEFILE-AM' => $rel_makefile_am,
3566 STRICTNESS => global_option 'cygnus'
3567 ? 'cygnus' : $strictness_name,
3568 'USE-DEPS' => global_option 'no-dependencies'
3569 ? ' --ignore-deps' : '',
3570 'MAKEFILE-AM-SOURCES' => "$makefile$colon_infile",
3571 'REGEN-ACLOCAL-M4' => $regen_aclocal_m4);
3573 if ($relative_dir eq '.')
3575 &push_dist_common ('acconfig.h')
3579 # If we have a configure header, require it.
3581 my @distclean_config;
3582 foreach my $spec (@config_headers)
3585 # $CONFIG_H_PATH: config.h from top level.
3586 my ($config_h_path, @ins) = split_config_file_spec ($spec);
3587 my $config_h_dir = dirname ($config_h_path);
3589 # If the header is in the current directory we want to build
3590 # the header here. Otherwise, if we're at the topmost
3591 # directory and the header's directory doesn't have a
3592 # Makefile, then we also want to build the header.
3593 if ($relative_dir eq $config_h_dir
3594 || ($relative_dir eq '.' && ! &is_make_dir ($config_h_dir)))
3596 my ($cn_sans_dir, $stamp_dir);
3597 if ($relative_dir eq $config_h_dir)
3599 $cn_sans_dir = basename ($config_h_path);
3604 $cn_sans_dir = $config_h_path;
3605 if ($config_h_dir eq '.')
3611 $stamp_dir = $config_h_dir . '/';
3615 # This will also distribute all inputs.
3616 @ins = rewrite_inputs_into_dependencies ($config_h_path, @ins);
3618 # Header defined and in this directory.
3620 if (-f $config_h_path . '.top')
3622 push (@files, "$cn_sans_dir.top");
3624 if (-f $config_h_path . '.bot')
3626 push (@files, "$cn_sans_dir.bot");
3629 push_dist_common (@files);
3631 # For now, acconfig.h can only appear in the top srcdir.
3632 if (-f 'acconfig.h')
3634 push (@files, '$(top_srcdir)/acconfig.h');
3637 my $stamp = "${stamp_dir}stamp-h${hdr_index}";
3639 file_contents ('remake-hdr',
3640 new Automake::Location,
3642 CONFIG_H => $cn_sans_dir,
3643 CONFIG_HIN => $ins[0],
3644 CONFIG_H_DEPS => "@ins",
3645 CONFIG_H_PATH => $config_h_path,
3646 FIRST_CONFIG_HIN => ($hdr_index == 1),
3649 push @distclean_config, $cn_sans_dir, $stamp;
3653 $output_rules .= file_contents ('clean-hdr',
3654 new Automake::Location,
3655 FILES => "@distclean_config")
3656 if @distclean_config;
3658 # Distribute and define mkinstalldirs only if it is already present
3659 # in the package, for backward compatibility (some people my still
3660 # use $(mkinstalldirs)).
3661 my $mkidpath = $config_aux_path[0] . '/mkinstalldirs';
3664 # Use require_file so that any existingscript gets updated
3665 # by --force-missing.
3666 require_conf_file ($mkidpath, FOREIGN, 'mkinstalldirs');
3667 define_variable ('mkinstalldirs',
3668 "\$(SHELL) $config_aux_dir/mkinstalldirs", INTERNAL);
3672 define_variable ('mkinstalldirs', '$(mkdir_p)', INTERNAL);
3675 reject_var ('CONFIG_HEADER',
3676 "`CONFIG_HEADER' is an anachronism; now determined "
3677 . "automatically\nfrom `$configure_ac'");
3680 foreach my $spec (@config_headers)
3682 my ($out, @ins) = split_config_file_spec ($spec);
3683 # Generate CONFIG_HEADER define.
3684 if ($relative_dir eq dirname ($out))
3686 push @config_h, basename ($out);
3690 push @config_h, "\$(top_builddir)/$out";
3693 define_variable ("CONFIG_HEADER", "@config_h", INTERNAL)
3696 # Now look for other files in this directory which must be remade
3697 # by config.status, and generate rules for them.
3698 my @actual_other_files = ();
3699 foreach my $lfile (@other_input_files)
3703 if ($lfile =~ /^([^:]*):(.*)$/)
3705 # This is the ":" syntax of AC_OUTPUT.
3707 @inputs = split (':', $2);
3713 @inputs = $file . '.in';
3716 # Automake files should not be stored in here, but in %MAKE_LIST.
3717 prog_error ("$lfile in \@other_input_files\n"
3718 . "\@other_input_files = (@other_input_files)")
3719 if -f $file . '.am';
3721 my $local = basename ($file);
3723 # Make sure the dist directory for each input file is created.
3724 # We only have to do this at the topmost level though. This
3725 # is a bit ugly but it easier than spreading out the logic,
3726 # especially in cases like AC_OUTPUT(foo/out:bar/in), where
3727 # there is no Makefile in bar/.
3728 if ($relative_dir eq '.')
3732 $dist_dirs{dirname ($_)} = 1;
3736 # We skip files that aren't in this directory. However, if
3737 # the file's directory does not have a Makefile, and we are
3738 # currently doing `.', then we create a rule to rebuild the
3739 # file in the subdir.
3740 my $fd = dirname ($file);
3741 if ($fd ne $relative_dir)
3743 if ($relative_dir eq '.' && ! &is_make_dir ($fd))
3753 my @rewritten_inputs = rewrite_inputs_into_dependencies ($file, @inputs);
3755 $output_rules .= ($local . ': '
3756 . '$(top_builddir)/config.status '
3757 . "@rewritten_inputs\n"
3759 . 'cd $(top_builddir) && '
3760 . '$(SHELL) ./config.status '
3761 . ($relative_dir eq '.' ? '' : '$(subdir)/')
3764 push (@actual_other_files, $local);
3767 # For links we should clean destinations and distribute sources.
3768 foreach my $spec (@config_links)
3770 my ($link, $file) = split /:/, $spec;
3771 my $where = $ac_config_files_location{$link};
3773 # Skip destinations that contain shell variables.
3776 # We skip links that aren't in this directory. However, if
3777 # the link's directory does not have a Makefile, and we are
3778 # currently doing `.', then we add the link to CONFIG_CLEAN_FILES
3779 # in `.'s Makefile.in.
3780 my $local = basename ($link);
3781 my $fd = dirname ($link);
3782 if ($fd ne $relative_dir)
3784 if ($relative_dir eq '.' && ! &is_make_dir ($fd))
3793 push @actual_other_files, $local if $local;
3796 # Do not process sources that contain shell variables.
3799 my $fd = dirname ($file);
3801 # Make sure the dist directory for each input file is created.
3802 # We only have to do this at the topmost level though.
3803 if ($relative_dir eq '.')
3805 $dist_dirs{$fd} = 1;
3808 # We distribute files that are in this directory.
3809 # At the top-level (`.') we also distribute files whose
3810 # directory does not have a Makefile.
3811 if (($fd eq $relative_dir)
3812 || ($relative_dir eq '.' && ! &is_make_dir ($fd)))
3814 # The following will distribute $file as a side-effect when
3815 # it is appropriate (i.e., when $file is not already an output).
3816 # We do not need the result, just the side-effect.
3817 rewrite_inputs_into_dependencies ($link, $file);
3822 # These files get removed by "make distclean".
3823 define_pretty_variable ('CONFIG_CLEAN_FILES', TRUE, INTERNAL,
3824 @actual_other_files);
3830 my @r = &am_install_var ('-defaultdist', 'header', 'HEADERS', 'include',
3831 'oldinclude', 'pkginclude',
3835 next unless $_->[1] =~ /\..*$/;
3836 &saw_extension ($&);
3842 return if ! $seen_gettext || $relative_dir ne '.';
3844 my $subdirs = var 'SUBDIRS';
3848 err_ac "AM_GNU_GETTEXT used but SUBDIRS not defined";
3852 # Perform some sanity checks to help users get the right setup.
3853 # We disable these tests when po/ doesn't exist in order not to disallow
3854 # unusual gettext setups.
3859 # | 1) If a package doesn't have a directory po/ at top level, it
3860 # | will likely have multiple po/ directories in subpackages.
3862 # | 2) It is useful to warn for the absence of intl/ if AM_GNU_GETTEXT
3863 # | is used without 'external'. It is also useful to warn for the
3864 # | presence of intl/ if AM_GNU_GETTEXT([external]) is used. Both
3865 # | warnings apply only to the usual layout of packages, therefore
3866 # | they should both be disabled if no po/ directory is found at
3871 my @subdirs = $subdirs->value_as_list_recursive;
3873 msg_var ('syntax', $subdirs,
3874 "AM_GNU_GETTEXT used but `po' not in SUBDIRS")
3875 if ! grep ($_ eq 'po', @subdirs);
3877 # intl/ is not required when AM_GNU_GETTEXT is called with
3878 # the `external' option.
3879 msg_var ('syntax', $subdirs,
3880 "AM_GNU_GETTEXT used but `intl' not in SUBDIRS")
3881 if (! $seen_gettext_external
3882 && ! grep ($_ eq 'intl', @subdirs));
3884 # intl/ should not be used with AM_GNU_GETTEXT([external])
3885 msg_var ('syntax', $subdirs,
3886 "`intl' should not be in SUBDIRS when "
3887 . "AM_GNU_GETTEXT([external]) is used")
3888 if ($seen_gettext_external && grep ($_ eq 'intl', @subdirs));
3891 require_file ($ac_gettext_location, GNU, 'ABOUT-NLS');
3894 # Handle footer elements.
3897 # NOTE don't use define_pretty_variable here, because
3898 # $contents{...} is already defined.
3899 $output_vars .= 'SOURCES = ' . variable_value ('SOURCES') . "\n\n"
3900 if variable_value ('SOURCES');
3902 reject_rule ('.SUFFIXES',
3903 "use variable `SUFFIXES', not target `.SUFFIXES'");
3905 # Note: AIX 4.1 /bin/make will fail if any suffix rule appears
3906 # before .SUFFIXES. So we make sure that .SUFFIXES appears before
3907 # anything else, by sticking it right after the default: target.
3908 $output_header .= ".SUFFIXES:\n";
3909 my $suffixes = var 'SUFFIXES';
3910 my @suffixes = Automake::Rule::suffixes;
3911 if (@suffixes || $suffixes)
3913 # Make sure SUFFIXES has unique elements. Sort them to ensure
3914 # the output remains consistent. However, $(SUFFIXES) is
3915 # always at the start of the list, unsorted. This is done
3916 # because make will choose rules depending on the ordering of
3917 # suffixes, and this lets the user have some control. Push
3918 # actual suffixes, and not $(SUFFIXES). Some versions of make
3919 # do not like variable substitutions on the .SUFFIXES line.
3920 my @user_suffixes = ($suffixes
3921 ? $suffixes->value_as_list_recursive : ());
3923 my %suffixes = map { $_ => 1 } @suffixes;
3924 delete @suffixes{@user_suffixes};
3926 $output_header .= (".SUFFIXES: "
3927 . join (' ', @user_suffixes, sort keys %suffixes)
3931 $output_trailer .= file_contents ('footer', new Automake::Location);
3935 # Generate `make install' rules.
3936 sub handle_install ()
3938 $output_rules .= &file_contents
3940 new Automake::Location,
3941 maybe_BUILT_SOURCES => (set_seen ('BUILT_SOURCES')
3942 ? (" \$(BUILT_SOURCES)\n"
3943 . "\t\$(MAKE) \$(AM_MAKEFLAGS)")
3945 'installdirs-local' => (rule 'installdirs-local'
3946 ? ' installdirs-local' : ''),
3947 am__installdirs => variable_value ('am__installdirs') || '');
3951 # Deal with all and all-am.
3954 my ($makefile) = @_;
3958 # Put this at the beginning for the sake of non-GNU makes. This
3959 # is still wrong if these makes can run parallel jobs. But it is
3961 unshift (@all, basename ($makefile));
3963 foreach my $spec (@config_headers)
3965 my ($out, @ins) = split_config_file_spec ($spec);
3966 push (@all, basename ($out))
3967 if dirname ($out) eq $relative_dir;
3970 # Install `all' hooks.
3971 if (rule "all-local")
3973 push (@all, "all-local");
3974 &depend ('.PHONY', "all-local");
3977 &pretty_print_rule ("all-am:", "\t\t", @all);
3978 &depend ('.PHONY', 'all-am', 'all');
3983 my @local_headers = ();
3984 push @local_headers, '$(BUILT_SOURCES)'
3985 if var ('BUILT_SOURCES');
3986 foreach my $spec (@config_headers)
3988 my ($out, @ins) = split_config_file_spec ($spec);
3989 push @local_headers, basename ($out)
3990 if dirname ($out) eq $relative_dir;
3995 # We need to make sure config.h is built before we recurse.
3996 # We also want to make sure that built sources are built
3997 # before any ordinary `all' targets are run. We can't do this
3998 # by changing the order of dependencies to the "all" because
3999 # that breaks when using parallel makes. Instead we handle
4000 # things explicitly.
4001 $output_all .= ("all: @local_headers"
4003 . '$(MAKE) $(AM_MAKEFLAGS) '
4004 . (var ('SUBDIRS') ? 'all-recursive' : 'all-am')
4009 $output_all .= "all: " . (var ('SUBDIRS')
4010 ? 'all-recursive' : 'all-am') . "\n\n";
4015 # &do_check_merge_target ()
4016 # -------------------------
4017 # Handle check merge target specially.
4018 sub do_check_merge_target ()
4020 if (rule 'check-local')
4022 # User defined local form of target. So include it.
4023 push @check_tests, 'check-local';
4024 depend '.PHONY', 'check-local';
4027 # In --cygnus mode, check doesn't depend on all.
4028 if (option 'cygnus')
4030 # Just run the local check rules.
4031 pretty_print_rule ('check-am:', "\t\t", @check);
4035 # The check target must depend on the local equivalent of
4036 # `all', to ensure all the primary targets are built. Then it
4037 # must build the local check rules.
4038 $output_rules .= "check-am: all-am\n";
4039 pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t ",
4043 pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t ",
4047 depend '.PHONY', 'check', 'check-am';
4048 # Handle recursion. We have to honor BUILT_SOURCES like for `all:'.
4049 $output_rules .= ("check: "
4050 . (var ('BUILT_SOURCES')
4051 ? "\$(BUILT_SOURCES)\n\t\$(MAKE) \$(AM_MAKEFLAGS) "
4053 . (var ('SUBDIRS') ? 'check-recursive' : 'check-am')
4057 # handle_clean ($MAKEFILE)
4058 # ------------------------
4059 # Handle all 'clean' targets.
4060 sub handle_clean ($)
4062 my ($makefile) = @_;
4064 # Clean the files listed in user variables if they exist.
4065 $clean_files{'$(MOSTLYCLEANFILES)'} = MOSTLY_CLEAN
4066 if var ('MOSTLYCLEANFILES');
4067 $clean_files{'$(CLEANFILES)'} = CLEAN
4068 if var ('CLEANFILES');
4069 $clean_files{'$(DISTCLEANFILES)'} = DIST_CLEAN
4070 if var ('DISTCLEANFILES');
4071 $clean_files{'$(MAINTAINERCLEANFILES)'} = MAINTAINER_CLEAN
4072 if var ('MAINTAINERCLEANFILES');
4074 # Built sources are automatically removed by maintainer-clean.
4075 $clean_files{'$(BUILT_SOURCES)'} = MAINTAINER_CLEAN
4076 if var ('BUILT_SOURCES');
4078 # Compute a list of "rm"s to run for each target.
4079 my %rms = (MOSTLY_CLEAN, [],
4082 MAINTAINER_CLEAN, []);
4084 foreach my $file (keys %clean_files)
4086 my $when = $clean_files{$file};
4087 prog_error 'invalid entry in %clean_files'
4088 unless exists $rms{$when};
4090 my $rm = "rm -f $file";
4091 # If file is a variable, make sure when don't call `rm -f' without args.
4092 $rm ="test -z \"$file\" || $rm"
4093 if ($file =~ /^\s*\$(\(.*\)|\{.*\})\s*$/);
4095 push @{$rms{$when}}, "\t-$rm\n";
4098 $output_rules .= &file_contents
4100 new Automake::Location,
4101 MOSTLYCLEAN_RMS => join ('', @{$rms{&MOSTLY_CLEAN}}),
4102 CLEAN_RMS => join ('', @{$rms{&CLEAN}}),
4103 DISTCLEAN_RMS => join ('', @{$rms{&DIST_CLEAN}}),
4104 MAINTAINER_CLEAN_RMS => join ('', @{$rms{&MAINTAINER_CLEAN}}),
4105 MAKEFILE => basename $makefile,
4110 # &target_cmp ($A, $B)
4111 # --------------------
4112 # Subroutine for &handle_factored_dependencies to let `.PHONY' be last.
4125 # &handle_factored_dependencies ()
4126 # --------------------------------
4127 # Handle everything related to gathered targets.
4128 sub handle_factored_dependencies
4131 foreach my $utarg ('uninstall-data-local', 'uninstall-data-hook',
4132 'uninstall-exec-local', 'uninstall-exec-hook')
4135 $x =~ s/(data|exec)-//;
4136 reject_rule ($utarg, "use `$x', not `$utarg'");
4139 reject_rule ('install-local',
4140 "use `install-data-local' or `install-exec-local', "
4141 . "not `install-local'");
4143 reject_rule ('install-info-local',
4144 "`install-info-local' target defined but "
4145 . "`no-installinfo' option not in use")
4146 unless option 'no-installinfo';
4148 # Install the -local hooks.
4149 foreach (keys %dependencies)
4151 # Hooks are installed on the -am targets.
4153 if (rule "$_-local")
4155 depend ("$_-am", "$_-local");
4156 depend ('.PHONY', "$_-local");
4160 # Install the -hook hooks.
4161 # FIXME: Why not be as liberal as we are with -local hooks?
4162 foreach ('install-exec', 'install-data', 'uninstall')
4164 if (rule ("$_-hook"))
4166 $actions{"$_-am"} .=
4167 ("\t\@\$(NORMAL_INSTALL)\n"
4168 . "\t" . '$(MAKE) $(AM_MAKEFLAGS) ' . "$_-hook\n");
4172 # All the required targets are phony.
4173 depend ('.PHONY', keys %required_targets);
4175 # Actually output gathered targets.
4176 foreach (sort target_cmp keys %dependencies)
4178 # If there is nothing about this guy, skip it.
4180 unless (@{$dependencies{$_}}
4182 || $required_targets{$_});
4184 # Define gathered targets in undefined conditions.
4185 # FIXME: Right now we must handle .PHONY as an exception,
4186 # because people write things like
4187 # .PHONY: myphonytarget
4188 # to append dependencies. This would not work if Automake
4189 # refrained from defining its own .PHONY target as it does
4190 # with other overridden targets.
4191 my @undefined_conds = (TRUE,);
4195 Automake::Rule::define ($_, 'internal',
4196 RULE_AUTOMAKE, TRUE, INTERNAL);
4198 my @uniq_deps = uniq (sort @{$dependencies{$_}});
4199 foreach my $cond (@undefined_conds)
4201 my $condstr = $cond->subst_string;
4202 &pretty_print_rule ("$condstr$_:", "$condstr\t", @uniq_deps);
4203 $output_rules .= $actions{$_} if defined $actions{$_};
4204 $output_rules .= "\n";
4210 # &handle_tests_dejagnu ()
4211 # ------------------------
4212 sub handle_tests_dejagnu
4214 push (@check_tests, 'check-DEJAGNU');
4215 $output_rules .= file_contents ('dejagnu', new Automake::Location);
4219 # Handle TESTS variable and other checks.
4222 if (option 'dejagnu')
4224 &handle_tests_dejagnu;
4228 foreach my $c ('DEJATOOL', 'RUNTEST', 'RUNTESTFLAGS')
4230 reject_var ($c, "`$c' defined but `dejagnu' not in "
4231 . "`AUTOMAKE_OPTIONS'");
4237 push (@check_tests, 'check-TESTS');
4238 $output_rules .= &file_contents ('check', new Automake::Location);
4242 # Handle Emacs Lisp.
4243 sub handle_emacs_lisp
4245 my @elfiles = &am_install_var ('-candist', 'lisp', 'LISP',
4248 return if ! @elfiles;
4250 # Generate .elc files.
4251 my @elcfiles = map { $_->[1] . 'c' } @elfiles;
4253 define_pretty_variable ('ELCFILES', TRUE, INTERNAL, @elcfiles);
4254 define_pretty_variable ('am__ELFILES', TRUE, INTERNAL,
4255 map { $_->[1] } @elfiles);
4257 # Do not depend on the build rules if ELCFILES is empty.
4258 # This is necessary because overriding ELCFILES= is a documented
4259 # idiom to disable byte-compilation.
4260 if (variable_value ('ELCFILES'))
4262 # It's important that all depends on elc-stamp so that
4263 # all .elc files get recompiled whenever a .el changes.
4264 # It's important that all depends on $(ELCFILES) so that
4265 # we can recover if any of them is deleted.
4266 push (@all, 'elc-stamp', '$(ELCFILES)');
4269 require_variables ($elfiles[0][0], "Emacs Lisp sources seen", TRUE,
4270 'EMACS', 'lispdir');
4271 require_conf_file ($elfiles[0][0], FOREIGN, 'elisp-comp');
4272 &define_variable ('elisp_comp', $config_aux_dir . '/elisp-comp', INTERNAL);
4278 my @pyfiles = &am_install_var ('-defaultdist', 'python', 'PYTHON',
4280 return if ! @pyfiles;
4282 require_variables ($pyfiles[0][0], "Python sources seen", TRUE, 'PYTHON');
4283 require_conf_file ($pyfiles[0][0], FOREIGN, 'py-compile');
4284 &define_variable ('py_compile', $config_aux_dir . '/py-compile', INTERNAL);
4290 my @sourcelist = &am_install_var ('-candist',
4292 'java', 'noinst', 'check');
4293 return if ! @sourcelist;
4295 my @prefix = am_primary_prefixes ('JAVA', 1,
4296 'java', 'noinst', 'check');
4299 foreach my $curs (@prefix)
4302 if $curs eq 'EXTRA';
4304 err_var "${curs}_JAVA", "multiple _JAVA primaries in use"
4310 push (@all, 'class' . $dir . '.stamp');
4314 # Handle some of the minor options.
4315 sub handle_minor_options
4317 if (option 'readme-alpha')
4319 if ($relative_dir eq '.')
4321 if ($package_version !~ /^$GNITS_VERSION_PATTERN$/)
4323 msg ('error-gnits', $package_version_location,
4324 "version `$package_version' doesn't follow " .
4327 if (defined $1 && -f 'README-alpha')
4329 # This means we have an alpha release. See
4330 # GNITS_VERSION_PATTERN for details.
4331 push_dist_common ('README-alpha');
4337 ################################################################
4339 # ($OUTPUT, @INPUTS)
4340 # &split_config_file_spec ($SPEC)
4341 # -------------------------------
4342 # Decode the Autoconf syntax for config files (files, headers, links
4344 sub split_config_file_spec ($)
4347 my ($output, @inputs) = split (/:/, $spec);
4349 push @inputs, "$output.in"
4352 return ($output, @inputs);
4356 # locate_am (@POSSIBLE_SOURCES)
4357 # -----------------------------
4358 # AC_CONFIG_FILES allow specifications such as Makefile:top.in:mid.in:bot.in
4359 # This functions returns the first *.in file for which a *.am exists.
4360 # It returns undef otherwise.
4365 foreach my $file (@rest)
4367 if (($file =~ /^(.*)\.in$/) && -f "$1.am")
4378 # &scan_autoconf_config_files ($WHERE, $CONFIG-FILES)
4379 # ---------------------------------------------------
4380 # Study $CONFIG-FILES which is the first argument to AC_CONFIG_FILES
4382 sub scan_autoconf_config_files ($$)
4384 my ($where, $config_files) = @_;
4386 # Look at potential Makefile.am's.
4387 foreach (split ' ', $config_files)
4389 # Must skip empty string for Perl 4.
4390 next if $_ eq "\\" || $_ eq '';
4392 # Handle $local:$input syntax.
4393 my ($local, @rest) = split (/:/);
4394 @rest = ("$local.in",) unless @rest;
4395 my $input = locate_am @rest;
4398 # We have a file that automake should generate.
4399 $make_list{$input} = join (':', ($local, @rest));
4403 # We have a file that automake should cause to be
4404 # rebuilt, but shouldn't generate itself.
4405 push (@other_input_files, $_);
4407 $ac_config_files_location{$local} = $where;
4412 # &scan_autoconf_traces ($FILENAME)
4413 # ---------------------------------
4414 sub scan_autoconf_traces ($)
4416 my ($filename) = @_;
4418 # Macros to trace, with their minimal number of arguments.
4420 AC_CANONICAL_HOST => 0,
4421 AC_CANONICAL_SYSTEM => 0,
4422 AC_CONFIG_AUX_DIR => 1,
4423 AC_CONFIG_FILES => 1,
4424 AC_CONFIG_HEADERS => 1,
4425 AC_CONFIG_LINKS => 1,
4429 AM_AUTOMAKE_VERSION => 1,
4430 AM_CONDITIONAL => 2,
4431 AM_ENABLE_MULTILIB => 0,
4432 AM_GNU_GETTEXT => 0,
4433 AM_INIT_AUTOMAKE => 0,
4434 AM_MAINTAINER_MODE => 0,
4435 AM_PROG_CC_C_O => 0,
4441 my $traces = ($ENV{AUTOCONF} || 'autoconf') . " ";
4443 # Use a separator unlikely to be used, not `:', the default, which
4444 # has a precise meaning for AC_CONFIG_FILES and so on.
4445 $traces .= join (' ',
4446 map { "--trace=$_" . ':\$f:\$l::\$n::\${::}%' }
4449 my $tracefh = new Automake::XFile ("$traces $filename |");
4450 verb "reading $traces";
4452 while ($_ = $tracefh->getline)
4455 my ($here, @args) = split /::/;
4456 my $where = new Automake::Location $here;
4457 my $macro = $args[0];
4459 prog_error ("unrequested trace `$macro'")
4460 unless exists $traced{$macro};
4462 # Skip and diagnose malformed calls.
4463 if ($#args < $traced{$macro})
4465 msg ('syntax', $where, "not enough arguments for $macro");
4469 # Alphabetical ordering please.
4470 if ($macro eq 'AC_CANONICAL_HOST')
4472 if (! $seen_canonical)
4474 $seen_canonical = AC_CANONICAL_HOST;
4475 $canonical_location = $where;
4478 elsif ($macro eq 'AC_CANONICAL_SYSTEM')
4480 $seen_canonical = AC_CANONICAL_SYSTEM;
4481 $canonical_location = $where;
4483 elsif ($macro eq 'AC_CONFIG_AUX_DIR')
4485 @config_aux_path = $args[1];
4486 $config_aux_dir_set_in_configure_in = 1;
4488 elsif ($macro eq 'AC_CONFIG_FILES')
4490 # Look at potential Makefile.am's.
4491 scan_autoconf_config_files ($where, $args[1]);
4493 elsif ($macro eq 'AC_CONFIG_HEADERS')
4495 foreach my $spec (split (' ', $args[1]))
4497 my ($dest, @src) = split (':', $spec);
4498 $ac_config_files_location{$dest} = $where;
4499 push @config_headers, $spec;
4502 elsif ($macro eq 'AC_CONFIG_LINKS')
4504 foreach my $spec (split (' ', $args[1]))
4506 my ($dest, $src) = split (':', $spec);
4507 $ac_config_files_location{$dest} = $where;
4508 push @config_links, $spec;
4511 elsif ($macro eq 'AC_INIT')
4513 if (defined $args[2])
4515 $package_version = $args[2];
4516 $package_version_location = $where;
4519 elsif ($macro eq 'AC_LIBSOURCE')
4521 $libsources{$args[1]} = $here;
4523 elsif ($macro eq 'AC_SUBST')
4525 # Just check for alphanumeric in AC_SUBST. If you do
4526 # AC_SUBST(5), then too bad.
4527 $configure_vars{$args[1]} = $where
4528 if $args[1] =~ /^\w+$/;
4530 elsif ($macro eq 'AM_AUTOMAKE_VERSION')
4533 "version mismatch. This is Automake $VERSION,\n" .
4534 "but the definition used by this AM_INIT_AUTOMAKE\n" .
4535 "comes from Automake $args[1]. You should recreate\n" .
4536 "aclocal.m4 with aclocal and run automake again.\n",
4537 # $? = 63 is used to indicate version mismatch to missing.
4539 if $VERSION ne $args[1];
4541 $seen_automake_version = 1;
4543 elsif ($macro eq 'AM_CONDITIONAL')
4545 $configure_cond{$args[1]} = $where;
4547 elsif ($macro eq 'AM_ENABLE_MULTILIB')
4549 $seen_multilib = $where;
4551 elsif ($macro eq 'AM_GNU_GETTEXT')
4553 $seen_gettext = $where;
4554 $ac_gettext_location = $where;
4555 $seen_gettext_external = grep ($_ eq 'external', @args);
4557 elsif ($macro eq 'AM_INIT_AUTOMAKE')
4559 $seen_init_automake = $where;
4560 if (defined $args[2])
4562 $package_version = $args[2];
4563 $package_version_location = $where;
4565 elsif (defined $args[1])
4568 if (process_global_option_list ($where,
4569 split (' ', $args[1])));
4572 elsif ($macro eq 'AM_MAINTAINER_MODE')
4574 $seen_maint_mode = $where;
4576 elsif ($macro eq 'AM_PROG_CC_C_O')
4578 $seen_cc_c_o = $where;
4580 elsif ($macro eq 'm4_include'
4581 || $macro eq 'm4_sinclude'
4582 || $macro eq 'sinclude')
4584 # Some modified versions of Autoconf don't use
4585 # forzen files. Consequently it's possible that we see all
4586 # m4_include's performed during Autoconf's startup.
4587 # Obviously we don't want to distribute Autoconf's files
4588 # so we skip absolute filenames here.
4589 push @configure_deps, '$(top_srcdir)/' . $args[1]
4590 unless $here =~ m,^(?:\w:)?[\\/],;
4591 # Keep track of the greatest timestamp.
4594 my $mtime = mtime $args[1];
4595 $configure_deps_greatest_timestamp = $mtime
4596 if $mtime > $configure_deps_greatest_timestamp;
4605 # &scan_autoconf_files ()
4606 # -----------------------
4607 # Check whether we use `configure.ac' or `configure.in'.
4608 # Scan it (and possibly `aclocal.m4') for interesting things.
4609 # We must scan aclocal.m4 because there might be AC_SUBSTs and such there.
4610 sub scan_autoconf_files ()
4612 # Reinitialize libsources here. This isn't really necessary,
4613 # since we currently assume there is only one configure.ac. But
4614 # that won't always be the case.
4617 # Keep track of the youngest configure dependency.
4618 $configure_deps_greatest_timestamp = mtime $configure_ac;
4619 if (-e 'aclocal.m4')
4621 my $mtime = mtime 'aclocal.m4';
4622 $configure_deps_greatest_timestamp = $mtime
4623 if $mtime > $configure_deps_greatest_timestamp;
4626 scan_autoconf_traces ($configure_ac);
4628 @configure_input_files = sort keys %make_list;
4629 # Set input and output files if not specified by user.
4632 @input_files = @configure_input_files;
4633 %output_files = %make_list;
4637 if (! $seen_init_automake)
4639 err_ac ("no proper invocation of AM_INIT_AUTOMAKE was found.\nYou "
4640 . "should verify that $configure_ac invokes AM_INIT_AUTOMAKE,"
4641 . "\nthat aclocal.m4 is present in the top-level directory,\n"
4642 . "and that aclocal.m4 was recently regenerated "
4643 . "(using aclocal).");
4647 if (! $seen_automake_version)
4649 if (-f 'aclocal.m4')
4651 error ($seen_init_automake,
4652 "your implementation of AM_INIT_AUTOMAKE comes from " .
4653 "an\nold Automake version. You should recreate " .
4654 "aclocal.m4\nwith aclocal and run automake again.\n",
4655 # $? = 63 is used to indicate version mismatch to missing.
4660 error ($seen_init_automake,
4661 "no proper implementation of AM_INIT_AUTOMAKE was " .
4662 "found,\nprobably because aclocal.m4 is missing...\n" .
4663 "You should run aclocal to create this file, then\n" .
4664 "run automake again.\n");
4669 # Look for some files we need. Always check for these. This
4670 # check must be done for every run, even those where we are only
4671 # looking at a subdir Makefile. We must set relative_dir so that
4672 # the file-finding machinery works.
4673 # FIXME: Is this broken because it needs dynamic scopes.
4674 # My tests seems to show it's not the case.
4675 $relative_dir = '.';
4676 require_conf_file ($configure_ac, FOREIGN, 'install-sh', 'missing');
4677 err_am "`install.sh' is an anachronism; use `install-sh' instead"
4678 if -f $config_aux_path[0] . '/install.sh';
4680 # Preserve dist_common for later.
4681 $configure_dist_common = variable_value ('DIST_COMMON') || '';
4684 ################################################################
4686 # Set up for Cygnus mode.
4689 my $cygnus = option 'cygnus';
4690 return unless $cygnus;
4692 set_strictness ('foreign');
4693 set_option ('no-installinfo', $cygnus);
4694 set_option ('no-dependencies', $cygnus);
4695 set_option ('no-dist', $cygnus);
4697 err_ac "`AM_MAINTAINER_MODE' required when --cygnus specified"
4698 if !$seen_maint_mode;
4701 # Do any extra checking for GNU standards.
4702 sub check_gnu_standards
4704 if ($relative_dir eq '.')
4706 # In top level (or only) directory.
4707 require_file ("$am_file.am", GNU,
4708 qw/INSTALL NEWS README AUTHORS ChangeLog/);
4710 # Accept one of these three licenses; default to COPYING.
4711 # Make sure we do not overwrite an existing license.
4713 foreach (qw /COPYING COPYING.LIB COPYING.LESSER/)
4721 require_file ("$am_file.am", GNU, 'COPYING')
4725 for my $opt ('no-installman', 'no-installinfo')
4727 msg ('error-gnu', option $opt,
4728 "option `$opt' disallowed by GNU standards")
4733 # Do any extra checking for GNITS standards.
4734 sub check_gnits_standards
4736 if ($relative_dir eq '.')
4738 # In top level (or only) directory.
4739 require_file ("$am_file.am", GNITS, 'THANKS');
4743 ################################################################
4745 # Functions to handle files of each language.
4747 # Each `lang_X_rewrite($DIRECTORY, $BASE, $EXT)' function follows a
4748 # simple formula: Return value is LANG_SUBDIR if the resulting object
4749 # file should be in a subdir if the source file is, LANG_PROCESS if
4750 # file is to be dealt with, LANG_IGNORE otherwise.
4752 # Much of the actual processing is handled in
4753 # handle_single_transform_list. These functions exist so that
4754 # auxiliary information can be recorded for a later cleanup pass.
4755 # Note that the calls to these functions are computed, so don't bother
4756 # searching for their precise names in the source.
4758 # This is just a convenience function that can be used to determine
4759 # when a subdir object should be used.
4762 return option 'subdir-objects' ? LANG_SUBDIR : LANG_PROCESS;
4765 # Rewrite a single C source file.
4768 my ($directory, $base, $ext) = @_;
4770 if (option 'ansi2knr' && $base =~ /_$/)
4772 # FIXME: include line number in error.
4773 err_am "C source file `$base.c' would be deleted by ansi2knr rules";
4776 my $r = LANG_PROCESS;
4777 if (option 'subdir-objects')
4780 $base = $directory . '/' . $base
4781 unless $directory eq '.' || $directory eq '';
4783 err_am ("C objects in subdir but `AM_PROG_CC_C_O' "
4784 . "not in `$configure_ac'",
4785 uniq_scope => US_GLOBAL)
4786 unless $seen_cc_c_o;
4788 require_conf_file ("$am_file.am", FOREIGN, 'compile');
4790 # In this case we already have the directory information, so
4791 # don't add it again.
4792 $de_ansi_files{$base} = '';
4796 $de_ansi_files{$base} = (($directory eq '.' || $directory eq '')
4804 # Rewrite a single C++ source file.
4805 sub lang_cxx_rewrite
4807 return &lang_sub_obj;
4810 # Rewrite a single header file.
4811 sub lang_header_rewrite
4813 # Header files are simply ignored.
4817 # Rewrite a single yacc file.
4818 sub lang_yacc_rewrite
4820 my ($directory, $base, $ext) = @_;
4822 my $r = &lang_sub_obj;
4823 (my $newext = $ext) =~ tr/y/c/;
4824 return ($r, $newext);
4827 # Rewrite a single yacc++ file.
4828 sub lang_yaccxx_rewrite
4830 my ($directory, $base, $ext) = @_;
4832 my $r = &lang_sub_obj;
4833 (my $newext = $ext) =~ tr/y/c/;
4834 return ($r, $newext);
4837 # Rewrite a single lex file.
4838 sub lang_lex_rewrite
4840 my ($directory, $base, $ext) = @_;
4842 my $r = &lang_sub_obj;
4843 (my $newext = $ext) =~ tr/l/c/;
4844 return ($r, $newext);
4847 # Rewrite a single lex++ file.
4848 sub lang_lexxx_rewrite
4850 my ($directory, $base, $ext) = @_;
4852 my $r = &lang_sub_obj;
4853 (my $newext = $ext) =~ tr/l/c/;
4854 return ($r, $newext);
4857 # Rewrite a single assembly file.
4858 sub lang_asm_rewrite
4860 return &lang_sub_obj;
4863 # Rewrite a single Fortran 77 file.
4864 sub lang_f77_rewrite
4866 return LANG_PROCESS;
4869 # Rewrite a single preprocessed Fortran 77 file.
4870 sub lang_ppf77_rewrite
4872 return LANG_PROCESS;
4875 # Rewrite a single ratfor file.
4876 sub lang_ratfor_rewrite
4878 return LANG_PROCESS;
4881 # Rewrite a single Objective C file.
4882 sub lang_objc_rewrite
4884 return &lang_sub_obj;
4887 # Rewrite a single Java file.
4888 sub lang_java_rewrite
4893 # The lang_X_finish functions are called after all source file
4894 # processing is done. Each should handle defining rules for the
4895 # language, etc. A finish function is only called if a source file of
4896 # the appropriate type has been seen.
4900 # Push all libobjs files onto de_ansi_files. We actually only
4901 # push files which exist in the current directory, and which are
4902 # genuine source files.
4903 foreach my $file (keys %libsources)
4905 if ($file =~ /^(.*)\.[cly]$/ && -f "$relative_dir/$file")
4907 $de_ansi_files{$1} = ''
4911 if (option 'ansi2knr' && keys %de_ansi_files)
4913 # Make all _.c files depend on their corresponding .c files.
4915 foreach my $base (sort keys %de_ansi_files)
4917 # Each _.c file must depend on ansi2knr; otherwise it
4918 # might be used in a parallel build before it is built.
4919 # We need to support files in the srcdir and in the build
4920 # dir (because these files might be auto-generated. But
4921 # we can't use $< -- some makes only define $< during a
4923 my $ansfile = $de_ansi_files{$base} . $base . '.c';
4924 $output_rules .= ($base . "_.c: $ansfile \$(ANSI2KNR)\n\t"
4925 . '$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) '
4926 . '`if test -f $(srcdir)/' . $ansfile
4927 . '; then echo $(srcdir)/' . $ansfile
4928 . '; else echo ' . $ansfile . '; fi` '
4929 . "| sed 's/^# \\([0-9]\\)/#line \\1/' "
4930 . '| $(ANSI2KNR) > $@'
4931 # If ansi2knr fails then we shouldn't
4932 # create the _.c file
4933 . " || rm -f \$\@\n");
4934 push (@objects, $base . '_.$(OBJEXT)');
4935 push (@objects, $base . '_.lo')
4939 # Make all _.o (and _.lo) files depend on ansi2knr.
4940 # Use a sneaky little hack to make it print nicely.
4941 &pretty_print_rule ('', '', @objects, ':', '$(ANSI2KNR)');
4945 # This is a yacc helper which is called whenever we have decided to
4946 # compile a yacc file.
4947 sub lang_yacc_target_hook
4949 my ($self, $aggregate, $output, $input) = @_;
4951 my $flag = $aggregate . "_YFLAGS";
4952 my $flagvar = var $flag;
4953 my $YFLAGSvar = var 'YFLAGS';
4954 if (($flagvar && $flagvar->variable_value =~ /$DASH_D_PATTERN/o)
4955 || ($YFLAGSvar && $YFLAGSvar->variable_value =~ /$DASH_D_PATTERN/o))
4957 (my $output_base = $output) =~ s/$KNOWN_EXTENSIONS_PATTERN$//;
4958 my $header = $output_base . '.h';
4960 # Found a `-d' that applies to the compilation of this file.
4961 # Add a dependency for the generated header file, and arrange
4962 # for that file to be included in the distribution.
4963 # FIXME: this fails for `nodist_*_SOURCES'.
4964 $output_rules .= ("${header}: $output\n"
4965 # Recover from removal of $header
4966 . "\t\@if test ! -f \$@; then \\\n"
4967 . "\t rm -f $output; \\\n"
4968 . "\t \$(MAKE) $output; \\\n"
4969 . "\telse :; fi\n");
4970 &push_dist_common ($header);
4971 # If the files are built in the build directory, then we want
4972 # to remove them with `make clean'. If they are in srcdir
4973 # they shouldn't be touched. However, we can't determine this
4974 # statically, and the GNU rules say that yacc/lex output files
4975 # should be removed by maintainer-clean. So that's what we
4977 $clean_files{$header} = MAINTAINER_CLEAN;
4979 # Erase $OUTPUT on `make maintainer-clean' (by GNU standards).
4980 # See the comment above for $HEADER.
4981 $clean_files{$output} = MAINTAINER_CLEAN;
4984 # This is a lex helper which is called whenever we have decided to
4985 # compile a lex file.
4986 sub lang_lex_target_hook
4988 my ($self, $aggregate, $output, $input) = @_;
4989 # If the files are built in the build directory, then we want to
4990 # remove them with `make clean'. If they are in srcdir they
4991 # shouldn't be touched. However, we can't determine this
4992 # statically, and the GNU rules say that yacc/lex output files
4993 # should be removed by maintainer-clean. So that's what we do.
4994 $clean_files{$output} = MAINTAINER_CLEAN;
4997 # This is a helper for both lex and yacc.
4998 sub yacc_lex_finish_helper
5000 return if defined $language_scratch{'lex-yacc-done'};
5001 $language_scratch{'lex-yacc-done'} = 1;
5003 # If there is more than one distinct yacc (resp lex) source file
5004 # in a given directory, then the `ylwrap' program is required to
5005 # allow parallel builds to work correctly. FIXME: for now, no
5007 require_conf_file ($configure_ac, FOREIGN, 'ylwrap');
5008 if ($config_aux_dir_set_in_configure_in)
5010 &define_variable ('YLWRAP', $config_aux_dir . "/ylwrap", INTERNAL);
5014 &define_variable ('YLWRAP', '$(top_srcdir)/ylwrap', INTERNAL);
5018 sub lang_yacc_finish
5020 return if defined $language_scratch{'yacc-done'};
5021 $language_scratch{'yacc-done'} = 1;
5023 reject_var 'YACCFLAGS', "`YACCFLAGS' obsolete; use `YFLAGS' instead";
5025 &yacc_lex_finish_helper
5026 if count_files_for_language ('yacc') > 1;
5032 return if defined $language_scratch{'lex-done'};
5033 $language_scratch{'lex-done'} = 1;
5035 &yacc_lex_finish_helper
5036 if count_files_for_language ('lex') > 1;
5040 # Given a hash table of linker names, pick the name that has the most
5041 # precedence. This is lame, but something has to have global
5042 # knowledge in order to eliminate the conflict. Add more linkers as
5048 foreach my $l (qw(GCJLINK CXXLINK F77LINK OBJCLINK))
5050 return $l if defined $linkers{$l};
5055 # Called to indicate that an extension was used.
5059 if (! defined $extension_seen{$ext})
5061 $extension_seen{$ext} = 1;
5065 ++$extension_seen{$ext};
5069 # Return the number of files seen for a given language. Knows about
5070 # special cases we care about. FIXME: this is hideous. We need
5071 # something that involves real language objects. For instance yacc
5072 # and yaccxx could both derive from a common yacc class which would
5073 # know about the strange ylwrap requirement. (Or better yet we could
5074 # just not support legacy yacc!)
5075 sub count_files_for_language
5080 if ($name eq 'yacc' || $name eq 'yaccxx')
5082 @names = ('yacc', 'yaccxx');
5084 elsif ($name eq 'lex' || $name eq 'lexxx')
5086 @names = ('lex', 'lexxx');
5094 foreach $name (@names)
5096 my $lang = $languages{$name};
5097 foreach my $ext (@{$lang->extensions})
5099 $r += $extension_seen{$ext}
5100 if defined $extension_seen{$ext};
5107 # Called to ask whether source files have been seen . If HEADERS is 1,
5108 # headers can be included.
5113 # count all the sources
5115 foreach my $val (values %extension_seen)
5122 $count -= count_files_for_language ('header');
5129 # register_language (%ATTRIBUTE)
5130 # ------------------------------
5131 # Register a single language.
5132 # Each %ATTRIBUTE is of the form ATTRIBUTE => VALUE.
5133 sub register_language (%)
5139 unless defined $option{'ansi'};
5140 $option{'autodep'} = 'no'
5141 unless defined $option{'autodep'};
5142 $option{'linker'} = ''
5143 unless defined $option{'linker'};
5144 $option{'flags'} = []
5145 unless defined $option{'flags'};
5146 $option{'output_extensions'} = sub { return ( '.$(OBJEXT)', '.lo' ) }
5147 unless defined $option{'output_extensions'};
5149 my $lang = new Language (%option);
5152 $extension_map{$_} = $lang->name foreach @{$lang->extensions};
5153 $languages{$lang->name} = $lang;
5155 # Update the pattern of known extensions.
5156 accept_extensions (@{$lang->extensions});
5158 # Upate the $suffix_rule map.
5159 foreach my $suffix (@{$lang->extensions})
5161 foreach my $dest (&{$lang->output_extensions} ($suffix))
5163 register_suffix_rule (INTERNAL, $suffix, $dest);
5168 # derive_suffix ($EXT, $OBJ)
5169 # --------------------------
5170 # This function is used to find a path from a user-specified suffix $EXT
5171 # to $OBJ or to some other suffix we recognize internally, e.g. `cc'.
5172 sub derive_suffix ($$)
5174 my ($source_ext, $obj) = @_;
5176 while (! $extension_map{$source_ext}
5177 && $source_ext ne $obj
5178 && exists $suffix_rules->{$source_ext}
5179 && exists $suffix_rules->{$source_ext}{$obj})
5181 $source_ext = $suffix_rules->{$source_ext}{$obj}[0];
5188 ################################################################
5190 # Pretty-print something and append to output_rules.
5191 sub pretty_print_rule
5193 $output_rules .= &makefile_wrap (@_);
5197 ################################################################
5200 ## -------------------------------- ##
5201 ## Handling the conditional stack. ##
5202 ## -------------------------------- ##
5206 # make_conditional_string ($NEGATE, $COND)
5207 # ----------------------------------------
5208 sub make_conditional_string ($$)
5210 my ($negate, $cond) = @_;
5211 $cond = "${cond}_TRUE"
5212 unless $cond =~ /^TRUE|FALSE$/;
5213 $cond = Automake::Condition::conditional_negate ($cond)
5220 # cond_stack_if ($NEGATE, $COND, $WHERE)
5221 # --------------------------------------
5222 sub cond_stack_if ($$$)
5224 my ($negate, $cond, $where) = @_;
5226 error $where, "$cond does not appear in AM_CONDITIONAL"
5227 if ! $configure_cond{$cond} && $cond !~ /^TRUE|FALSE$/;
5229 push (@cond_stack, make_conditional_string ($negate, $cond));
5231 return new Automake::Condition (@cond_stack);
5236 # cond_stack_else ($NEGATE, $COND, $WHERE)
5237 # ----------------------------------------
5238 sub cond_stack_else ($$$)
5240 my ($negate, $cond, $where) = @_;
5244 error $where, "else without if";
5248 $cond_stack[$#cond_stack] =
5249 Automake::Condition::conditional_negate ($cond_stack[$#cond_stack]);
5251 # If $COND is given, check against it.
5254 $cond = make_conditional_string ($negate, $cond);
5256 error ($where, "else reminder ($negate$cond) incompatible with "
5257 . "current conditional: $cond_stack[$#cond_stack]")
5258 if $cond_stack[$#cond_stack] ne $cond;
5261 return new Automake::Condition (@cond_stack);
5266 # cond_stack_endif ($NEGATE, $COND, $WHERE)
5267 # -----------------------------------------
5268 sub cond_stack_endif ($$$)
5270 my ($negate, $cond, $where) = @_;
5275 error $where, "endif without if";
5279 # If $COND is given, check against it.
5282 $cond = make_conditional_string ($negate, $cond);
5284 error ($where, "endif reminder ($negate$cond) incompatible with "
5285 . "current conditional: $cond_stack[$#cond_stack]")
5286 if $cond_stack[$#cond_stack] ne $cond;
5291 return new Automake::Condition (@cond_stack);
5298 ## ------------------------ ##
5299 ## Handling the variables. ##
5300 ## ------------------------ ##
5303 # &define_pretty_variable ($VAR, $COND, $WHERE, @VALUE)
5304 # -----------------------------------------------------
5305 # Like define_variable, but the value is a list, and the variable may
5306 # be defined conditionally. The second argument is the Condition
5307 # under which the value should be defined; this should be the empty
5308 # string to define the variable unconditionally. The third argument
5309 # is a list holding the values to use for the variable. The value is
5310 # pretty printed in the output file.
5311 sub define_pretty_variable ($$$@)
5313 my ($var, $cond, $where, @value) = @_;
5315 if (! vardef ($var, $cond))
5317 Automake::Variable::define ($var, VAR_AUTOMAKE, '', $cond, "@value",
5318 '', $where, VAR_PRETTY);
5319 rvar ($var)->rdef ($cond)->set_seen;
5324 # define_variable ($VAR, $VALUE, $WHERE)
5325 # --------------------------------------
5326 # Define a new user variable VAR to VALUE, but only if not already defined.
5327 sub define_variable ($$$)
5329 my ($var, $value, $where) = @_;
5330 define_pretty_variable ($var, TRUE, $where, $value);
5334 # define_files_variable ($VAR, \@BASENAME, $EXTENSION, $WHERE)
5335 # -----------------------------------------------------------
5336 # Define the $VAR which content is the list of file names composed of
5337 # a @BASENAME and the $EXTENSION.
5338 sub define_files_variable ($\@$$)
5340 my ($var, $basename, $extension, $where) = @_;
5341 define_variable ($var,
5342 join (' ', map { "$_.$extension" } @$basename),
5347 # Like define_variable, but define a variable to be the configure
5348 # substitution by the same name.
5349 sub define_configure_variable ($)
5353 my $pretty = VAR_ASIS;
5354 my $owner = VAR_CONFIGURE;
5356 # Do not output the ANSI2KNR configure variable -- we AC_SUBST
5357 # it in protos.m4, but later redefine it elsewhere. This is
5358 # pretty hacky. We also don't output AMDEPBACKSLASH: it might
5359 # be subst'd by `\', which certainly would not be appreciated by
5361 if ($var eq 'ANSI2KNR' || $var eq 'AMDEPBACKSLASH')
5363 $pretty = VAR_SILENT;
5364 $owner = VAR_AUTOMAKE;
5367 Automake::Variable::define ($var, $owner, '', TRUE, subst $var,
5368 '', $configure_vars{$var}, $pretty);
5372 # define_compiler_variable ($LANG)
5373 # --------------------------------
5374 # Define a compiler variable. We also handle defining the `LT'
5375 # version of the command when using libtool.
5376 sub define_compiler_variable ($)
5380 my ($var, $value) = ($lang->compiler, $lang->compile);
5381 &define_variable ($var, $value, INTERNAL);
5382 &define_variable ("LT$var", "\$(LIBTOOL) --mode=compile $value", INTERNAL)
5387 # define_linker_variable ($LANG)
5388 # ------------------------------
5389 # Define linker variables.
5390 sub define_linker_variable ($)
5394 my ($var, $value) = ($lang->lder, $lang->ld);
5396 &define_variable ($lang->lder, $lang->ld, INTERNAL);
5397 # CCLINK = $(CCLD) blah blah...
5398 &define_variable ($lang->linker,
5399 ((var ('LIBTOOL') ? '$(LIBTOOL) --mode=link ' : '')
5404 ################################################################
5406 # &check_trailing_slash ($WHERE, $LINE)
5407 # --------------------------------------
5408 # Return 1 iff $LINE ends with a slash.
5409 # Might modify $LINE.
5410 sub check_trailing_slash ($\$)
5412 my ($where, $line) = @_;
5414 # Ignore `##' lines.
5415 return 0 if $$line =~ /$IGNORE_PATTERN/o;
5417 # Catch and fix a common error.
5418 msg "syntax", $where, "whitespace following trailing backslash"
5419 if $$line =~ s/\\\s+\n$/\\\n/;
5421 return $$line =~ /\\$/;
5425 # &read_am_file ($AMFILE, $WHERE)
5426 # -------------------------------
5427 # Read Makefile.am and set up %contents. Simultaneously copy lines
5428 # from Makefile.am into $output_trailer, or define variables as
5429 # appropriate. NOTE we put rules in the trailer section. We want
5430 # user rules to come after our generated stuff.
5431 sub read_am_file ($$)
5433 my ($amfile, $where) = @_;
5435 my $am_file = new Automake::XFile ("< $amfile");
5436 verb "reading $amfile";
5438 # Keep track of the youngest output dependency.
5439 my $mtime = mtime $amfile;
5440 $output_deps_greatest_timestamp = $mtime
5441 if $mtime > $output_deps_greatest_timestamp;
5448 use constant IN_VAR_DEF => 0;
5449 use constant IN_RULE_DEF => 1;
5450 use constant IN_COMMENT => 2;
5451 my $prev_state = IN_RULE_DEF;
5453 while ($_ = $am_file->getline)
5455 $where->set ("$amfile:$.");
5456 if (/$IGNORE_PATTERN/o)
5458 # Merely delete comments beginning with two hashes.
5460 elsif (/$WHITE_PATTERN/o)
5462 error $where, "blank line following trailing backslash"
5464 # Stick a single white line before the incoming macro or rule.
5467 # Flush all comments seen so far.
5470 $output_vars .= $comment;
5474 elsif (/$COMMENT_PATTERN/o)
5476 # Stick comments before the incoming macro or rule. Make
5477 # sure a blank line precedes the first block of comments.
5478 $spacing = "\n" unless $blank;
5480 $comment .= $spacing . $_;
5482 $prev_state = IN_COMMENT;
5488 $saw_bk = check_trailing_slash ($where, $_);
5491 # We save the conditional stack on entry, and then check to make
5492 # sure it is the same on exit. This lets us conditionally include
5494 my @saved_cond_stack = @cond_stack;
5495 my $cond = new Automake::Condition (@cond_stack);
5497 my $last_var_name = '';
5498 my $last_var_type = '';
5499 my $last_var_value = '';
5501 # FIXME: shouldn't use $_ in this loop; it is too big.
5504 $where->set ("$amfile:$.");
5506 # Make sure the line is \n-terminated.
5510 # Don't look at MAINTAINER_MODE_TRUE here. That shouldn't be
5511 # used by users. @MAINT@ is an anachronism now.
5512 $_ =~ s/\@MAINT\@//g
5513 unless $seen_maint_mode;
5515 my $new_saw_bk = check_trailing_slash ($where, $_);
5517 if (/$IGNORE_PATTERN/o)
5519 # Merely delete comments beginning with two hashes.
5521 elsif (/$WHITE_PATTERN/o)
5523 # Stick a single white line before the incoming macro or rule.
5525 error $where, "blank line following trailing backslash"
5528 elsif (/$COMMENT_PATTERN/o)
5530 # Stick comments before the incoming macro or rule.
5531 $comment .= $spacing . $_;
5533 error $where, "comment following trailing backslash"
5534 if $saw_bk && $comment eq '';
5535 $prev_state = IN_COMMENT;
5539 if ($prev_state == IN_RULE_DEF)
5541 my $cond = new Automake::Condition @cond_stack;
5542 $output_trailer .= $cond->subst_string;
5543 $output_trailer .= $_;
5545 elsif ($prev_state == IN_COMMENT)
5547 # If the line doesn't start with a `#', add it.
5548 # We do this because a continued comment like
5552 # is not portable. BSD make doesn't honor
5553 # escaped newlines in comments.
5555 $comment .= $spacing . $_;
5557 else # $prev_state == IN_VAR_DEF
5559 $last_var_value .= ' '
5560 unless $last_var_value =~ /\s$/;
5561 $last_var_value .= $_;
5565 Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
5566 $last_var_type, $cond,
5567 $last_var_value, $comment,
5568 $last_where, VAR_ASIS)
5570 $comment = $spacing = '';
5575 elsif (/$IF_PATTERN/o)
5577 $cond = cond_stack_if ($1, $2, $where);
5579 elsif (/$ELSE_PATTERN/o)
5581 $cond = cond_stack_else ($1, $2, $where);
5583 elsif (/$ENDIF_PATTERN/o)
5585 $cond = cond_stack_endif ($1, $2, $where);
5588 elsif (/$RULE_PATTERN/o)
5591 $prev_state = IN_RULE_DEF;
5593 # For now we have to output all definitions of user rules
5594 # and can't diagnose duplicates (see the comment in
5595 # rule_define). So we go on and ignore the return value.
5596 Automake::Rule::define ($1, $amfile, RULE_USER, $cond, $where);
5598 check_variable_expansions ($_, $where);
5600 $output_trailer .= $comment . $spacing;
5601 my $cond = new Automake::Condition @cond_stack;
5602 $output_trailer .= $cond->subst_string;
5603 $output_trailer .= $_;
5604 $comment = $spacing = '';
5606 elsif (/$ASSIGNMENT_PATTERN/o)
5608 # Found a macro definition.
5609 $prev_state = IN_VAR_DEF;
5610 $last_var_name = $1;
5611 $last_var_type = $2;
5612 $last_var_value = $3;
5613 $last_where = $where->clone;
5614 if ($3 ne '' && substr ($3, -1) eq "\\")
5616 # We preserve the `\' because otherwise the long lines
5617 # that are generated will be truncated by broken
5619 $last_var_value = $3 . "\n";
5624 Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
5625 $last_var_type, $cond,
5626 $last_var_value, $comment,
5627 $last_where, VAR_ASIS)
5629 $comment = $spacing = '';
5632 elsif (/$INCLUDE_PATTERN/o)
5636 if ($path =~ s/^\$\(top_srcdir\)\///)
5638 push (@include_stack, "\$\(top_srcdir\)/$path");
5639 # Distribute any included file.
5641 # Always use the $(top_srcdir) prefix in DIST_COMMON,
5642 # otherwise OSF make will implicitly copy the included
5643 # file in the build tree during `make distdir' to satisfy
5645 # (subdircond2.test and subdircond3.test will fail.)
5646 push_dist_common ("\$\(top_srcdir\)/$path");
5650 $path =~ s/\$\(srcdir\)\///;
5651 push (@include_stack, "\$\(srcdir\)/$path");
5652 # Always use the $(srcdir) prefix in DIST_COMMON,
5653 # otherwise OSF make will implicitly copy the included
5654 # file in the build tree during `make distdir' to satisfy
5656 # (subdircond2.test and subdircond3.test will fail.)
5657 push_dist_common ("\$\(srcdir\)/$path");
5658 $path = $relative_dir . "/" . $path if $relative_dir ne '.';
5660 $where->push_context ("`$path' included from here");
5661 &read_am_file ($path, $where);
5662 $where->pop_context;
5666 # This isn't an error; it is probably a continued rule.
5667 # In fact, this is what we assume.
5668 $prev_state = IN_RULE_DEF;
5669 check_variable_expansions ($_, $where);
5670 $output_trailer .= $comment . $spacing;
5671 my $cond = new Automake::Condition @cond_stack;
5672 $output_trailer .= $cond->subst_string;
5673 $output_trailer .= $_;
5674 $comment = $spacing = '';
5675 error $where, "`#' comment at start of rule is unportable"
5676 if $_ =~ /^\t\s*\#/;
5679 $saw_bk = $new_saw_bk;
5680 $_ = $am_file->getline;
5683 $output_trailer .= $comment;
5685 error ($where, "trailing backslash on last line")
5688 error ($where, (@cond_stack ? "unterminated conditionals: @cond_stack"
5689 : "too many conditionals closed in include file"))
5690 if "@saved_cond_stack" ne "@cond_stack";
5694 # define_standard_variables ()
5695 # ----------------------------
5696 # A helper for read_main_am_file which initializes configure variables
5697 # and variables from header-vars.am.
5698 sub define_standard_variables
5700 my $saved_output_vars = $output_vars;
5701 my ($comments, undef, $rules) =
5702 file_contents_internal (1, "$libdir/am/header-vars.am",
5703 new Automake::Location);
5705 foreach my $var (sort keys %configure_vars)
5707 &define_configure_variable ($var);
5710 $output_vars .= $comments . $rules;
5713 # Read main am file.
5714 sub read_main_am_file
5718 # This supports the strange variable tricks we are about to play.
5719 prog_error (macros_dump () . "variable defined before read_main_am_file")
5720 if (scalar (variables) > 0);
5722 # Generate copyright header for generated Makefile.in.
5723 # We do discard the output of predefined variables, handled below.
5724 $output_vars = ("# $in_file_name generated by automake "
5725 . $VERSION . " from $am_file_name.\n");
5726 $output_vars .= '# ' . subst ('configure_input') . "\n";
5727 $output_vars .= $gen_copyright;
5729 # We want to predefine as many variables as possible. This lets
5730 # the user set them with `+=' in Makefile.am.
5731 &define_standard_variables;
5733 # Read user file, which might override some of our values.
5734 &read_am_file ($amfile, new Automake::Location);
5739 ################################################################
5742 # &flatten ($STRING)
5743 # ------------------
5744 # Flatten the $STRING and return the result.
5759 # &make_paragraphs ($MAKEFILE, [%TRANSFORM])
5760 # ------------------------------------------
5761 # Load a $MAKEFILE, apply the %TRANSFORM, and return it as a list of
5763 sub make_paragraphs ($%)
5765 my ($file, %transform) = @_;
5767 # Complete %transform with global options and make it a Perl
5770 "s/$IGNORE_PATTERN//gm;"
5771 . transform (%transform,
5772 'CYGNUS' => !! option 'cygnus',
5774 => $seen_maint_mode ? subst ('MAINTAINER_MODE_TRUE') : '',
5776 'BZIP2' => !! option 'dist-bzip2',
5777 'COMPRESS' => !! option 'dist-tarZ',
5778 'GZIP' => ! option 'no-dist-gzip',
5779 'SHAR' => !! option 'dist-shar',
5780 'ZIP' => !! option 'dist-zip',
5782 'INSTALL-INFO' => ! option 'no-installinfo',
5783 'INSTALL-MAN' => ! option 'no-installman',
5784 'CK-NEWS' => !! option 'check-news',
5786 'SUBDIRS' => !! var ('SUBDIRS'),
5787 'TOPDIR' => backname ($relative_dir),
5788 'TOPDIR_P' => $relative_dir eq '.',
5790 'BUILD' => $seen_canonical == AC_CANONICAL_SYSTEM,
5791 'HOST' => $seen_canonical,
5792 'TARGET' => $seen_canonical == AC_CANONICAL_SYSTEM,
5794 'LIBTOOL' => !! var ('LIBTOOL'))
5795 # We don't need more than two consecutive new-lines.
5796 . 's/\n{3,}/\n\n/g';
5798 # Swallow the file and apply the COMMAND.
5799 my $fc_file = new Automake::XFile "< $file";
5801 verb "reading $file";
5802 my $saved_dollar_slash = $/;
5804 $_ = $fc_file->getline;
5805 $/ = $saved_dollar_slash;
5810 # Split at unescaped new lines.
5811 my @lines = split (/(?<!\\)\n/, $content);
5814 while (defined ($_ = shift @lines))
5816 my $paragraph = "$_";
5817 # If we are a rule, eat as long as we start with a tab.
5818 if (/$RULE_PATTERN/smo)
5820 while (defined ($_ = shift @lines) && $_ =~ /^\t/)
5822 $paragraph .= "\n$_";
5824 unshift (@lines, $_);
5827 # If we are a comments, eat as much comments as you can.
5828 elsif (/$COMMENT_PATTERN/smo)
5830 while (defined ($_ = shift @lines)
5831 && $_ =~ /$COMMENT_PATTERN/smo)
5833 $paragraph .= "\n$_";
5835 unshift (@lines, $_);
5838 push @res, $paragraph;
5847 # ($COMMENT, $VARIABLES, $RULES)
5848 # &file_contents_internal ($IS_AM, $FILE, $WHERE, [%TRANSFORM])
5849 # -------------------------------------------------------------
5850 # Return contents of a file from $libdir/am, automatically skipping
5851 # macros or rules which are already known. $IS_AM iff the caller is
5852 # reading an Automake file (as opposed to the user's Makefile.am).
5853 sub file_contents_internal ($$$%)
5855 my ($is_am, $file, $where, %transform) = @_;
5857 $where->set ($file);
5859 my $result_vars = '';
5860 my $result_rules = '';
5864 # The following flags are used to track rules spanning across
5865 # multiple paragraphs.
5866 my $is_rule = 0; # 1 if we are processing a rule.
5867 my $discard_rule = 0; # 1 if the current rule should not be output.
5869 # We save the conditional stack on entry, and then check to make
5870 # sure it is the same on exit. This lets us conditionally include
5872 my @saved_cond_stack = @cond_stack;
5873 my $cond = new Automake::Condition (@cond_stack);
5875 foreach (make_paragraphs ($file, %transform))
5877 # FIXME: no line number available.
5878 $where->set ($file);
5881 error $where, "blank line following trailing backslash:\n$_"
5883 error $where, "comment following trailing backslash:\n$_"
5889 # Stick empty line before the incoming macro or rule.
5892 elsif (/$COMMENT_PATTERN/mso)
5895 # Stick comments before the incoming macro or rule.
5899 # Handle inclusion of other files.
5900 elsif (/$INCLUDE_PATTERN/o)
5904 my $file = ($is_am ? "$libdir/am/" : '') . $1;
5905 $where->push_context ("`$file' included from here");
5907 my ($com, $vars, $rules)
5908 = file_contents_internal ($is_am, $file, $where, %transform);
5909 $where->pop_context;
5911 $result_vars .= $vars;
5912 $result_rules .= $rules;
5916 # Handling the conditionals.
5917 elsif (/$IF_PATTERN/o)
5919 $cond = cond_stack_if ($1, $2, $file);
5921 elsif (/$ELSE_PATTERN/o)
5923 $cond = cond_stack_else ($1, $2, $file);
5925 elsif (/$ENDIF_PATTERN/o)
5927 $cond = cond_stack_endif ($1, $2, $file);
5931 elsif (/$RULE_PATTERN/mso)
5935 # Separate relationship from optional actions: the first
5936 # `new-line tab" not preceded by backslash (continuation
5939 /^(.*?)(?:(?<!\\)\n(\t.*))?$/s;
5940 my ($relationship, $actions) = ($1, $2 || '');
5942 # Separate targets from dependencies: the first colon.
5943 $relationship =~ /^([^:]+\S+) *: *(.*)$/som;
5944 my ($targets, $dependencies) = ($1, $2);
5945 # Remove the escaped new lines.
5946 # I don't know why, but I have to use a tmp $flat_deps.
5947 my $flat_deps = &flatten ($dependencies);
5948 my @deps = split (' ', $flat_deps);
5950 foreach (split (' ' , $targets))
5952 # FIXME: 1. We are not robust to people defining several targets
5953 # at once, only some of them being in %dependencies. The
5954 # actions from the targets in %dependencies are usually generated
5955 # from the content of %actions, but if some targets in $targets
5956 # are not in %dependencies the ELSE branch will output
5957 # a rule for all $targets (i.e. the targets which are both
5958 # in %dependencies and $targets will have two rules).
5960 # FIXME: 2. The logic here is not able to output a
5961 # multi-paragraph rule several time (e.g. for each condition
5962 # it is defined for) because it only knows the first paragraph.
5964 # FIXME: 3. We are not robust to people defining a subset
5965 # of a previously defined "multiple-target" rule. E.g.
5966 # `foo:' after `foo bar:'.
5968 # Output only if not in FALSE.
5969 if (defined $dependencies{$_} && $cond != FALSE)
5971 &depend ($_, @deps);
5974 $actions{$_} .= "\n$actions" if $actions;
5978 $actions{$_} = $actions;
5983 # Free-lance dependency. Output the rule for all the
5984 # targets instead of one by one.
5985 my @undefined_conds =
5986 Automake::Rule::define ($targets, $file,
5987 $is_am ? RULE_AUTOMAKE : RULE_USER,
5989 for my $undefined_cond (@undefined_conds)
5991 my $condparagraph = $paragraph;
5992 $condparagraph =~ s/^/$undefined_cond->subst_string/gme;
5993 $result_rules .= "$spacing$comment$condparagraph\n";
5995 if (scalar @undefined_conds == 0)
5997 # Remember to discard next paragraphs
5998 # if they belong to this rule.
5999 # (but see also FIXME: #2 above.)
6002 $comment = $spacing = '';
6008 elsif (/$ASSIGNMENT_PATTERN/mso)
6010 my ($var, $type, $val) = ($1, $2, $3);
6011 error $where, "variable `$var' with trailing backslash"
6016 Automake::Variable::define ($var,
6017 $is_am ? VAR_AUTOMAKE : VAR_MAKEFILE,
6018 $type, $cond, $val, $comment, $where,
6022 $comment = $spacing = '';
6026 # This isn't an error; it is probably some tokens which
6027 # configure is supposed to replace, such as `@SET-MAKE@',
6028 # or some part of a rule cut by an if/endif.
6029 if (! $cond->false && ! ($is_rule && $discard_rule))
6031 s/^/$cond->subst_string/gme;
6032 $result_rules .= "$spacing$comment$_\n";
6034 $comment = $spacing = '';
6038 error ($where, @cond_stack ?
6039 "unterminated conditionals: @cond_stack" :
6040 "too many conditionals closed in include file")
6041 if "@saved_cond_stack" ne "@cond_stack";
6043 return ($comment, $result_vars, $result_rules);
6048 # &file_contents ($BASENAME, $WHERE, [%TRANSFORM])
6049 # ------------------------------------------------
6050 # Return contents of a file from $libdir/am, automatically skipping
6051 # macros or rules which are already known.
6052 sub file_contents ($$%)
6054 my ($basename, $where, %transform) = @_;
6055 my ($comments, $variables, $rules) =
6056 file_contents_internal (1, "$libdir/am/$basename.am", $where,
6058 return "$comments$variables$rules";
6063 # &transform (%PAIRS)
6064 # -------------------
6065 # For each ($TOKEN, $VAL) in %PAIRS produce a replacement expression
6066 # suitable for file_contents which:
6067 # - replaces %$TOKEN% with $VAL,
6068 # - enables/disables ?$TOKEN? and ?!$TOKEN?,
6069 # - replaces %?$TOKEN% with TRUE or FALSE.
6075 while (my ($token, $val) = each %pairs)
6077 $result .= "s/\Q%$token%\E/\Q$val\E/gm;";
6080 $result .= "s/\Q?$token?\E//gm;s/^.*\Q?!$token?\E.*\\n//gm;";
6081 $result .= "s/\Q%?$token%\E/TRUE/gm;";
6085 $result .= "s/\Q?!$token?\E//gm;s/^.*\Q?$token?\E.*\\n//gm;";
6086 $result .= "s/\Q%?$token%\E/FALSE/gm;";
6094 # &append_exeext ($MACRO)
6095 # -----------------------
6096 # Macro is an Automake magic macro which primary is PROGRAMS, e.g.
6097 # bin_PROGRAMS. Make sure these programs have $(EXEEXT) appended.
6098 sub append_exeext ($)
6102 prog_error "append_exeext ($macro)"
6103 unless $macro =~ /_PROGRAMS$/;
6105 transform_variable_recursively
6106 ($macro, $macro, 'am__EXEEXT', 0, INTERNAL,
6108 my ($subvar, $val, $cond, $full_cond) = @_;
6109 # Append $(EXEEXT) unless the user did it already, or it's a
6111 $val .= '$(EXEEXT)' unless $val =~ /(?:\$\(EXEEXT\)$|^[@]\w+[@]$)/;
6118 # &am_primary_prefixes ($PRIMARY, $CAN_DIST, @PREFIXES)
6119 # -----------------------------------------------------
6120 # Find all variable prefixes that are used for install directories. A
6121 # prefix `zar' qualifies iff:
6123 # * `zardir' is a variable.
6124 # * `zar_PRIMARY' is a variable.
6126 # As a side effect, it looks for misspellings. It is an error to have
6127 # a variable ending in a "reserved" suffix whose prefix is unknown, e.g.
6128 # "bin_PROGRAMS". However, unusual prefixes are allowed if a variable
6129 # of the same name (with "dir" appended) exists. For instance, if the
6130 # variable "zardir" is defined, then "zar_PROGRAMS" becomes valid.
6131 # This is to provide a little extra flexibility in those cases which
6133 sub am_primary_prefixes ($$@)
6135 my ($primary, $can_dist, @prefixes) = @_;
6138 my %valid = map { $_ => 0 } @prefixes;
6139 $valid{'EXTRA'} = 0;
6140 foreach my $var (variables)
6142 # Automake is allowed to define variables that look like primaries
6143 # but which aren't. E.g. INSTALL_sh_DATA.
6144 # Autoconf can also define variables like INSTALL_DATA, so
6145 # ignore all configure variables (at least those which are not
6146 # redefined in Makefile.am).
6147 # FIXME: We should make sure that these variables are not
6148 # conditionally defined (or else adjust the condition below).
6149 my $def = $var->def (TRUE);
6150 next if $def && $def->owner != VAR_MAKEFILE;
6152 my $varname = $var->name;
6154 if ($varname =~ /^(nobase_)?(dist_|nodist_)?(.*)_$primary$/)
6156 my ($base, $dist, $X) = ($1 || '', $2 || '', $3 || '');
6157 if ($dist ne '' && ! $can_dist)
6160 "invalid variable `$varname': `dist' is forbidden");
6162 # Standard directories must be explicitly allowed.
6163 elsif (! defined $valid{$X} && exists $standard_prefix{$X})
6166 "`${X}dir' is not a legitimate directory " .
6169 # A not explicitly valid directory is allowed if Xdir is defined.
6170 elsif (! defined $valid{$X} &&
6171 $var->requires_variables ("`$varname' is used", "${X}dir"))
6173 # Nothing to do. Any error message has been output
6174 # by $var->requires_variables.
6178 # Ensure all extended prefixes are actually used.
6179 $valid{"$base$dist$X"} = 1;
6184 # Return only those which are actually defined.
6185 return sort grep { var ($_ . '_' . $primary) } keys %valid;
6189 # Handle `where_HOW' variable magic. Does all lookups, generates
6190 # install code, and possibly generates code to define the primary
6191 # variable. The first argument is the name of the .am file to munge,
6192 # the second argument is the primary variable (e.g. HEADERS), and all
6193 # subsequent arguments are possible installation locations.
6195 # Returns list of [$location, $value] pairs, where
6196 # $value's are the values in all where_HOW variable, and $location
6197 # there associated location (the place here their parent variables were
6200 # FIXME: this should be rewritten to be cleaner. It should be broken
6201 # up into multiple functions.
6203 # Usage is: am_install_var (OPTION..., file, HOW, where...)
6210 my $default_dist = 0;
6213 if ($args[0] eq '-noextra')
6217 elsif ($args[0] eq '-candist')
6221 elsif ($args[0] eq '-defaultdist')
6226 elsif ($args[0] !~ /^-/)
6233 my ($file, $primary, @prefix) = @args;
6235 # Now that configure substitutions are allowed in where_HOW
6236 # variables, it is an error to actually define the primary. We
6237 # allow `JAVA', as it is customarily used to mean the Java
6238 # interpreter. This is but one of several Java hacks. Similarly,
6239 # `PYTHON' is customarily used to mean the Python interpreter.
6240 reject_var $primary, "`$primary' is an anachronism"
6241 unless $primary eq 'JAVA' || $primary eq 'PYTHON';
6243 # Get the prefixes which are valid and actually used.
6244 @prefix = am_primary_prefixes ($primary, $can_dist, @prefix);
6246 # If a primary includes a configure substitution, then the EXTRA_
6247 # form is required. Otherwise we can't properly do our job.
6253 # True if the iteration is the first one. Used for instance to
6254 # output parts of the associated file only once.
6256 foreach my $X (@prefix)
6258 my $nodir_name = $X;
6259 my $one_name = $X . '_' . $primary;
6260 my $one_var = var $one_name;
6262 my $strip_subdir = 1;
6263 # If subdir prefix should be preserved, do so.
6264 if ($nodir_name =~ /^nobase_/)
6267 $nodir_name =~ s/^nobase_//;
6270 # If files should be distributed, do so.
6274 $dist_p = (($default_dist && $nodir_name !~ /^nodist_/)
6275 || (! $default_dist && $nodir_name =~ /^dist_/));
6276 $nodir_name =~ s/^(dist|nodist)_//;
6280 # Use the location of the currently processed variable.
6281 # We are not processing a particular condition, so pick the first
6283 my $tmpcond = $one_var->conditions->one_cond;
6284 my $where = $one_var->rdef ($tmpcond)->location->clone;
6286 # Append actual contents of where_PRIMARY variable to
6287 # @result, skipping @substitutions@.
6288 foreach my $locvals ($one_var->value_as_list_recursive (location => 1))
6290 my ($loc, $value) = @$locvals;
6291 # Skip configure substitutions.
6292 if ($value =~ /^\@.*\@$/)
6294 if ($nodir_name eq 'EXTRA')
6297 "`$one_name' contains configure substitution, "
6300 # Check here to make sure variables defined in
6301 # configure.ac do not imply that EXTRA_PRIMARY
6303 elsif (! defined $configure_vars{$one_name})
6305 $require_extra = $one_name
6311 push (@result, $locvals);
6314 # A blatant hack: we rewrite each _PROGRAMS primary to include
6316 append_exeext ($one_name)
6317 if $primary eq 'PROGRAMS';
6318 # "EXTRA" shouldn't be used when generating clean targets,
6319 # all, or install targets. We used to warn if EXTRA_FOO was
6320 # defined uselessly, but this was annoying.
6322 if $nodir_name eq 'EXTRA';
6324 if ($nodir_name eq 'check')
6326 push (@check, '$(' . $one_name . ')');
6330 push (@used, '$(' . $one_name . ')');
6333 # Is this to be installed?
6334 my $install_p = $nodir_name ne 'noinst' && $nodir_name ne 'check';
6336 # If so, with install-exec? (or install-data?).
6337 my $exec_p = ($nodir_name =~ /$EXEC_DIR_PATTERN/o);
6339 my $check_options_p = $install_p && !! option 'std-options';
6341 # Use the location of the currently processed variable as context.
6342 $where->push_context ("while processing `$one_name'");
6344 # Singular form of $PRIMARY.
6345 (my $one_primary = $primary) =~ s/S$//;
6346 $output_rules .= &file_contents ($file, $where,
6349 PRIMARY => $primary,
6350 ONE_PRIMARY => $one_primary,
6352 NDIR => $nodir_name,
6353 BASE => $strip_subdir,
6356 INSTALL => $install_p,
6358 'CK-OPTS' => $check_options_p);
6363 # The JAVA variable is used as the name of the Java interpreter.
6364 # The PYTHON variable is used as the name of the Python interpreter.
6365 if (@used && $primary ne 'JAVA' && $primary ne 'PYTHON')
6368 define_pretty_variable ($primary, TRUE, INTERNAL, @used);
6369 $output_vars .= "\n";
6372 err_var ($require_extra,
6373 "`$require_extra' contains configure substitution,\n"
6374 . "but `EXTRA_$primary' not defined")
6375 if ($require_extra && ! var ('EXTRA_' . $primary));
6377 # Push here because PRIMARY might be configure time determined.
6378 push (@all, '$(' . $primary . ')')
6379 if @used && $primary ne 'JAVA' && $primary ne 'PYTHON';
6381 # Make the result unique. This lets the user use conditionals in
6382 # a natural way, but still lets us program lazily -- we don't have
6383 # to worry about handling a particular object more than once.
6384 # We will keep only one location per object.
6386 for my $pair (@result)
6388 my ($loc, $val) = @$pair;
6389 $result{$val} = $loc;
6391 my @l = sort keys %result;
6392 return map { [$result{$_}->clone, $_] } @l;
6396 ################################################################
6398 # Each key in this hash is the name of a directory holding a
6399 # Makefile.in. These variables are local to `is_make_dir'.
6401 my $make_dirs_set = 0;
6406 if (! $make_dirs_set)
6408 foreach my $iter (@configure_input_files)
6410 $make_dirs{dirname ($iter)} = 1;
6412 # We also want to notice Makefile.in's.
6413 foreach my $iter (@other_input_files)
6415 if ($iter =~ /Makefile\.in$/)
6417 $make_dirs{dirname ($iter)} = 1;
6422 return defined $make_dirs{$dir};
6425 ################################################################
6427 # This variable is local to the "require file" set of functions.
6428 my @require_file_paths = ();
6431 # &maybe_push_required_file ($DIR, $FILE, $FULLFILE)
6432 # --------------------------------------------------
6433 # See if we want to push this file onto dist_common. This function
6434 # encodes the rules for deciding when to do so.
6435 sub maybe_push_required_file
6437 my ($dir, $file, $fullfile) = @_;
6439 if ($dir eq $relative_dir)
6441 push_dist_common ($file);
6444 elsif ($relative_dir eq '.' && ! &is_make_dir ($dir))
6446 # If we are doing the topmost directory, and the file is in a
6447 # subdir which does not have a Makefile, then we distribute it
6449 push_dist_common ($fullfile);
6456 # &require_file_internal ($WHERE, $MYSTRICT, @FILES)
6457 # --------------------------------------------------
6458 # Verify that the file must exist in the current directory.
6459 # $MYSTRICT is the strictness level at which this file becomes required.
6461 # Must set require_file_paths before calling this function.
6462 # require_file_paths is set to hold a single directory (the one in
6463 # which the first file was found) before return.
6464 sub require_file_internal ($$@)
6466 my ($where, $mystrict, @files) = @_;
6468 foreach my $file (@files)
6476 my $dangling_sym = 0;
6477 foreach my $dir (@require_file_paths)
6479 $fullfile = $dir . "/" . $file;
6480 $errdir = $dir unless $errdir;
6482 # Use different name for "error filename". Otherwise on
6483 # an error the bad file will be reported as e.g.
6484 # `../../install-sh' when using the default
6486 $errfile = $errdir . '/' . $file;
6488 if (-l $fullfile && ! -f $fullfile)
6493 elsif (-f $fullfile)
6496 maybe_push_required_file ($dir, $file, $fullfile);
6502 # `--force-missing' only has an effect if `--add-missing' is
6504 if ($found_it && (! $add_missing || ! $force_missing))
6506 # Prune the path list.
6507 @require_file_paths = $save_dir;
6511 # If we've already looked for it, we're done. You might
6512 # wonder why we don't do this before searching for the
6513 # file. If we do that, then something like
6514 # AC_OUTPUT(subdir/foo foo) will fail to put foo.in into
6518 next if defined $require_file_found{$fullfile};
6519 $require_file_found{$fullfile} = 1;
6522 if ($strictness >= $mystrict)
6524 if ($dangling_sym && $add_missing)
6532 # Only install missing files according to our desired
6534 my $message = "required file `$errfile' not found";
6537 if (-f ("$libdir/$file"))
6541 # Install the missing file. Symlink if we
6542 # can, copy if we must. Note: delete the file
6543 # first, in case it is a dangling symlink.
6544 $message = "installing `$errfile'";
6545 # Windows Perl will hang if we try to delete a
6546 # file that doesn't exist.
6547 unlink ($errfile) if -f $errfile;
6548 if ($symlink_exists && ! $copy_missing)
6550 if (! symlink ("$libdir/$file", $errfile))
6553 $trailer = "; error while making link: $!";
6556 elsif (system ('cp', "$libdir/$file", $errfile))
6559 $trailer = "\n error while copying";
6563 if (! maybe_push_required_file (dirname ($errfile),
6568 # We have added the file but could not push it
6569 # into DIST_COMMON (probably because this is
6570 # an auxiliary file and we are not processing
6571 # the top level Makefile). This is unfortunate,
6572 # since it means we are using a file which is not
6575 # Get Automake to be run again: on the second
6576 # run the file will be found, and pushed into
6577 # the toplevel DIST_COMMON automatically.
6578 $automake_needs_to_reprocess_all_files = 1;
6582 # Prune the path list.
6583 @require_file_paths = &dirname ($errfile);
6586 # If --force-missing was specified, and we have
6587 # actually found the file, then do nothing.
6589 if $found_it && $force_missing;
6591 # If we couldn' install the file, but it is a target in
6592 # the Makefile, don't print anything. This allows files
6593 # like README, AUTHORS, or THANKS to be generated.
6595 if !$suppress && rule $file;
6597 msg ($suppress ? 'note' : 'error', $where, "$message$trailer");
6603 # &require_file ($WHERE, $MYSTRICT, @FILES)
6604 # -----------------------------------------
6605 sub require_file ($$@)
6607 my ($where, $mystrict, @files) = @_;
6608 @require_file_paths = $relative_dir;
6609 require_file_internal ($where, $mystrict, @files);
6612 # &require_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
6613 # -----------------------------------------------------------
6614 sub require_file_with_macro ($$$@)
6616 my ($cond, $macro, $mystrict, @files) = @_;
6617 $macro = rvar ($macro) unless ref $macro;
6618 require_file ($macro->rdef ($cond)->location, $mystrict, @files);
6622 # &require_conf_file ($WHERE, $MYSTRICT, @FILES)
6623 # ----------------------------------------------
6624 # Looks in configuration path, as specified by AC_CONFIG_AUX_DIR.
6625 sub require_conf_file ($$@)
6627 my ($where, $mystrict, @files) = @_;
6628 @require_file_paths = @config_aux_path;
6629 require_file_internal ($where, $mystrict, @files);
6630 my $dir = $require_file_paths[0];
6631 @config_aux_path = @require_file_paths;
6632 # Avoid unsightly '/.'s.
6633 $config_aux_dir = '$(top_srcdir)' . ($dir eq '.' ? "" : "/$dir");
6637 # &require_conf_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
6638 # ----------------------------------------------------------------
6639 sub require_conf_file_with_macro ($$$@)
6641 my ($cond, $macro, $mystrict, @files) = @_;
6642 require_conf_file (rvar ($macro)->rdef ($cond)->location,
6646 ################################################################
6648 # &require_build_directory ($DIRECTORY)
6649 # ------------------------------------
6650 # Emit rules to create $DIRECTORY if needed, and return
6651 # the file that any target requiring this directory should be made
6653 sub require_build_directory ($)
6655 my $directory = shift;
6656 my $dirstamp = "$directory/\$(am__dirstamp)";
6658 # Don't emit the rule twice.
6659 if (! defined $directory_map{$directory})
6661 $directory_map{$directory} = 1;
6663 # Set a variable for the dirstamp basename.
6664 define_pretty_variable ('am__dirstamp', TRUE, INTERNAL,
6665 '$(am__leading_dot)dirstamp');
6667 # Directory must be removed by `make distclean'.
6668 $clean_files{$dirstamp} = DIST_CLEAN;
6670 $output_rules .= ("$dirstamp:\n"
6671 . "\t\@\$(mkdir_p) $directory\n"
6672 . "\t\@: > $dirstamp\n");
6678 # &require_build_directory_maybe ($FILE)
6679 # --------------------------------------
6680 # If $FILE lies in a subdirectory, emit a rule to create this
6681 # directory and return the file that $FILE should be made
6682 # dependent upon. Otherwise, just return the empty string.
6683 sub require_build_directory_maybe ($)
6686 my $directory = dirname ($file);
6688 if ($directory ne '.')
6690 return require_build_directory ($directory);
6698 ################################################################
6700 # Push a list of files onto dist_common.
6701 sub push_dist_common
6703 prog_error "push_dist_common run after handle_dist"
6704 if $handle_dist_run;
6705 Automake::Variable::define ('DIST_COMMON', VAR_AUTOMAKE, '+', TRUE, "@_",
6706 '', INTERNAL, VAR_PRETTY);
6710 ################################################################
6712 # generate_makefile ($MAKEFILE_AM, $MAKEFILE_IN)
6713 # ----------------------------------------------
6714 # Generate a Makefile.in given the name of the corresponding Makefile and
6715 # the name of the file output by config.status.
6716 sub generate_makefile ($$)
6718 my ($makefile_am, $makefile_in) = @_;
6720 # Reset all the Makefile.am related variables.
6721 initialize_per_input;
6723 # AUTOMAKE_OPTIONS can contains -W flags to disable or enable
6724 # warnings for this file. So hold any warning issued before
6725 # we have processed AUTOMAKE_OPTIONS.
6726 buffer_messages ('warning');
6728 # Name of input file ("Makefile.am") and output file
6729 # ("Makefile.in"). These have no directory components.
6730 $am_file_name = basename ($makefile_am);
6731 $in_file_name = basename ($makefile_in);
6733 # $OUTPUT is encoded. If it contains a ":" then the first element
6734 # is the real output file, and all remaining elements are input
6735 # files. We don't scan or otherwise deal with these input files,
6736 # other than to mark them as dependencies. See
6737 # &scan_autoconf_files for details.
6738 my ($makefile, @inputs) = split (/:/, $output_files{$makefile_in});
6740 $relative_dir = dirname ($makefile);
6741 $am_relative_dir = dirname ($makefile_am);
6743 read_main_am_file ($makefile_am);
6746 # Process buffered warnings.
6748 # Fatal error. Just return, so we can continue with next file.
6751 # Process buffered warnings.
6754 # There are a few install-related variables that you should not define.
6755 foreach my $var ('PRE_INSTALL', 'POST_INSTALL', 'NORMAL_INSTALL')
6760 my $def = $v->def (TRUE);
6761 prog_error "$var not defined in condition TRUE"
6763 reject_var $var, "`$var' should not be defined"
6764 if $def->owner != VAR_AUTOMAKE;
6768 # Catch some obsolete variables.
6769 msg_var ('obsolete', 'INCLUDES',
6770 "`INCLUDES' is the old name for `AM_CPPFLAGS' (or `*_CPPFLAGS')")
6771 if var ('INCLUDES');
6773 # At the toplevel directory, we might need config.guess, config.sub
6774 # or libtool scripts (ltconfig and ltmain.sh).
6775 if ($relative_dir eq '.')
6777 # AC_CANONICAL_HOST and AC_CANONICAL_SYSTEM need config.guess and
6779 require_conf_file ($canonical_location, FOREIGN,
6780 'config.guess', 'config.sub')
6784 # Must do this after reading .am file.
6785 define_variable ('subdir', $relative_dir, INTERNAL);
6787 # If DIST_SUBDIRS is defined, make sure SUBDIRS is, so that
6788 # recursive rules are enabled.
6789 define_pretty_variable ('SUBDIRS', TRUE, INTERNAL, '')
6790 if var 'DIST_SUBDIRS' && ! var 'SUBDIRS';
6792 # Check first, because we might modify some state.
6794 check_gnu_standards;
6795 check_gnits_standards;
6797 handle_configure ($makefile_am, $makefile_in, $makefile, @inputs);
6804 # This must run first so that the ANSI2KNR definition is generated
6805 # before it is used by the _.c rules. We have to do this because
6806 # a variable which is used in a dependency must be defined before
6807 # the target, or else make won't properly see it.
6809 # This must be run after all the sources are scanned.
6812 # We have to run this after dealing with all the programs.
6815 # Variables used by distdir.am and tags.am.
6816 define_pretty_variable ('SOURCES', TRUE, INTERNAL, @sources);
6817 define_pretty_variable ('DIST_SOURCES', TRUE, INTERNAL, @dist_sources);
6829 handle_minor_options;
6832 # This must come after most other rules.
6836 do_check_merge_target;
6837 handle_all ($makefile);
6840 if (var ('lib_LTLIBRARIES') && var ('bin_PROGRAMS'))
6842 $output_rules .= "install-binPROGRAMS: install-libLTLIBRARIES\n\n";
6846 handle_clean ($makefile);
6847 handle_factored_dependencies;
6849 # Comes last, because all the above procedures may have
6850 # defined or overridden variables.
6851 $output_vars .= output_variables;
6855 if (! -d ($output_directory . '/' . $am_relative_dir))
6857 mkdir ($output_directory . '/' . $am_relative_dir, 0755);
6860 my ($out_file) = $output_directory . '/' . $makefile_in;
6862 # We make sure that `all:' is the first target.
6864 "$output_vars$output_all$output_header$output_rules$output_trailer";
6866 # Decide whether we must update the output file or not.
6867 # We have to update in the following situations.
6868 # * $force_generation is set.
6869 # * any of the output dependencies is younger than the output
6870 # * the contents of the output is different (this can happen
6871 # if the project has been populated with a file listed in
6872 # @common_files since the last run).
6873 # Output's dependencies are split in two sets:
6874 # * dependencies which are also configure dependencies
6875 # These do not change between each Makefile.am
6876 # * other dependencies, specific to the Makefile.am being processed
6877 # (such as the Makefile.am itself, or any Makefile fragment
6879 my $timestamp = mtime $out_file;
6880 if (! $force_generation
6881 && $configure_deps_greatest_timestamp < $timestamp
6882 && $output_deps_greatest_timestamp < $timestamp
6883 && $output eq contents ($out_file))
6885 verb "$out_file unchanged";
6886 # No need to update.
6893 or fatal "cannot remove $out_file: $!\n";
6896 my $gm_file = new Automake::XFile "> $out_file";
6897 verb "creating $out_file";
6898 print $gm_file $output;
6901 ################################################################
6906 ################################################################
6908 # Print usage information.
6911 print "Usage: $0 [OPTION] ... [Makefile]...
6913 Generate Makefile.in for configure from Makefile.am.
6916 --help print this help, then exit
6917 --version print version number, then exit
6918 -v, --verbose verbosely list files processed
6919 --no-force only update Makefile.in's that are out of date
6920 -W, --warnings=CATEGORY report the warnings falling in CATEGORY
6922 Dependency tracking:
6923 -i, --ignore-deps disable dependency tracking code
6924 --include-deps enable dependency tracking code
6927 --cygnus assume program is part of Cygnus-style tree
6928 --foreign set strictness to foreign
6929 --gnits set strictness to gnits
6930 --gnu set strictness to gnu
6933 -a, --add-missing add missing standard files to package
6934 --libdir=DIR directory storing library files
6935 -c, --copy with -a, copy missing files (default is symlink)
6936 -f, --force-missing force update of standard files
6939 Automake::ChannelDefs::usage;
6943 foreach my $iter (sort ((@common_files, @common_sometimes)))
6945 push (@lcomm, $iter) unless $iter eq $last;
6950 print "\nFiles which are automatically distributed, if found:\n";
6951 format USAGE_FORMAT =
6952 @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<
6953 $four[0], $four[1], $four[2], $four[3]
6955 $~ = "USAGE_FORMAT";
6958 my $rows = int(@lcomm / $cols);
6959 my $rest = @lcomm % $cols;
6970 for (my $y = 0; $y < $rows; $y++)
6972 @four = ("", "", "", "");
6973 for (my $x = 0; $x < $cols; $x++)
6975 last if $y + 1 == $rows && $x == $rest;
6977 my $idx = (($x > $rest)
6978 ? ($rows * $rest + ($rows - 1) * ($x - $rest))
6982 $four[$x] = $lcomm[$idx];
6987 print "\nReport bugs to <bug-automake\@gnu.org>.\n";
6989 # --help always returns 0 per GNU standards.
6996 # Print version information
7000 automake (GNU $PACKAGE) $VERSION
7001 Written by Tom Tromey <tromey\@redhat.com>.
7003 Copyright 2003 Free Software Foundation, Inc.
7004 This is free software; see the source for copying conditions. There is NO
7005 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7007 # --version always returns 0 per GNU standards.
7011 ################################################################
7013 # Parse command line.
7014 sub parse_arguments ()
7017 set_strictness ('gnu');
7019 my $cli_where = new Automake::Location;
7022 'libdir:s' => \$libdir,
7023 'gnu' => sub { set_strictness ('gnu'); },
7024 'gnits' => sub { set_strictness ('gnits'); },
7025 'cygnus' => sub { set_global_option ('cygnus', $cli_where); },
7026 'foreign' => sub { set_strictness ('foreign'); },
7027 'include-deps' => sub { unset_global_option ('no-dependencies'); },
7028 'i|ignore-deps' => sub { set_global_option ('no-dependencies',
7030 'no-force' => sub { $force_generation = 0; },
7031 'f|force-missing' => \$force_missing,
7032 'o|output-dir:s' => \$output_directory,
7033 'a|add-missing' => \$add_missing,
7034 'c|copy' => \$copy_missing,
7035 'v|verbose' => sub { setup_channel 'verb', silent => 0; },
7036 'W|warnings:s' => \&parse_warnings,
7037 # These long options (--Werror and --Wno-error) for backward
7038 # compatibility. Use -Werror and -Wno-error today.
7039 'Werror' => sub { parse_warnings 'W', 'error'; },
7040 'Wno-error' => sub { parse_warnings 'W', 'no-error'; },
7043 Getopt::Long::config ("bundling", "pass_through");
7045 # See if --version or --help is used. We want to process these before
7046 # anything else because the GNU Coding Standards require us to
7047 # `exit 0' after processing these options, and we can't guarantee this
7048 # if we treat other options first. (Handling other options first
7049 # could produce error diagnostics, and in this condition it is
7050 # confusing if Automake does `exit 0'.)
7051 my %cli_options_1st_pass =
7053 'version' => \&version,
7055 # Recognize all other options (and their arguments) but do nothing.
7056 map { $_ => sub {} } (keys %cli_options)
7058 my @ARGV_backup = @ARGV;
7059 Getopt::Long::GetOptions %cli_options_1st_pass
7061 @ARGV = @ARGV_backup;
7063 # Now *really* process the options. This time we know
7064 # that --help and --version are not present.
7065 Getopt::Long::GetOptions %cli_options
7068 if (defined $output_directory)
7070 msg 'obsolete', "`--output-dir' is deprecated\n";
7074 # In the next release we'll remove this entirely.
7075 $output_directory = '.';
7078 foreach my $arg (@ARGV)
7082 fatal ("unrecognized option `$arg'\n"
7083 . "Try `$0 --help' for more information.");
7086 # Handle $local:$input syntax.
7087 my ($local, @rest) = split (/:/, $arg);
7088 @rest = ("$local.in",) unless @rest;
7089 my $input = locate_am @rest;
7092 push @input_files, $input;
7093 $output_files{$input} = join (':', ($local, @rest));
7097 error "no Automake input file found in `$arg'";
7102 ################################################################
7104 # Parse the WARNINGS environment variable.
7107 # Parse command line.
7110 $configure_ac = require_configure_ac;
7112 # Do configure.ac scan only once.
7113 scan_autoconf_files;
7115 fatal "no `Makefile.am' found or specified\n"
7118 my $automake_has_run = 0;
7122 if ($automake_has_run)
7124 verb 'processing Makefiles another time to fix them up.';
7125 prog_error 'running more than two times should never be needed.'
7126 if $automake_has_run >= 2;
7128 $automake_needs_to_reprocess_all_files = 0;
7130 # Now do all the work on each file.
7131 foreach my $file (@input_files)
7133 ($am_file = $file) =~ s/\.in$//;
7134 if (! -f ($am_file . '.am'))
7136 error "`$am_file.am' does not exist";
7140 # Any warning setting now local to this Makefile.am.
7143 generate_makefile ($am_file . '.am', $file);
7145 # Back out any warning setting.
7149 ++$automake_has_run;
7151 while ($automake_needs_to_reprocess_all_files);
7156 ### Setup "GNU" style for perl-mode and cperl-mode.
7158 ## perl-indent-level: 2
7159 ## perl-continued-statement-offset: 2
7160 ## perl-continued-brace-offset: 0
7161 ## perl-brace-offset: 0
7162 ## perl-brace-imaginary-offset: 0
7163 ## perl-label-offset: -2
7164 ## cperl-indent-level: 2
7165 ## cperl-brace-offset: 0
7166 ## cperl-continued-brace-offset: 0
7167 ## cperl-label-offset: -2
7168 ## cperl-extra-newline-before-brace: t
7169 ## cperl-merge-trailing-else: nil
7170 ## cperl-continued-statement-offset: 2