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,
10 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free
11 # Software Foundation, Inc.
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2, or (at your option)
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
26 # Originally written by David Mackenzie <djm@gnu.ai.mit.edu>.
27 # Perl reimplementation by Tom Tromey <tromey@redhat.com>, and
28 # Alexandre Duret-Lutz <adl@gnu.org>.
34 my $perllibdir = $ENV{'perllibdir'} || '@datadir@/@PACKAGE@-@APIVERSION@';
35 unshift @INC, (split '@PATH_SEPARATOR@', $perllibdir);
37 # Override SHELL. This is required on DJGPP so that system() uses
38 # bash, not COMMAND.COM which doesn't quote arguments properly.
39 # Other systems aren't expected to use $SHELL when Automake
40 # runs, but it should be safe to drop the `if DJGPP' guard if
41 # it turns up other systems need the same thing. After all,
42 # if SHELL is used, ./configure's SHELL is always better than
43 # the user's SHELL (which may be something like tcsh).
44 $ENV{'SHELL'} = '@SHELL@' if exists $ENV{'DJDIR'};
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.
56 # `pure' is `1' or `'. A `pure' language is one where, if
57 # all the files in a directory are of that language, then we
58 # do not require the C compiler or any code to call it.
63 # Name of the compiling variable (COMPILE).
65 # Content of the compiling variable.
67 # Flag to require compilation without linking (-c).
68 'compile_flag' => "\$",
70 # A subroutine to compute a list of possible extensions of
71 # the product given the input extensions.
72 # (defaults to a subroutine which returns ('.$(OBJEXT)', '.lo'))
73 'output_extensions' => "\$",
74 # A list of flag variables used in 'compile'.
78 # Any tag to pass to libtool while compiling.
79 'libtool_tag' => "\$",
81 # The file to use when generating rules for this language.
82 # The default is 'depend2'.
85 # Name of the linking variable (LINK).
87 # Content of the linking variable.
90 # Name of the compiler variable (CC).
93 # Name of the linker variable (LD).
95 # Content of the linker variable ($(CC)).
98 # Flag to specify the output file (-o).
99 'output_flag' => "\$",
102 # This is a subroutine which is called whenever we finally
103 # determine the context in which a source file will be
105 '_target_hook' => "\$",
107 # If TRUE, nodist_ sources will be compiled using specific rules
108 # (i.e. not inference rules). The default is FALSE.
109 'nodist_specific' => "\$");
115 if (defined $self->_finish)
117 &{$self->_finish} (@_);
121 sub target_hook ($$$$%)
124 if (defined $self->_target_hook)
126 &{$self->_target_hook} (@_);
133 use Automake::Config;
140 require Thread::Queue;
141 import Thread::Queue;
144 use Automake::General;
146 use Automake::Channels;
147 use Automake::ChannelDefs;
148 use Automake::Configure_ac;
149 use Automake::FileUtils;
150 use Automake::Location;
151 use Automake::Condition qw/TRUE FALSE/;
152 use Automake::DisjConditions;
153 use Automake::Options;
154 use Automake::Version;
155 use Automake::Variable;
156 use Automake::VarDef;
158 use Automake::RuleDef;
159 use Automake::Wrap 'makefile_wrap';
168 # Some regular expressions. One reason to put them here is that it
169 # makes indentation work better in Emacs.
171 # Writing singled-quoted-$-terminated regexes is a pain because
172 # perl-mode thinks of $' as the ${'} variable (instead of a $ followed
173 # by a closing quote. Letting perl-mode think the quote is not closed
174 # leads to all sort of misindentations. On the other hand, defining
175 # regexes as double-quoted strings is far less readable. So usually
178 # $REGEX = '^regex_value' . "\$";
180 my $IGNORE_PATTERN = '^\s*##([^#\n].*)?\n';
181 my $WHITE_PATTERN = '^\s*' . "\$";
182 my $COMMENT_PATTERN = '^#';
183 my $TARGET_PATTERN='[$a-zA-Z0-9_.@%][-.a-zA-Z0-9_(){}/$+@%]*';
184 # A rule has three parts: a list of targets, a list of dependencies,
185 # and optionally actions.
187 "^($TARGET_PATTERN(?:(?:\\\\\n|\\s)+$TARGET_PATTERN)*) *:([^=].*|)\$";
189 # Only recognize leading spaces, not leading tabs. If we recognize
190 # leading tabs here then we need to make the reader smarter, because
191 # otherwise it will think rules like `foo=bar; \' are errors.
192 my $ASSIGNMENT_PATTERN = '^ *([^ \t=:+]*)\s*([:+]?)=\s*(.*)' . "\$";
193 # This pattern recognizes a Gnits version id and sets $1 if the
194 # release is an alpha release. We also allow a suffix which can be
195 # used to extend the version number with a "fork" identifier.
196 my $GNITS_VERSION_PATTERN = '\d+\.\d+([a-z]|\.\d+)?(-[A-Za-z0-9]+)?';
198 my $IF_PATTERN = '^if\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*)\s*(?:#.*)?' . "\$";
200 '^else(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?' . "\$";
202 '^endif(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?' . "\$";
203 my $PATH_PATTERN = '(\w|[+/.-])+';
204 # This will pass through anything not of the prescribed form.
205 my $INCLUDE_PATTERN = ('^include\s+'
206 . '((\$\(top_srcdir\)/' . $PATH_PATTERN . ')'
207 . '|(\$\(srcdir\)/' . $PATH_PATTERN . ')'
208 . '|([^/\$]' . $PATH_PATTERN . '))\s*(#.*)?' . "\$");
210 # Directories installed during 'install-exec' phase.
211 my $EXEC_DIR_PATTERN =
212 '^(?:bin|sbin|libexec|sysconf|localstate|lib|pkglib|.*exec.*)' . "\$";
214 # Values for AC_CANONICAL_*
215 use constant AC_CANONICAL_BUILD => 1;
216 use constant AC_CANONICAL_HOST => 2;
217 use constant AC_CANONICAL_TARGET => 3;
219 # Values indicating when something should be cleaned.
220 use constant MOSTLY_CLEAN => 0;
221 use constant CLEAN => 1;
222 use constant DIST_CLEAN => 2;
223 use constant MAINTAINER_CLEAN => 3;
226 my @libtool_files = qw(ltmain.sh config.guess config.sub);
227 # ltconfig appears here for compatibility with old versions of libtool.
228 my @libtool_sometimes = qw(ltconfig ltcf-c.sh ltcf-cxx.sh ltcf-gcj.sh);
230 # Commonly found files we look for and automatically include in
233 (qw(ABOUT-GNU ABOUT-NLS AUTHORS BACKLOG COPYING COPYING.DOC COPYING.LIB
234 COPYING.LESSER ChangeLog INSTALL NEWS README THANKS TODO
235 ar-lib compile config.guess config.rpath
236 config.sub depcomp elisp-comp install-sh libversion.in mdate-sh
237 missing mkinstalldirs py-compile texinfo.tex ylwrap),
238 @libtool_files, @libtool_sometimes);
240 # Commonly used files we auto-include, but only sometimes. This list
241 # is used for the --help output only.
242 my @common_sometimes =
243 qw(aclocal.m4 acconfig.h config.h.top config.h.bot configure
244 configure.ac configure.in stamp-vti);
246 # Standard directories from the GNU Coding Standards, and additional
247 # pkg* directories from Automake. Stored in a hash for fast member check.
248 my %standard_prefix =
249 map { $_ => 1 } (qw(bin data dataroot doc dvi exec html include info
250 lib libexec lisp locale localstate man man1 man2
251 man3 man4 man5 man6 man7 man8 man9 oldinclude pdf
252 pkgdata pkginclude pkglib pkglibexec ps sbin
253 sharedstate sysconf));
255 # Copyright on generated Makefile.ins.
256 my $gen_copyright = "\
257 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
258 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
260 # This Makefile.in is free software; the Free Software Foundation
261 # gives unlimited permission to copy and/or distribute it,
262 # with or without modifications, as long as this notice is preserved.
264 # This program is distributed in the hope that it will be useful,
265 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
266 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
267 # PARTICULAR PURPOSE.
270 # These constants are returned by the lang_*_rewrite functions.
271 # LANG_SUBDIR means that the resulting object file should be in a
272 # subdir if the source file is. In this case the file name cannot
273 # have `..' components.
274 use constant LANG_IGNORE => 0;
275 use constant LANG_PROCESS => 1;
276 use constant LANG_SUBDIR => 2;
278 # These are used when keeping track of whether an object can be built
279 # by two different paths.
280 use constant COMPILE_LIBTOOL => 1;
281 use constant COMPILE_ORDINARY => 2;
283 # We can't always associate a location to a variable or a rule,
284 # when it's defined by Automake. We use INTERNAL in this case.
285 use constant INTERNAL => new Automake::Location;
287 # Serialization keys for message queues.
288 use constant QUEUE_MESSAGE => "msg";
289 use constant QUEUE_CONF_FILE => "conf file";
290 use constant QUEUE_LOCATION => "location";
291 use constant QUEUE_STRING => "string";
294 ## ---------------------------------- ##
295 ## Variables related to the options. ##
296 ## ---------------------------------- ##
298 # TRUE if we should always generate Makefile.in.
299 my $force_generation = 1;
301 # From the Perl manual.
302 my $symlink_exists = (eval 'symlink ("", "");', $@ eq '');
304 # TRUE if missing standard files should be installed.
307 # TRUE if we should copy missing files; otherwise symlink if possible.
308 my $copy_missing = 0;
310 # TRUE if we should always update files that we know about.
311 my $force_missing = 0;
314 ## ---------------------------------------- ##
315 ## Variables filled during files scanning. ##
316 ## ---------------------------------------- ##
318 # Name of the configure.ac file.
321 # Files found by scanning configure.ac for LIBOBJS.
324 # Names used in AC_CONFIG_HEADER call.
325 my @config_headers = ();
327 # Names used in AC_CONFIG_LINKS call.
328 my @config_links = ();
330 # List of Makefile.am's to process, and their corresponding outputs.
331 my @input_files = ();
332 my %output_files = ();
334 # Complete list of Makefile.am's that exist.
335 my @configure_input_files = ();
337 # List of files in AC_CONFIG_FILES/AC_OUTPUT without Makefile.am's,
339 my @other_input_files = ();
340 # Where each AC_CONFIG_FILES/AC_OUTPUT/AC_CONFIG_LINK/AC_CONFIG_HEADER appears.
341 # The keys are the files created by these macros.
342 my %ac_config_files_location = ();
343 # The condition under which AC_CONFIG_FOOS appears.
344 my %ac_config_files_condition = ();
346 # Directory to search for configure-required files. This
347 # will be computed by &locate_aux_dir and can be set using
348 # AC_CONFIG_AUX_DIR in configure.ac.
349 # $CONFIG_AUX_DIR is the `raw' directory, valid only in the source-tree.
350 my $config_aux_dir = '';
351 my $config_aux_dir_set_in_configure_ac = 0;
352 # $AM_CONFIG_AUX_DIR is prefixed with $(top_srcdir), so it can be used
354 my $am_config_aux_dir = '';
356 # Directory to search for AC_LIBSOURCE files, as set by AC_CONFIG_LIBOBJ_DIR
358 my $config_libobj_dir = '';
360 # Whether AM_GNU_GETTEXT has been seen in configure.ac.
361 my $seen_gettext = 0;
362 # Whether AM_GNU_GETTEXT([external]) is used.
363 my $seen_gettext_external = 0;
364 # Where AM_GNU_GETTEXT appears.
365 my $ac_gettext_location;
366 # Whether AM_GNU_GETTEXT_INTL_SUBDIR has been seen.
367 my $seen_gettext_intl = 0;
369 # Lists of tags supported by Libtool.
370 my %libtool_tags = ();
371 # 1 if Libtool uses LT_SUPPORTED_TAG. If it does, then it also
372 # uses AC_REQUIRE_AUX_FILE.
373 my $libtool_new_api = 0;
375 # Most important AC_CANONICAL_* macro seen so far.
376 my $seen_canonical = 0;
377 # Location of that macro.
378 my $canonical_location;
380 # Where AM_MAINTAINER_MODE appears.
383 # Actual version we've seen.
384 my $package_version = '';
386 # Where version is defined.
387 my $package_version_location;
389 # TRUE if we've seen AM_ENABLE_MULTILIB.
390 my $seen_multilib = 0;
392 # TRUE if we've seen AM_PROG_AR
395 # TRUE if we've seen AM_PROG_CC_C_O
398 # Location of AC_REQUIRE_AUX_FILE calls, indexed by their argument.
399 my %required_aux_file = ();
401 # Where AM_INIT_AUTOMAKE is called;
402 my $seen_init_automake = 0;
404 # TRUE if we've seen AM_AUTOMAKE_VERSION.
405 my $seen_automake_version = 0;
407 # Hash table of discovered configure substitutions. Keys are names,
408 # values are `FILE:LINE' strings which are used by error message
410 my %configure_vars = ();
412 # Ignored configure substitutions (i.e., variables not to be output in
414 my %ignored_configure_vars = ();
416 # Files included by $configure_ac.
417 my @configure_deps = ();
419 # Greatest timestamp of configure's dependencies.
420 my $configure_deps_greatest_timestamp = 0;
422 # Hash table of AM_CONDITIONAL variables seen in configure.
423 my %configure_cond = ();
425 # This maps extensions onto language names.
426 my %extension_map = ();
428 # List of the DIST_COMMON files we discovered while reading
430 my $configure_dist_common = '';
432 # This maps languages names onto objects.
434 # Maps each linker variable onto a language object.
435 my %link_languages = ();
437 # maps extensions to needed source flags.
438 my %sourceflags = ();
440 # List of targets we must always output.
441 # FIXME: Complete, and remove falsely required targets.
442 my %required_targets =
455 # FIXME: Not required, temporary hacks.
456 # Well, actually they are sort of required: the -recursive
457 # targets will run them anyway...
463 'install-data-am' => 1,
464 'install-exec-am' => 1,
465 'install-html-am' => 1,
466 'install-dvi-am' => 1,
467 'install-pdf-am' => 1,
468 'install-ps-am' => 1,
469 'install-info-am' => 1,
470 'installcheck-am' => 1,
476 # Queue to push require_conf_file requirements to.
477 my $required_conf_file_queue;
479 # The name of the Makefile currently being processed.
483 ################################################################
485 ## ------------------------------------------ ##
486 ## Variables reset by &initialize_per_input. ##
487 ## ------------------------------------------ ##
489 # Basename and relative dir of the input file.
493 # Same but wrt Makefile.in.
497 # Relative path to the top directory.
500 # Greatest timestamp of the output's dependencies (excluding
501 # configure's dependencies).
502 my $output_deps_greatest_timestamp;
504 # These variables are used when generating each Makefile.in.
505 # They hold the Makefile.in until it is ready to be printed.
512 # This is the conditional stack, updated on if/else/endif, and
513 # used to build Condition objects.
516 # This holds the set of included files.
519 # List of dependencies for the obvious targets.
524 # Keys in this hash table are files to delete. The associated
525 # value tells when this should happen (MOSTLY_CLEAN, DIST_CLEAN, etc.)
528 # Keys in this hash table are object files or other files in
529 # subdirectories which need to be removed. This only holds files
530 # which are created by compilations. The value in the hash indicates
531 # when the file should be removed.
532 my %compile_clean_files;
534 # Keys in this hash table are directories where we expect to build a
535 # libtool object. We use this information to decide what directories
537 my %libtool_clean_directories;
539 # Value of `$(SOURCES)', used by tags.am.
541 # Sources which go in the distribution.
544 # This hash maps object file names onto their corresponding source
545 # file names. This is used to ensure that each object is created
546 # by a single source file.
549 # This hash maps object file names onto an integer value representing
550 # whether this object has been built via ordinary compilation or
551 # libtool compilation (the COMPILE_* constants).
552 my %object_compilation_map;
555 # This keeps track of the directories for which we've already
556 # created dirstamp code. Keys are directories, values are stamp files.
557 # Several keys can share the same stamp files if they are equivalent
558 # (as are `.//foo' and `foo').
564 # This is a list of all targets to run during "make dist".
567 # Keep track of all programs declared in this Makefile, without
568 # $(EXEEXT). @substitutions@ are not listed.
572 # This keeps track of which extensions we've seen (that we care
576 # This is random scratch space for the language finish functions.
577 # Don't randomly overwrite it; examine other uses of keys first.
578 my %language_scratch;
580 # We keep track of which objects need special (per-executable)
581 # handling on a per-language basis.
582 my %lang_specific_files;
584 # This is set when `handle_dist' has finished. Once this happens,
585 # we should no longer push on dist_common.
588 # Used to store a set of linkers needed to generate the sources currently
589 # under consideration.
592 # True if we need `LINK' defined. This is a hack.
595 # Does the generated Makefile have to build some compiled object
596 # (for binary programs, or plain or libtool libraries)?
597 my $must_handle_compiled_objects;
599 # Record each file processed by make_paragraphs.
600 my %transformed_files;
603 ################################################################
605 ## ---------------------------------------------- ##
606 ## Variables not reset by &initialize_per_input. ##
607 ## ---------------------------------------------- ##
609 # Cache each file processed by make_paragraphs.
610 # (This is different from %transformed_files because
611 # %transformed_files is reset for each file while %am_file_cache
612 # it global to the run.)
615 ################################################################
617 # var_SUFFIXES_trigger ($TYPE, $VALUE)
618 # ------------------------------------
619 # This is called by Automake::Variable::define() when SUFFIXES
620 # is defined ($TYPE eq '') or appended ($TYPE eq '+').
621 # The work here needs to be performed as a side-effect of the
622 # macro_define() call because SUFFIXES definitions impact
623 # on $KNOWN_EXTENSIONS_PATTERN which is used used when parsing
625 sub var_SUFFIXES_trigger ($$)
627 my ($type, $value) = @_;
628 accept_extensions (split (' ', $value));
630 Automake::Variable::hook ('SUFFIXES', \&var_SUFFIXES_trigger);
632 ################################################################
634 ## --------------------------------- ##
635 ## Forward subroutine declarations. ##
636 ## --------------------------------- ##
637 sub register_language (%);
638 sub file_contents_internal ($$$%);
639 sub define_files_variable ($\@$$);
642 # &initialize_per_input ()
643 # ------------------------
644 # (Re)-Initialize per-Makefile.am variables.
645 sub initialize_per_input ()
647 reset_local_duplicates ();
649 $am_file_name = undef;
650 $am_relative_dir = undef;
652 $in_file_name = undef;
653 $relative_dir = undef;
656 $output_deps_greatest_timestamp = 0;
662 $output_trailer = '';
664 Automake::Options::reset;
665 Automake::Variable::reset;
666 Automake::Rule::reset;
677 %compile_clean_files = ();
679 # We always include `.'. This isn't strictly correct.
680 %libtool_clean_directories = ('.' => 1);
686 %object_compilation_map = ();
694 %known_programs = ();
695 %known_libraries= ();
697 %extension_seen = ();
699 %language_scratch = ();
701 %lang_specific_files = ();
703 $handle_dist_run = 0;
707 $must_handle_compiled_objects = 0;
709 %transformed_files = ();
713 ################################################################
715 # Initialize our list of languages that are internally supported.
718 register_language ('name' => 'c',
720 'config_vars' => ['CC'],
722 'flags' => ['CFLAGS', 'CPPFLAGS'],
724 'compiler' => 'COMPILE',
725 'compile' => '$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)',
729 'link' => '$(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
730 'compile_flag' => '-c',
731 'libtool_tag' => 'CC',
732 'extensions' => ['.c']);
735 register_language ('name' => 'cxx',
737 'config_vars' => ['CXX'],
738 'linker' => 'CXXLINK',
739 'link' => '$(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
741 'flags' => ['CXXFLAGS', 'CPPFLAGS'],
742 'compile' => '$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)',
744 'compiler' => 'CXXCOMPILE',
745 'compile_flag' => '-c',
746 'output_flag' => '-o',
747 'libtool_tag' => 'CXX',
751 'extensions' => ['.c++', '.cc', '.cpp', '.cxx', '.C']);
754 register_language ('name' => 'objc',
755 'Name' => 'Objective C',
756 'config_vars' => ['OBJC'],
757 'linker' => 'OBJCLINK',
758 'link' => '$(OBJCLD) $(AM_OBJCFLAGS) $(OBJCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
760 'flags' => ['OBJCFLAGS', 'CPPFLAGS'],
761 'compile' => '$(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS)',
763 'compiler' => 'OBJCCOMPILE',
764 'compile_flag' => '-c',
765 'output_flag' => '-o',
769 'extensions' => ['.m']);
771 # Unified Parallel C.
772 register_language ('name' => 'upc',
773 'Name' => 'Unified Parallel C',
774 'config_vars' => ['UPC'],
775 'linker' => 'UPCLINK',
776 'link' => '$(UPCLD) $(AM_UPCFLAGS) $(UPCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
778 'flags' => ['UPCFLAGS', 'CPPFLAGS'],
779 'compile' => '$(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS)',
781 'compiler' => 'UPCCOMPILE',
782 'compile_flag' => '-c',
783 'output_flag' => '-o',
787 'extensions' => ['.upc']);
790 register_language ('name' => 'header',
792 'extensions' => ['.h', '.H', '.hxx', '.h++', '.hh',
795 'output_extensions' => sub { return () },
797 '_finish' => sub { });
800 register_language ('name' => 'vala',
802 'config_vars' => ['VALAC'],
804 'compile' => '$(VALAC) $(AM_VALAFLAGS) $(VALAFLAGS)',
806 'compiler' => 'VALACOMPILE',
807 'extensions' => ['.vala'],
808 'output_extensions' => sub { (my $ext = $_[0]) =~ s/vala$/c/;
810 'rule_file' => 'vala',
811 '_finish' => \&lang_vala_finish,
812 '_target_hook' => \&lang_vala_target_hook,
813 'nodist_specific' => 1);
816 register_language ('name' => 'yacc',
818 'config_vars' => ['YACC'],
819 'flags' => ['YFLAGS'],
820 'compile' => '$(YACC) $(AM_YFLAGS) $(YFLAGS)',
822 'compiler' => 'YACCCOMPILE',
823 'extensions' => ['.y'],
824 'output_extensions' => sub { (my $ext = $_[0]) =~ tr/y/c/;
826 'rule_file' => 'yacc',
827 '_finish' => \&lang_yacc_finish,
828 '_target_hook' => \&lang_yacc_target_hook,
829 'nodist_specific' => 1);
830 register_language ('name' => 'yaccxx',
831 'Name' => 'Yacc (C++)',
832 'config_vars' => ['YACC'],
833 'rule_file' => 'yacc',
834 'flags' => ['YFLAGS'],
836 'compiler' => 'YACCCOMPILE',
837 'compile' => '$(YACC) $(AM_YFLAGS) $(YFLAGS)',
838 'extensions' => ['.y++', '.yy', '.yxx', '.ypp'],
839 'output_extensions' => sub { (my $ext = $_[0]) =~ tr/y/c/;
841 '_finish' => \&lang_yacc_finish,
842 '_target_hook' => \&lang_yacc_target_hook,
843 'nodist_specific' => 1);
846 register_language ('name' => 'lex',
848 'config_vars' => ['LEX'],
849 'rule_file' => 'lex',
850 'flags' => ['LFLAGS'],
851 'compile' => '$(LEX) $(AM_LFLAGS) $(LFLAGS)',
853 'compiler' => 'LEXCOMPILE',
854 'extensions' => ['.l'],
855 'output_extensions' => sub { (my $ext = $_[0]) =~ tr/l/c/;
857 '_finish' => \&lang_lex_finish,
858 '_target_hook' => \&lang_lex_target_hook,
859 'nodist_specific' => 1);
860 register_language ('name' => 'lexxx',
861 'Name' => 'Lex (C++)',
862 'config_vars' => ['LEX'],
863 'rule_file' => 'lex',
864 'flags' => ['LFLAGS'],
865 'compile' => '$(LEX) $(AM_LFLAGS) $(LFLAGS)',
867 'compiler' => 'LEXCOMPILE',
868 'extensions' => ['.l++', '.ll', '.lxx', '.lpp'],
869 'output_extensions' => sub { (my $ext = $_[0]) =~ tr/l/c/;
871 '_finish' => \&lang_lex_finish,
872 '_target_hook' => \&lang_lex_target_hook,
873 'nodist_specific' => 1);
876 register_language ('name' => 'asm',
877 'Name' => 'Assembler',
878 'config_vars' => ['CCAS', 'CCASFLAGS'],
880 'flags' => ['CCASFLAGS'],
881 # Users can set AM_CCASFLAGS to include DEFS, INCLUDES,
882 # or anything else required. They can also set CCAS.
883 # Or simply use Preprocessed Assembler.
884 'compile' => '$(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS)',
886 'compiler' => 'CCASCOMPILE',
887 'compile_flag' => '-c',
888 'output_flag' => '-o',
889 'extensions' => ['.s']);
891 # Preprocessed Assembler.
892 register_language ('name' => 'cppasm',
893 'Name' => 'Preprocessed Assembler',
894 'config_vars' => ['CCAS', 'CCASFLAGS'],
897 'flags' => ['CCASFLAGS', 'CPPFLAGS'],
898 'compile' => '$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)',
900 'compiler' => 'CPPASCOMPILE',
901 'compile_flag' => '-c',
902 'output_flag' => '-o',
903 'extensions' => ['.S', '.sx']);
906 register_language ('name' => 'f77',
907 'Name' => 'Fortran 77',
908 'config_vars' => ['F77'],
909 'linker' => 'F77LINK',
910 'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
911 'flags' => ['FFLAGS'],
912 'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS)',
914 'compiler' => 'F77COMPILE',
915 'compile_flag' => '-c',
916 'output_flag' => '-o',
917 'libtool_tag' => 'F77',
921 'extensions' => ['.f', '.for']);
924 register_language ('name' => 'fc',
926 'config_vars' => ['FC'],
927 'linker' => 'FCLINK',
928 'link' => '$(FCLD) $(AM_FCFLAGS) $(FCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
929 'flags' => ['FCFLAGS'],
930 'compile' => '$(FC) $(AM_FCFLAGS) $(FCFLAGS)',
932 'compiler' => 'FCCOMPILE',
933 'compile_flag' => '-c',
934 'output_flag' => '-o',
935 'libtool_tag' => 'FC',
939 'extensions' => ['.f90', '.f95', '.f03', '.f08']);
941 # Preprocessed Fortran
942 register_language ('name' => 'ppfc',
943 'Name' => 'Preprocessed Fortran',
944 'config_vars' => ['FC'],
945 'linker' => 'FCLINK',
946 'link' => '$(FCLD) $(AM_FCFLAGS) $(FCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
949 'flags' => ['FCFLAGS', 'CPPFLAGS'],
951 'compiler' => 'PPFCCOMPILE',
952 'compile' => '$(FC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)',
953 'compile_flag' => '-c',
954 'output_flag' => '-o',
955 'libtool_tag' => 'FC',
957 'extensions' => ['.F90','.F95', '.F03', '.F08']);
959 # Preprocessed Fortran 77
961 # The current support for preprocessing Fortran 77 just involves
962 # passing `$(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS)
963 # $(CPPFLAGS)' as additional flags to the Fortran 77 compiler, since
964 # this is how GNU Make does it; see the `GNU Make Manual, Edition 0.51
965 # for `make' Version 3.76 Beta' (specifically, from info file
966 # `(make)Catalogue of Rules').
968 # A better approach would be to write an Autoconf test
969 # (i.e. AC_PROG_FPP) for a Fortran 77 preprocessor, because not all
970 # Fortran 77 compilers know how to do preprocessing. The Autoconf
971 # macro AC_PROG_FPP should test the Fortran 77 compiler first for
972 # preprocessing capabilities, and then fall back on cpp (if cpp were
974 register_language ('name' => 'ppf77',
975 'Name' => 'Preprocessed Fortran 77',
976 'config_vars' => ['F77'],
977 'linker' => 'F77LINK',
978 'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
981 'flags' => ['FFLAGS', 'CPPFLAGS'],
983 'compiler' => 'PPF77COMPILE',
984 'compile' => '$(F77) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)',
985 'compile_flag' => '-c',
986 'output_flag' => '-o',
987 'libtool_tag' => 'F77',
989 'extensions' => ['.F']);
992 register_language ('name' => 'ratfor',
994 'config_vars' => ['F77'],
995 'linker' => 'F77LINK',
996 'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
999 'flags' => ['RFLAGS', 'FFLAGS'],
1000 # FIXME also FFLAGS.
1001 'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)',
1003 'compiler' => 'RCOMPILE',
1004 'compile_flag' => '-c',
1005 'output_flag' => '-o',
1006 'libtool_tag' => 'F77',
1008 'extensions' => ['.r']);
1011 register_language ('name' => 'java',
1013 'config_vars' => ['GCJ'],
1014 'linker' => 'GCJLINK',
1015 'link' => '$(GCJLD) $(AM_GCJFLAGS) $(GCJFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
1017 'flags' => ['GCJFLAGS'],
1018 'compile' => '$(GCJ) $(AM_GCJFLAGS) $(GCJFLAGS)',
1020 'compiler' => 'GCJCOMPILE',
1021 'compile_flag' => '-c',
1022 'output_flag' => '-o',
1023 'libtool_tag' => 'GCJ',
1027 'extensions' => ['.java', '.class', '.zip', '.jar']);
1029 ################################################################
1031 # Error reporting functions.
1033 # err_am ($MESSAGE, [%OPTIONS])
1034 # -----------------------------
1035 # Uncategorized errors about the current Makefile.am.
1038 msg_am ('error', @_);
1041 # err_ac ($MESSAGE, [%OPTIONS])
1042 # -----------------------------
1043 # Uncategorized errors about configure.ac.
1046 msg_ac ('error', @_);
1049 # msg_am ($CHANNEL, $MESSAGE, [%OPTIONS])
1050 # ---------------------------------------
1051 # Messages about about the current Makefile.am.
1054 my ($channel, $msg, %opts) = @_;
1055 msg $channel, "${am_file}.am", $msg, %opts;
1058 # msg_ac ($CHANNEL, $MESSAGE, [%OPTIONS])
1059 # ---------------------------------------
1060 # Messages about about configure.ac.
1063 my ($channel, $msg, %opts) = @_;
1064 msg $channel, $configure_ac, $msg, %opts;
1067 ################################################################
1071 # Return a configure-style substitution using the indicated text.
1072 # We do this to avoid having the substitutions directly in automake.in;
1073 # when we do that they are sometimes removed and this causes confusion
1078 return '@' . $text . '@';
1081 ################################################################
1085 # &backname ($REL-DIR)
1086 # --------------------
1087 # If I `cd $REL-DIR', then to come back, I should `cd $BACKPATH'.
1088 # For instance `src/foo' => `../..'.
1089 # Works with non strictly increasing paths, i.e., `src/../lib' => `..'.
1094 foreach (split (/\//, $file))
1096 next if $_ eq '.' || $_ eq '';
1100 or prog_error ("trying to reverse path `$file' pointing outside tree");
1107 return join ('/', @res) || '.';
1110 ################################################################
1112 # `silent-rules' mode handling functions.
1114 # verbose_var (NAME)
1115 # ------------------
1116 # The public variable stem used to implement `silent-rules'.
1120 return 'AM_V_' . $name;
1123 # verbose_private_var (NAME)
1124 # --------------------------
1125 # The naming policy for the private variables for `silent-rules'.
1126 sub verbose_private_var ($)
1129 return 'am__v_' . $name;
1132 # define_verbose_var (NAME, VAL)
1133 # ------------------------------
1134 # For `silent-rules' mode, setup VAR and dispatcher, to expand to VAL if silent.
1135 sub define_verbose_var ($$)
1137 my ($name, $val) = @_;
1138 my $var = verbose_var ($name);
1139 my $pvar = verbose_private_var ($name);
1140 my $silent_var = $pvar . '_0';
1141 if (option 'silent-rules')
1143 # For typical `make's, `configure' replaces AM_V (inside @@) with $(V)
1144 # and AM_DEFAULT_V (inside @@) with $(AM_DEFAULT_VERBOSITY).
1145 # For strict POSIX 2008 `make's, it replaces them with 0 or 1 instead.
1146 # See AM_SILENT_RULES in m4/silent.m4.
1147 define_variable ($var, '$(' . $pvar . '_@'.'AM_V'.'@)', INTERNAL);
1148 define_variable ($pvar . '_', '$(' . $pvar . '_@'.'AM_DEFAULT_V'.'@)', INTERNAL);
1149 Automake::Variable::define ($silent_var, VAR_AUTOMAKE, '', TRUE, $val,
1150 '', INTERNAL, VAR_ASIS)
1151 if (! vardef ($silent_var, TRUE));
1155 # Above should not be needed in the general automake code.
1157 # verbose_flag (NAME)
1158 # -------------------
1159 # Contents of %VERBOSE%: variable to expand before rule command.
1160 sub verbose_flag ($)
1163 return '$(' . verbose_var ($name) . ')'
1164 if (option 'silent-rules');
1168 sub verbose_nodep_flag ($)
1171 return '$(' . verbose_var ($name) . subst ('am__nodep') . ')'
1172 if (option 'silent-rules');
1178 # Contents of %SILENT%: variable to expand to `@' when silent.
1181 return verbose_flag ('at');
1184 # define_verbose_tagvar (NAME)
1185 # ----------------------------
1186 # Engage the needed `silent-rules' machinery for tag NAME.
1187 sub define_verbose_tagvar ($)
1190 if (option 'silent-rules')
1192 define_verbose_var ($name, '@echo " '. $name . ' ' x (8 - length ($name)) . '" $@;');
1193 define_verbose_var ('at', '@');
1197 # define_verbose_texinfo
1198 # ----------------------
1199 # Engage the needed `silent-rules' machinery for assorted texinfo commands.
1200 sub define_verbose_texinfo ()
1202 my @tagvars = ('DVIPS', 'MAKEINFO', 'INFOHTML', 'TEXI2DVI', 'TEXI2PDF');
1203 foreach my $tag (@tagvars)
1205 define_verbose_tagvar($tag);
1207 define_verbose_var('texinfo', '-q');
1208 define_verbose_var('texidevnull', '> /dev/null');
1211 # define_verbose_libtool
1212 # ----------------------
1213 # Engage the needed `silent-rules' machinery for `libtool --silent'.
1214 sub define_verbose_libtool ()
1216 define_verbose_var ('lt', '--silent');
1217 return verbose_flag ('lt');
1221 ################################################################
1224 # Handle AUTOMAKE_OPTIONS variable. Return 1 on error, 0 otherwise.
1227 my $var = var ('AUTOMAKE_OPTIONS');
1230 if ($var->has_conditional_contents)
1232 msg_var ('unsupported', $var,
1233 "`AUTOMAKE_OPTIONS' cannot have conditional contents");
1235 my @options = map { { option => $_->[1], where => $_->[0] } }
1236 $var->value_as_list_recursive (cond_filter => TRUE,
1238 return 1 if process_option_list (@options);
1241 # Override portability-recursive warning.
1242 switch_warning ('no-portability-recursive')
1243 if option 'silent-rules';
1245 if ($strictness == GNITS)
1247 set_option ('readme-alpha', INTERNAL);
1248 set_option ('std-options', INTERNAL);
1249 set_option ('check-news', INTERNAL);
1255 # shadow_unconditionally ($varname, $where)
1256 # -----------------------------------------
1257 # Return a $(variable) that contains all possible values
1258 # $varname can take.
1259 # If the VAR wasn't defined conditionally, return $(VAR).
1260 # Otherwise we create an am__VAR_DIST variable which contains
1261 # all possible values, and return $(am__VAR_DIST).
1262 sub shadow_unconditionally ($$)
1264 my ($varname, $where) = @_;
1265 my $var = var $varname;
1266 if ($var->has_conditional_contents)
1268 $varname = "am__${varname}_DIST";
1269 my @files = uniq ($var->value_as_list_recursive);
1270 define_pretty_variable ($varname, TRUE, $where, @files);
1272 return "\$($varname)"
1275 # check_user_variables (@LIST)
1276 # ----------------------------
1277 # Make sure each variable VAR in @LIST does not exist, suggest using AM_VAR
1279 sub check_user_variables (@)
1281 my @dont_override = @_;
1282 foreach my $flag (@dont_override)
1284 my $var = var $flag;
1287 for my $cond ($var->conditions->conds)
1289 if ($var->rdef ($cond)->owner == VAR_MAKEFILE)
1291 msg_cond_var ('gnu', $cond, $flag,
1292 "`$flag' is a user variable, "
1293 . "you should not override it;\n"
1294 . "use `AM_$flag' instead");
1301 # Call finish function for each language that was used.
1302 sub handle_languages
1304 if (! option 'no-dependencies')
1306 # Include auto-dep code. Don't include it if DEP_FILES would
1308 if (&saw_sources_p (0) && keys %dep_files)
1310 # Set location of depcomp.
1311 &define_variable ('depcomp',
1312 "\$(SHELL) $am_config_aux_dir/depcomp",
1314 &define_variable ('am__depfiles_maybe', 'depfiles', INTERNAL);
1316 require_conf_file ("$am_file.am", FOREIGN, 'depcomp');
1318 my @deplist = sort keys %dep_files;
1319 # Generate each `include' individually. Irix 6 make will
1320 # not properly include several files resulting from a
1321 # variable expansion; generating many separate includes
1323 $output_rules .= "\n";
1324 foreach my $iter (@deplist)
1326 $output_rules .= (subst ('AMDEP_TRUE')
1327 . subst ('am__include')
1329 . subst ('am__quote')
1331 . subst ('am__quote')
1335 # Compute the set of directories to remove in distclean-depend.
1336 my @depdirs = uniq (map { dirname ($_) } @deplist);
1337 $output_rules .= &file_contents ('depend',
1338 new Automake::Location,
1339 DEPDIRS => "@depdirs");
1344 &define_variable ('depcomp', '', INTERNAL);
1345 &define_variable ('am__depfiles_maybe', '', INTERNAL);
1350 # Is the C linker needed?
1352 foreach my $ext (sort keys %extension_seen)
1354 next unless $extension_map{$ext};
1356 my $lang = $languages{$extension_map{$ext}};
1358 my $rule_file = $lang->rule_file || 'depend2';
1360 # Get information on $LANG.
1361 my $pfx = $lang->autodep;
1362 my $fpfx = ($pfx eq '') ? 'CC' : $pfx;
1364 my ($AMDEP, $FASTDEP) =
1365 (option 'no-dependencies' || $lang->autodep eq 'no')
1366 ? ('FALSE', 'FALSE') : ('AMDEP', "am__fastdep$fpfx");
1368 my $verbose = verbose_flag ($lang->ccer || 'GEN');
1369 my $verbose_nodep = ($AMDEP eq 'FALSE')
1370 ? $verbose : verbose_nodep_flag ($lang->ccer || 'GEN');
1371 my $silent = silent_flag ();
1373 my %transform = ('EXT' => $ext,
1377 'FASTDEP' => $FASTDEP,
1378 '-c' => $lang->compile_flag || '',
1379 # These are not used, but they need to be defined
1380 # so &transform do not complain.
1382 'DERIVED-EXT' => 'BUG',
1384 VERBOSE => $verbose,
1385 'VERBOSE-NODEP' => $verbose_nodep,
1389 # Generate the appropriate rules for this extension.
1390 if (((! option 'no-dependencies') && $lang->autodep ne 'no')
1391 || defined $lang->compile)
1393 # Some C compilers don't support -c -o. Use it only if really
1395 my $output_flag = $lang->output_flag || '';
1398 && $lang->name eq 'c'
1399 && option 'subdir-objects');
1401 # Compute a possible derived extension.
1402 # This is not used by depend2.am.
1403 my $der_ext = (&{$lang->output_extensions} ($ext))[0];
1405 # When we output an inference rule like `.c.o:' we
1406 # have two cases to consider: either subdir-objects
1407 # is used, or it is not.
1409 # In the latter case the rule is used to build objects
1410 # in the current directory, and dependencies always
1411 # go into `./$(DEPDIR)/'. We can hard-code this value.
1413 # In the former case the rule can be used to build
1414 # objects in sub-directories too. Dependencies should
1415 # go into the appropriate sub-directories, e.g.,
1416 # `sub/$(DEPDIR)/'. The value of this directory
1417 # needs to be computed on-the-fly.
1419 # DEPBASE holds the name of this directory, plus the
1420 # basename part of the object file (extensions Po, TPo,
1421 # Plo, TPlo will be added later as appropriate). It is
1422 # either hardcoded, or a shell variable (`$depbase') that
1423 # will be computed by the rule.
1425 option ('subdir-objects') ? '$$depbase' : '$(DEPDIR)/$*';
1427 file_contents ($rule_file,
1428 new Automake::Location,
1432 'DERIVED-EXT' => $der_ext,
1434 DEPBASE => $depbase,
1437 SOURCEFLAG => $sourceflags{$ext} || '',
1442 COMPILE => '$(' . $lang->compiler . ')',
1443 LTCOMPILE => '$(LT' . $lang->compiler . ')',
1445 SUBDIROBJ => !! option 'subdir-objects');
1448 # Now include code for each specially handled object with this
1450 my %seen_files = ();
1451 foreach my $file (@{$lang_specific_files{$lang->name}})
1453 my ($derived, $source, $obj, $myext, $srcext, %file_transform) = @$file;
1455 # We might see a given object twice, for instance if it is
1456 # used under different conditions.
1457 next if defined $seen_files{$obj};
1458 $seen_files{$obj} = 1;
1460 prog_error ("found " . $lang->name .
1461 " in handle_languages, but compiler not defined")
1462 unless defined $lang->compile;
1464 my $obj_compile = $lang->compile;
1466 # Rewrite each occurrence of `AM_$flag' in the compile
1467 # rule into `${derived}_$flag' if it exists.
1468 for my $flag (@{$lang->flags})
1470 my $val = "${derived}_$flag";
1471 $obj_compile =~ s/\(AM_$flag\)/\($val\)/
1475 my $libtool_tag = '';
1476 if ($lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag})
1478 $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
1481 my $ptltflags = "${derived}_LIBTOOLFLAGS";
1482 $ptltflags = 'AM_LIBTOOLFLAGS' unless set_seen $ptltflags;
1484 my $ltverbose = define_verbose_libtool ();
1486 "\$(LIBTOOL) $ltverbose $libtool_tag\$($ptltflags) \$(LIBTOOLFLAGS) "
1487 . "--mode=compile $obj_compile";
1489 # We _need_ `-o' for per object rules.
1490 my $output_flag = $lang->output_flag || '-o';
1492 my $depbase = dirname ($obj);
1496 unless $depbase eq '';
1497 $depbase .= '$(DEPDIR)/' . basename ($obj);
1500 file_contents ($rule_file,
1501 new Automake::Location,
1505 DEPBASE => $depbase,
1508 SOURCEFLAG => $sourceflags{$srcext} || '',
1509 # Use $myext and not `.o' here, in case
1510 # we are actually building a new source
1511 # file -- e.g. via yacc.
1512 OBJ => "$obj$myext",
1513 OBJOBJ => "$obj.obj",
1516 VERBOSE => $verbose,
1517 'VERBOSE-NODEP' => $verbose_nodep,
1519 COMPILE => $obj_compile,
1520 LTCOMPILE => $obj_ltcompile,
1525 # The rest of the loop is done once per language.
1526 next if defined $done{$lang};
1529 # Load the language dependent Makefile chunks.
1530 my %lang = map { uc ($_) => 0 } keys %languages;
1531 $lang{uc ($lang->name)} = 1;
1532 $output_rules .= file_contents ('lang-compile',
1533 new Automake::Location,
1536 # If the source to a program consists entirely of code from a
1537 # `pure' language, for instance C++ or Fortran 77, then we
1538 # don't need the C compiler code. However if we run into
1539 # something unusual then we do generate the C code. There are
1540 # probably corner cases here that do not work properly.
1541 # People linking Java code to Fortran code deserve pain.
1542 $needs_c ||= ! $lang->pure;
1544 define_compiler_variable ($lang)
1545 if ($lang->compile);
1547 define_linker_variable ($lang)
1550 require_variables ("$am_file.am", $lang->Name . " source seen",
1551 TRUE, @{$lang->config_vars});
1553 # Call the finisher.
1556 # Flags listed in `->flags' are user variables (per GNU Standards),
1557 # they should not be overridden in the Makefile...
1558 my @dont_override = @{$lang->flags};
1559 # ... and so is LDFLAGS.
1560 push @dont_override, 'LDFLAGS' if $lang->link;
1562 check_user_variables @dont_override;
1565 # If the project is entirely C++ or entirely Fortran 77 (i.e., 1
1566 # suffix rule was learned), don't bother with the C stuff. But if
1567 # anything else creeps in, then use it.
1569 if $need_link || suffix_rules_count > 1;
1573 &define_compiler_variable ($languages{'c'})
1574 unless defined $done{$languages{'c'}};
1575 define_linker_variable ($languages{'c'});
1578 # Always provide the user with `AM_V_GEN' for `silent-rules' mode.
1579 define_verbose_tagvar ('GEN');
1583 # append_exeext { PREDICATE } $MACRO
1584 # ----------------------------------
1585 # Append $(EXEEXT) to each filename in $F appearing in the Makefile
1586 # variable $MACRO if &PREDICATE($F) is true. @substitutions@ are
1589 # This is typically used on all filenames of *_PROGRAMS, and filenames
1590 # of TESTS that are programs.
1591 sub append_exeext (&$)
1593 my ($pred, $macro) = @_;
1595 transform_variable_recursively
1596 ($macro, $macro, 'am__EXEEXT', 0, INTERNAL,
1598 my ($subvar, $val, $cond, $full_cond) = @_;
1599 # Append $(EXEEXT) unless the user did it already, or it's a
1602 if $val !~ /(?:\$\(EXEEXT\)$|^[@]\w+[@]$)/ && &$pred ($val);
1608 # Check to make sure a source defined in LIBOBJS is not explicitly
1609 # mentioned. This is a separate function (as opposed to being inlined
1610 # in handle_source_transform) because it isn't always appropriate to
1612 sub check_libobjs_sources
1614 my ($one_file, $unxformed) = @_;
1616 foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
1617 'dist_EXTRA_', 'nodist_EXTRA_')
1620 my $varname = $prefix . $one_file . '_SOURCES';
1621 my $var = var ($varname);
1624 @files = $var->value_as_list_recursive;
1626 elsif ($prefix eq '')
1628 @files = ($unxformed . '.c');
1635 foreach my $file (@files)
1637 err_var ($prefix . $one_file . '_SOURCES',
1638 "automatically discovered file `$file' should not" .
1639 " be explicitly mentioned")
1640 if defined $libsources{$file};
1647 # handle_single_transform ($VAR, $TOPPARENT, $DERIVED, $OBJ, $FILE, %TRANSFORM)
1648 # -----------------------------------------------------------------------------
1649 # Does much of the actual work for handle_source_transform.
1651 # $VAR is the name of the variable that the source filenames come from
1652 # $TOPPARENT is the name of the _SOURCES variable which is being processed
1653 # $DERIVED is the name of resulting executable or library
1654 # $OBJ is the object extension (e.g., `.lo')
1655 # $FILE the source file to transform
1656 # %TRANSFORM contains extras arguments to pass to file_contents
1657 # when producing explicit rules
1658 # Result is a list of the names of objects
1659 # %linkers_used will be updated with any linkers needed
1660 sub handle_single_transform ($$$$$%)
1662 my ($var, $topparent, $derived, $obj, $_file, %transform) = @_;
1663 my @files = ($_file);
1666 # Turn sources into objects. We use a while loop like this
1667 # because we might add to @files in the loop.
1668 while (scalar @files > 0)
1672 # Configure substitutions in _SOURCES variables are errors.
1675 my $parent_msg = '';
1676 $parent_msg = "\nand is referred to from `$topparent'"
1677 if $topparent ne $var->name;
1679 "`" . $var->name . "' includes configure substitution `$_'"
1680 . $parent_msg . ";\nconfigure " .
1681 "substitutions are not allowed in _SOURCES variables");
1685 # If the source file is in a subdirectory then the `.o' is put
1686 # into the current directory, unless the subdir-objects option
1689 # Split file name into base and extension.
1690 next if ! /^(?:(.*)\/)?([^\/]*)($KNOWN_EXTENSIONS_PATTERN)$/;
1692 my $directory = $1 || '';
1696 # We must generate a rule for the object if it requires its own flags.
1698 my ($linker, $object);
1700 # This records whether we've seen a derived source file (e.g.
1702 my $derived_source = 0;
1704 # This holds the `aggregate context' of the file we are
1705 # currently examining. If the file is compiled with
1706 # per-object flags, then it will be the name of the object.
1707 # Otherwise it will be `AM'. This is used by the target hook
1708 # language function.
1709 my $aggregate = 'AM';
1711 $extension = &derive_suffix ($extension, $obj);
1713 if ($extension_map{$extension} &&
1714 ($lang = $languages{$extension_map{$extension}}))
1716 # Found the language, so see what it says.
1717 &saw_extension ($extension);
1719 # Do we have per-executable flags for this executable?
1720 my $have_per_exec_flags = 0;
1721 my @peflags = @{$lang->flags};
1722 push @peflags, 'LIBTOOLFLAGS' if $obj eq '.lo';
1723 foreach my $flag (@peflags)
1725 if (set_seen ("${derived}_$flag"))
1727 $have_per_exec_flags = 1;
1732 # Note: computed subr call. The language rewrite function
1733 # should return one of the LANG_* constants. It could
1734 # also return a list whose first value is such a constant
1735 # and whose second value is a new source extension which
1736 # should be applied. This means this particular language
1737 # generates another source file which we must then process
1739 my $subr = \&{'lang_' . $lang->name . '_rewrite'};
1740 my ($r, $source_extension)
1741 = &$subr ($directory, $base, $extension,
1742 $obj, $have_per_exec_flags, $var);
1743 # Skip this entry if we were asked not to process it.
1744 next if $r == LANG_IGNORE;
1746 # Now extract linker and other info.
1747 $linker = $lang->linker;
1750 if (defined $source_extension)
1752 $this_obj_ext = $source_extension;
1753 $derived_source = 1;
1757 $this_obj_ext = $obj;
1759 $object = $base . $this_obj_ext;
1761 if ($have_per_exec_flags)
1763 # We have a per-executable flag in effect for this
1764 # object. In this case we rewrite the object's
1765 # name to ensure it is unique.
1767 # We choose the name `DERIVED_OBJECT' to ensure
1768 # (1) uniqueness, and (2) continuity between
1769 # invocations. However, this will result in a
1770 # name that is too long for losing systems, in
1771 # some situations. So we provide _SHORTNAME to
1774 my $dname = $derived;
1775 my $var = var ($derived . '_SHORTNAME');
1778 # FIXME: should use the same Condition as
1779 # the _SOURCES variable. But this is really
1780 # silly overkill -- nobody should have
1781 # conditional shortnames.
1782 $dname = $var->variable_value;
1784 $object = $dname . '-' . $object;
1786 prog_error ($lang->name . " flags defined without compiler")
1787 if ! defined $lang->compile;
1792 # If rewrite said it was ok, put the object into a
1794 if ($r == LANG_SUBDIR && $directory ne '')
1796 $object = $directory . '/' . $object;
1799 # If the object file has been renamed (because per-target
1800 # flags are used) we cannot compile the file with an
1801 # inference rule: we need an explicit rule.
1803 # If the source is in a subdirectory and the object is in
1804 # the current directory, we also need an explicit rule.
1806 # If both source and object files are in a subdirectory
1807 # (this happens when the subdir-objects option is used),
1808 # then the inference will work.
1810 # The latter case deserves a historical note. When the
1811 # subdir-objects option was added on 1999-04-11 it was
1812 # thought that inferences rules would work for
1813 # subdirectory objects too. Later, on 1999-11-22,
1814 # automake was changed to output explicit rules even for
1815 # subdir-objects. Nobody remembers why, but this occurred
1816 # soon after the merge of the user-dep-gen-branch so it
1817 # might be related. In late 2003 people complained about
1818 # the size of the generated Makefile.ins (libgcj, with
1819 # 2200+ subdir objects was reported to have a 9MB
1820 # Makefile), so we now rely on inference rules again.
1821 # Maybe we'll run across the same issue as in the past,
1822 # but at least this time we can document it. However since
1823 # dependency tracking has evolved it is possible that
1824 # our old problem no longer exists.
1825 # Using inference rules for subdir-objects has been tested
1826 # with GNU make, Solaris make, Ultrix make, BSD make,
1827 # HP-UX make, and OSF1 make successfully.
1829 || ($directory ne '' && ! option 'subdir-objects')
1830 # We must also use specific rules for a nodist_ source
1831 # if its language requests it.
1832 || ($lang->nodist_specific && ! $transform{'DIST_SOURCE'}))
1834 my $obj_sans_ext = substr ($object, 0,
1835 - length ($this_obj_ext));
1837 if ($directory ne '')
1839 $full_ansi = $directory . '/' . $base . $extension;
1843 $full_ansi = $base . $extension;
1846 my @specifics = ($full_ansi, $obj_sans_ext,
1847 # Only use $this_obj_ext in the derived
1848 # source case because in the other case we
1849 # *don't* want $(OBJEXT) to appear here.
1850 ($derived_source ? $this_obj_ext : '.o'),
1853 # If we renamed the object then we want to use the
1854 # per-executable flag name. But if this is simply a
1855 # subdir build then we still want to use the AM_ flag
1859 unshift @specifics, $derived;
1860 $aggregate = $derived;
1864 unshift @specifics, 'AM';
1867 # Each item on this list is a reference to a list consisting
1868 # of four values followed by additional transform flags for
1869 # file_contents. The four values are the derived flag prefix
1870 # (e.g. for `foo_CFLAGS', it is `foo'), the name of the
1871 # source file, the base name of the output file, and
1872 # the extension for the object file.
1873 push (@{$lang_specific_files{$lang->name}},
1874 [@specifics, %transform]);
1877 elsif ($extension eq $obj)
1879 # This is probably the result of a direct suffix rule.
1880 # In this case we just accept the rewrite.
1881 $object = "$base$extension";
1882 $object = "$directory/$object" if $directory ne '';
1887 # No error message here. Used to have one, but it was
1889 # FIXME: we could potentially do more processing here,
1890 # perhaps treating the new extension as though it were a
1891 # new source extension (as above). This would require
1892 # more restructuring than is appropriate right now.
1896 err_am "object `$object' created by `$full' and `$object_map{$object}'"
1897 if (defined $object_map{$object}
1898 && $object_map{$object} ne $full);
1900 my $comp_val = (($object =~ /\.lo$/)
1901 ? COMPILE_LIBTOOL : COMPILE_ORDINARY);
1902 (my $comp_obj = $object) =~ s/\.lo$/.\$(OBJEXT)/;
1903 if (defined $object_compilation_map{$comp_obj}
1904 && $object_compilation_map{$comp_obj} != 0
1905 # Only see the error once.
1906 && ($object_compilation_map{$comp_obj}
1907 != (COMPILE_LIBTOOL | COMPILE_ORDINARY))
1908 && $object_compilation_map{$comp_obj} != $comp_val)
1910 err_am "object `$comp_obj' created both with libtool and without";
1912 $object_compilation_map{$comp_obj} |= $comp_val;
1916 # Let the language do some special magic if required.
1917 $lang->target_hook ($aggregate, $object, $full, %transform);
1920 if ($derived_source)
1922 prog_error ($lang->name . " has automatic dependency tracking")
1923 if $lang->autodep ne 'no';
1924 # Make sure this new source file is handled next. That will
1925 # make it appear to be at the right place in the list.
1926 unshift (@files, $object);
1927 # Distribute derived sources unless the source they are
1928 # derived from is not.
1929 &push_dist_common ($object)
1930 unless ($topparent =~ /^(?:nobase_)?nodist_/);
1934 $linkers_used{$linker} = 1;
1936 push (@result, $object);
1938 if (! defined $object_map{$object})
1941 $object_map{$object} = $full;
1943 # If resulting object is in subdir, we need to make
1944 # sure the subdir exists at build time.
1945 if ($object =~ /\//)
1947 # FIXME: check that $DIRECTORY is somewhere in the
1950 # For Java, the way we're handling it right now, a
1951 # `..' component doesn't make sense.
1952 if ($lang && $lang->name eq 'java' && $object =~ /(\/|^)\.\.\//)
1954 err_am "`$full' should not contain a `..' component";
1957 # Make sure object is removed by `make mostlyclean'.
1958 $compile_clean_files{$object} = MOSTLY_CLEAN;
1959 # If we have a libtool object then we also must remove
1961 if ($object =~ /\.lo$/)
1963 (my $xobj = $object) =~ s,lo$,\$(OBJEXT),;
1964 $compile_clean_files{$xobj} = MOSTLY_CLEAN;
1966 # Remove any libtool object in this directory.
1967 $libtool_clean_directories{$directory} = 1;
1970 push (@dep_list, require_build_directory ($directory));
1972 # If we're generating dependencies, we also want
1973 # to make sure that the appropriate subdir of the
1974 # .deps directory is created.
1976 require_build_directory ($directory . '/$(DEPDIR)'))
1977 unless option 'no-dependencies';
1980 &pretty_print_rule ($object . ':', "\t", @dep_list)
1981 if scalar @dep_list > 0;
1984 # Transform .o or $o file into .P file (for automatic
1986 # Properly flatten multiple adjacent slashes, as Solaris 10 make
1987 # might fail over them in an include statement.
1988 # Leading double slashes may be special, as per Posix, so deal
1989 # with them carefully.
1990 if ($lang && $lang->autodep ne 'no')
1992 my $depfile = $object;
1993 $depfile =~ s/\.([^.]*)$/.P$1/;
1994 $depfile =~ s/\$\(OBJEXT\)$/o/;
1995 my $maybe_extra_leading_slash = '';
1996 $maybe_extra_leading_slash = '/' if $depfile =~ m,^//[^/],;
1997 $depfile =~ s,/+,/,g;
1998 my $basename = basename ($depfile);
1999 # This might make $dirname empty, but we account for that below.
2000 (my $dirname = dirname ($depfile)) =~ s/\/*$//;
2001 $dirname = $maybe_extra_leading_slash . $dirname;
2002 $dep_files{$dirname . '/$(DEPDIR)/' . $basename} = 1;
2011 # define_objects_from_sources ($VAR, $OBJVAR, $NODEFINE, $ONE_FILE,
2012 # $OBJ, $PARENT, $TOPPARENT, $WHERE, %TRANSFORM)
2013 # ---------------------------------------------------------------------------
2014 # Define an _OBJECTS variable for a _SOURCES variable (or subvariable)
2017 # $VAR is the name of the _SOURCES variable
2018 # $OBJVAR is the name of the _OBJECTS variable if known (otherwise
2019 # it will be generated and returned).
2020 # $NODEFINE is a boolean: if true, $OBJVAR will not be defined (but
2021 # work done to determine the linker will be).
2022 # $ONE_FILE is the canonical (transformed) name of object to build
2023 # $OBJ is the object extension (i.e. either `.o' or `.lo').
2024 # $TOPPARENT is the _SOURCES variable being processed.
2025 # $WHERE context into which this definition is done
2026 # %TRANSFORM extra arguments to pass to file_contents when producing
2029 # Result is a pair ($LINKER, $OBJVAR):
2030 # $LINKER is a boolean, true if a linker is needed to deal with the objects
2031 sub define_objects_from_sources ($$$$$$$%)
2033 my ($var, $objvar, $nodefine, $one_file,
2034 $obj, $topparent, $where, %transform) = @_;
2036 my $needlinker = "";
2038 transform_variable_recursively
2039 ($var, $objvar, 'am__objects', $nodefine, $where,
2040 # The transform code to run on each filename.
2042 my ($subvar, $val, $cond, $full_cond) = @_;
2043 my @trans = handle_single_transform ($subvar, $topparent,
2044 $one_file, $obj, $val,
2046 $needlinker = "true" if @trans;
2054 # handle_source_transform ($CANON_TARGET, $TARGET, $OBJEXT, $WHERE, %TRANSFORM)
2055 # -----------------------------------------------------------------------------
2056 # Handle SOURCE->OBJECT transform for one program or library.
2058 # canonical (transformed) name of target to build
2059 # actual target of object to build
2060 # object extension (i.e., either `.o' or `$o')
2061 # location of the source variable
2062 # extra arguments to pass to file_contents when producing rules
2063 # Return the name of the linker variable that must be used.
2064 # Empty return means just use `LINK'.
2065 sub handle_source_transform ($$$$%)
2067 # one_file is canonical name. unxformed is given name. obj is
2069 my ($one_file, $unxformed, $obj, $where, %transform) = @_;
2073 # No point in continuing if _OBJECTS is defined.
2074 return if reject_var ($one_file . '_OBJECTS',
2075 $one_file . '_OBJECTS should not be defined');
2080 foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
2081 'dist_EXTRA_', 'nodist_EXTRA_')
2083 my $varname = $prefix . $one_file . "_SOURCES";
2084 my $var = var $varname;
2087 # We are going to define _OBJECTS variables using the prefix.
2088 # Then we glom them all together. So we can't use the null
2089 # prefix here as we need it later.
2090 my $xpfx = ($prefix eq '') ? 'am_' : $prefix;
2092 # Keep track of which prefixes we saw.
2093 $used_pfx{$xpfx} = 1
2094 unless $prefix =~ /EXTRA_/;
2096 push @sources, "\$($varname)";
2097 push @dist_sources, shadow_unconditionally ($varname, $where)
2098 unless (option ('no-dist') || $prefix =~ /^nodist_/);
2101 define_objects_from_sources ($varname,
2102 $xpfx . $one_file . '_OBJECTS',
2103 $prefix =~ /EXTRA_/,
2104 $one_file, $obj, $varname, $where,
2105 DIST_SOURCE => ($prefix !~ /^nodist_/),
2110 $linker ||= &resolve_linker (%linkers_used);
2113 my @keys = sort keys %used_pfx;
2114 if (scalar @keys == 0)
2116 # The default source for libfoo.la is libfoo.c, but for
2117 # backward compatibility we first look at libfoo_la.c,
2118 # if no default source suffix is given.
2119 my $old_default_source = "$one_file.c";
2120 my $ext_var = var ('AM_DEFAULT_SOURCE_EXT');
2121 my $default_source_ext = $ext_var ? variable_value ($ext_var) : '.c';
2122 msg_var ('unsupported', $ext_var, $ext_var->name . " can assume at most one value")
2123 if $default_source_ext =~ /[\t ]/;
2124 (my $default_source = $unxformed) =~ s,(\.[^./\\]*)?$,$default_source_ext,;
2125 if ($old_default_source ne $default_source
2127 && (rule $old_default_source
2128 || rule '$(srcdir)/' . $old_default_source
2129 || rule '${srcdir}/' . $old_default_source
2130 || -f $old_default_source))
2132 my $loc = $where->clone;
2134 msg ('obsolete', $loc,
2135 "the default source for `$unxformed' has been changed "
2136 . "to `$default_source'.\n(Using `$old_default_source' for "
2137 . "backward compatibility.)");
2138 $default_source = $old_default_source;
2140 # If a rule exists to build this source with a $(srcdir)
2141 # prefix, use that prefix in our variables too. This is for
2142 # the sake of BSD Make.
2143 if (rule '$(srcdir)/' . $default_source
2144 || rule '${srcdir}/' . $default_source)
2146 $default_source = '$(srcdir)/' . $default_source;
2149 &define_variable ($one_file . "_SOURCES", $default_source, $where);
2150 push (@sources, $default_source);
2151 push (@dist_sources, $default_source);
2155 handle_single_transform ($one_file . '_SOURCES',
2156 $one_file . '_SOURCES',
2158 $default_source, %transform);
2159 $linker ||= &resolve_linker (%linkers_used);
2160 define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @result);
2164 @keys = map { '$(' . $_ . $one_file . '_OBJECTS)' } @keys;
2165 define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @keys);
2168 # If we want to use `LINK' we must make sure it is defined.
2178 # handle_lib_objects ($XNAME, $VAR)
2179 # ---------------------------------
2180 # Special-case ALLOCA and LIBOBJS substitutions in _LDADD or _LIBADD variables.
2181 # Also, generate _DEPENDENCIES variable if appropriate.
2183 # transformed name of object being built, or empty string if no object
2184 # name of _LDADD/_LIBADD-type variable to examine
2185 # Returns 1 if LIBOBJS seen, 0 otherwise.
2186 sub handle_lib_objects
2188 my ($xname, $varname) = @_;
2190 my $var = var ($varname);
2191 prog_error "`$varname' undefined"
2193 prog_error "unexpected variable name `$varname'"
2194 unless $varname =~ /^(.*)(?:LIB|LD)ADD$/;
2195 my $prefix = $1 || 'AM_';
2197 my $seen_libobjs = 0;
2200 transform_variable_recursively
2201 ($varname, $xname . '_DEPENDENCIES', 'am__DEPENDENCIES',
2203 # Transformation function, run on each filename.
2205 my ($subvar, $val, $cond, $full_cond) = @_;
2209 # Skip -lfoo and -Ldir silently; these are explicitly allowed.
2210 if ($val !~ /^-[lL]/ &&
2211 # Skip -dlopen and -dlpreopen; these are explicitly allowed
2212 # for Libtool libraries or programs. (Actually we are a bit
2213 # lax here since this code also applies to non-libtool
2214 # libraries or programs, for which -dlopen and -dlopreopen
2215 # are pure nonsense. Diagnosing this doesn't seem very
2216 # important: the developer will quickly get complaints from
2218 $val !~ /^-dl(?:pre)?open$/ &&
2219 # Only get this error once.
2223 # FIXME: should display a stack of nested variables
2224 # as context when $var != $subvar.
2225 err_var ($var, "linker flags such as `$val' belong in "
2226 . "`${prefix}LDFLAGS'");
2230 elsif ($val !~ /^\@.*\@$/)
2232 # Assume we have a file of some sort, and output it into the
2233 # dependency variable. Autoconf substitutions are not output;
2234 # rarely is a new dependency substituted into e.g. foo_LDADD
2235 # -- but bad things (e.g. -lX11) are routinely substituted.
2236 # Note that LIBOBJS and ALLOCA are exceptions to this rule,
2237 # and handled specially below.
2240 elsif ($val =~ /^\@(LT)?LIBOBJS\@$/)
2242 handle_LIBOBJS ($subvar, $cond, $1);
2246 elsif ($val =~ /^\@(LT)?ALLOCA\@$/)
2248 handle_ALLOCA ($subvar, $cond, $1);
2257 return $seen_libobjs;
2260 # handle_LIBOBJS_or_ALLOCA ($VAR)
2261 # -------------------------------
2262 # Definitions common to LIBOBJS and ALLOCA.
2263 # VAR should be one of LIBOBJS, LTLIBOBJS, ALLOCA, or LTALLOCA.
2264 sub handle_LIBOBJS_or_ALLOCA ($)
2270 # If LIBOBJS files must be built in another directory we have
2271 # to define LIBOBJDIR and ensure the files get cleaned.
2272 # Otherwise LIBOBJDIR can be left undefined, and the cleaning
2273 # is achieved by `rm -f *.$(OBJEXT)' in compile.am.
2274 if ($config_libobj_dir
2275 && $relative_dir ne $config_libobj_dir)
2277 if (option 'subdir-objects')
2279 # In the top-level Makefile we do not use $(top_builddir), because
2280 # we are already there, and since the targets are built without
2281 # a $(top_builddir), it helps BSD Make to match them with
2283 $dir = "$config_libobj_dir/" if $config_libobj_dir ne '.';
2284 $dir = "$topsrcdir/$dir" if $relative_dir ne '.';
2285 define_variable ('LIBOBJDIR', "$dir", INTERNAL);
2286 $clean_files{"\$($var)"} = MOSTLY_CLEAN;
2287 # If LTLIBOBJS is used, we must also clear LIBOBJS (which might
2288 # be created by libtool as a side-effect of creating LTLIBOBJS).
2289 $clean_files{"\$($var)"} = MOSTLY_CLEAN if $var =~ s/^LT//;
2293 error ("`\$($var)' cannot be used outside `$config_libobj_dir' if"
2294 . " `subdir-objects' is not set");
2301 sub handle_LIBOBJS ($$$)
2303 my ($var, $cond, $lt) = @_;
2304 my $myobjext = $lt ? 'lo' : 'o';
2307 $var->requires_variables ("\@${lt}LIBOBJS\@ used", $lt . 'LIBOBJS')
2308 if ! keys %libsources;
2310 my $dir = handle_LIBOBJS_or_ALLOCA "${lt}LIBOBJS";
2312 foreach my $iter (keys %libsources)
2314 if ($iter =~ /\.[cly]$/)
2316 &saw_extension ($&);
2317 &saw_extension ('.c');
2320 if ($iter =~ /\.h$/)
2322 require_libsource_with_macro ($cond, $var, FOREIGN, $iter);
2324 elsif ($iter ne 'alloca.c')
2326 my $rewrite = $iter;
2327 $rewrite =~ s/\.c$/.P$myobjext/;
2328 $dep_files{$dir . '$(DEPDIR)/' . $rewrite} = 1;
2329 $rewrite = "^" . quotemeta ($iter) . "\$";
2330 # Only require the file if it is not a built source.
2331 my $bs = var ('BUILT_SOURCES');
2332 if (! $bs || ! grep (/$rewrite/, $bs->value_as_list_recursive))
2334 require_libsource_with_macro ($cond, $var, FOREIGN, $iter);
2340 sub handle_ALLOCA ($$$)
2342 my ($var, $cond, $lt) = @_;
2343 my $myobjext = $lt ? 'lo' : 'o';
2345 my $dir = handle_LIBOBJS_or_ALLOCA "${lt}ALLOCA";
2347 $var->requires_variables ("\@${lt}ALLOCA\@ used", $lt . 'ALLOCA');
2348 $dep_files{$dir . '$(DEPDIR)/alloca.P' . $myobjext} = 1;
2349 require_libsource_with_macro ($cond, $var, FOREIGN, 'alloca.c');
2350 &saw_extension ('.c');
2353 # Canonicalize the input parameter
2357 $string =~ tr/A-Za-z0-9_\@/_/c;
2361 # Canonicalize a name, and check to make sure the non-canonical name
2362 # is never used. Returns canonical name. Arguments are name and a
2363 # list of suffixes to check for.
2364 sub check_canonical_spelling
2366 my ($name, @suffixes) = @_;
2368 my $xname = &canonicalize ($name);
2369 if ($xname ne $name)
2371 foreach my $xt (@suffixes)
2373 reject_var ("$name$xt", "use `$xname$xt', not `$name$xt'");
2383 # Set up the compile suite.
2384 sub handle_compile ()
2386 return if ! $must_handle_compiled_objects;
2389 my $default_includes = '';
2390 if (! option 'nostdinc')
2392 my @incs = ('-I.', subst ('am__isrc'));
2394 my $var = var 'CONFIG_HEADER';
2397 foreach my $hdr (split (' ', $var->variable_value))
2399 push @incs, '-I' . dirname ($hdr);
2402 # We want `-I. -I$(srcdir)', but the latter -I is redundant
2403 # and unaesthetic in non-VPATH builds. We use `-I.@am__isrc@`
2404 # instead. It will be replaced by '-I.' or '-I. -I$(srcdir)'.
2405 # Items in CONFIG_HEADER are never in $(srcdir) so it is safe
2406 # to just put @am__isrc@ right after `-I.', without a space.
2407 ($default_includes = ' ' . uniq (@incs)) =~ s/ @/@/;
2410 my (@mostly_rms, @dist_rms);
2411 foreach my $item (sort keys %compile_clean_files)
2413 if ($compile_clean_files{$item} == MOSTLY_CLEAN)
2415 push (@mostly_rms, "\t-rm -f $item");
2417 elsif ($compile_clean_files{$item} == DIST_CLEAN)
2419 push (@dist_rms, "\t-rm -f $item");
2423 prog_error 'invalid entry in %compile_clean_files';
2427 my ($coms, $vars, $rules) =
2428 &file_contents_internal (1, "$libdir/am/compile.am",
2429 new Automake::Location,
2430 ('DEFAULT_INCLUDES' => $default_includes,
2431 'MOSTLYRMS' => join ("\n", @mostly_rms),
2432 'DISTRMS' => join ("\n", @dist_rms)));
2433 $output_vars .= $vars;
2434 $output_rules .= "$coms$rules";
2439 # Handle libtool rules.
2442 return unless var ('LIBTOOL');
2444 # Libtool requires some files, but only at top level.
2445 # (Starting with Libtool 2.0 we do not have to bother. These
2446 # requirements are done with AC_REQUIRE_AUX_FILE.)
2447 require_conf_file_with_macro (TRUE, 'LIBTOOL', FOREIGN, @libtool_files)
2448 if $relative_dir eq '.' && ! $libtool_new_api;
2451 foreach my $item (sort keys %libtool_clean_directories)
2453 my $dir = ($item eq '.') ? '' : "$item/";
2454 # .libs is for Unix, _libs for DOS.
2455 push (@libtool_rms, "\t-rm -rf ${dir}.libs ${dir}_libs");
2458 check_user_variables 'LIBTOOLFLAGS';
2460 # Output the libtool compilation rules.
2461 $output_rules .= &file_contents ('libtool',
2462 new Automake::Location,
2463 LTRMS => join ("\n", @libtool_rms));
2466 # handle_programs ()
2467 # ------------------
2468 # Handle C programs.
2471 my @proglist = &am_install_var ('progs', 'PROGRAMS',
2472 'bin', 'sbin', 'libexec', 'pkglibexec',
2474 return if ! @proglist;
2475 $must_handle_compiled_objects = 1;
2477 my $seen_global_libobjs =
2478 var ('LDADD') && &handle_lib_objects ('', 'LDADD');
2480 foreach my $pair (@proglist)
2482 my ($where, $one_file) = @$pair;
2484 my $seen_libobjs = 0;
2485 my $obj = '.$(OBJEXT)';
2487 $known_programs{$one_file} = $where;
2489 # Canonicalize names and check for misspellings.
2490 my $xname = &check_canonical_spelling ($one_file, '_LDADD', '_LDFLAGS',
2491 '_SOURCES', '_OBJECTS',
2494 $where->push_context ("while processing program `$one_file'");
2495 $where->set (INTERNAL->get);
2497 my $linker = &handle_source_transform ($xname, $one_file, $obj, $where,
2498 NONLIBTOOL => 1, LIBTOOL => 0);
2500 if (var ($xname . "_LDADD"))
2502 $seen_libobjs = &handle_lib_objects ($xname, $xname . '_LDADD');
2506 # User didn't define prog_LDADD override. So do it.
2507 &define_variable ($xname . '_LDADD', '$(LDADD)', $where);
2509 # This does a bit too much work. But we need it to
2510 # generate _DEPENDENCIES when appropriate.
2513 $seen_libobjs = &handle_lib_objects ($xname, 'LDADD');
2517 reject_var ($xname . '_LIBADD',
2518 "use `${xname}_LDADD', not `${xname}_LIBADD'");
2520 set_seen ($xname . '_DEPENDENCIES');
2521 set_seen ('EXTRA_' . $xname . '_DEPENDENCIES');
2522 set_seen ($xname . '_LDFLAGS');
2524 # Determine program to use for link.
2525 my($xlink, $vlink) = &define_per_target_linker_variable ($linker, $xname);
2526 $vlink = verbose_flag ($vlink || 'GEN');
2528 # If the resulting program lies into a subdirectory,
2529 # make sure this directory will exist.
2530 my $dirstamp = require_build_directory_maybe ($one_file);
2532 $libtool_clean_directories{dirname ($one_file)} = 1;
2534 $output_rules .= &file_contents ('program',
2536 PROGRAM => $one_file,
2540 DIRSTAMP => $dirstamp,
2541 EXEEXT => '$(EXEEXT)');
2543 if ($seen_libobjs || $seen_global_libobjs)
2545 if (var ($xname . '_LDADD'))
2547 &check_libobjs_sources ($xname, $xname . '_LDADD');
2549 elsif (var ('LDADD'))
2551 &check_libobjs_sources ($xname, 'LDADD');
2558 # handle_libraries ()
2559 # -------------------
2561 sub handle_libraries
2563 my @liblist = &am_install_var ('libs', 'LIBRARIES',
2564 'lib', 'pkglib', 'noinst', 'check');
2565 return if ! @liblist;
2566 $must_handle_compiled_objects = 1;
2568 my @prefix = am_primary_prefixes ('LIBRARIES', 0, 'lib', 'pkglib',
2573 my $var = rvar ($prefix[0] . '_LIBRARIES');
2574 $var->requires_variables ('library used', 'RANLIB');
2577 &define_variable ('AR', 'ar', INTERNAL);
2578 &define_variable ('ARFLAGS', 'cru', INTERNAL);
2579 &define_verbose_tagvar ('AR');
2581 foreach my $pair (@liblist)
2583 my ($where, $onelib) = @$pair;
2585 my $seen_libobjs = 0;
2586 # Check that the library fits the standard naming convention.
2587 my $bn = basename ($onelib);
2588 if ($bn !~ /^lib.*\.a$/)
2590 $bn =~ s/^(?:lib)?(.*?)(?:\.[^.]*)?$/lib$1.a/;
2591 my $suggestion = dirname ($onelib) . "/$bn";
2592 $suggestion =~ s|^\./||g;
2593 msg ('error-gnu/warn', $where,
2594 "`$onelib' is not a standard library name\n"
2595 . "did you mean `$suggestion'?")
2598 ($known_libraries{$onelib} = $bn) =~ s/\.a$//;
2600 $where->push_context ("while processing library `$onelib'");
2601 $where->set (INTERNAL->get);
2603 my $obj = '.$(OBJEXT)';
2605 # Canonicalize names and check for misspellings.
2606 my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_SOURCES',
2607 '_OBJECTS', '_DEPENDENCIES',
2610 if (! var ($xlib . '_AR'))
2612 &define_variable ($xlib . '_AR', '$(AR) $(ARFLAGS)', $where);
2615 # Generate support for conditional object inclusion in
2617 if (var ($xlib . '_LIBADD'))
2619 if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2626 &define_variable ($xlib . "_LIBADD", '', $where);
2629 reject_var ($xlib . '_LDADD',
2630 "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
2632 # Make sure we at look at this.
2633 set_seen ($xlib . '_DEPENDENCIES');
2634 set_seen ('EXTRA_' . $xlib . '_DEPENDENCIES');
2636 &handle_source_transform ($xlib, $onelib, $obj, $where,
2637 NONLIBTOOL => 1, LIBTOOL => 0);
2639 # If the resulting library lies into a subdirectory,
2640 # make sure this directory will exist.
2641 my $dirstamp = require_build_directory_maybe ($onelib);
2642 my $verbose = verbose_flag ('AR');
2643 my $silent = silent_flag ();
2645 $output_rules .= &file_contents ('library',
2647 VERBOSE => $verbose,
2651 DIRSTAMP => $dirstamp);
2655 if (var ($xlib . '_LIBADD'))
2657 &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
2663 msg ('extra-portability', $where,
2664 "`$onelib': linking libraries using a non-POSIX\n"
2665 . "archiver requires `AM_PROG_AR' in `$configure_ac'")
2671 # handle_ltlibraries ()
2672 # ---------------------
2673 # Handle shared libraries.
2674 sub handle_ltlibraries
2676 my @liblist = &am_install_var ('ltlib', 'LTLIBRARIES',
2677 'noinst', 'lib', 'pkglib', 'check');
2678 return if ! @liblist;
2679 $must_handle_compiled_objects = 1;
2681 my @prefix = am_primary_prefixes ('LTLIBRARIES', 0, 'lib', 'pkglib',
2686 my $var = rvar ($prefix[0] . '_LTLIBRARIES');
2687 $var->requires_variables ('Libtool library used', 'LIBTOOL');
2691 my %instsubdirs = ();
2693 my %liblocations = (); # Location (in Makefile.am) of each library.
2695 foreach my $key (@prefix)
2697 # Get the installation directory of each library.
2699 my $strip_subdir = 1;
2700 if ($dir =~ /^nobase_/)
2702 $dir =~ s/^nobase_//;
2705 my $var = rvar ($key . '_LTLIBRARIES');
2707 # We reject libraries which are installed in several places
2708 # in the same condition, because we can only specify one
2710 $var->traverse_recursively
2713 my ($var, $val, $cond, $full_cond) = @_;
2714 my $hcond = $full_cond->human;
2715 my $where = $var->rdef ($cond)->location;
2717 $ldir = '/' . dirname ($val)
2718 if (!$strip_subdir);
2719 # A library cannot be installed in different directories
2720 # in overlapping conditions.
2721 if (exists $instconds{$val})
2724 $instconds{$val}->ambiguous_p ($val, $full_cond);
2728 error ($where, $msg, partial => 1);
2729 my $dirtxt = "installed " . ($strip_subdir ? "in" : "below") . " `$dir'";
2730 $dirtxt = "built for `$dir'"
2731 if $dir eq 'EXTRA' || $dir eq 'noinst' || $dir eq 'check';
2733 $full_cond->true ? "" : " in condition $hcond";
2735 error ($where, "`$val' should be $dirtxt$dircond ...",
2738 my $hacond = $acond->human;
2739 my $adir = $instdirs{$val}{$acond};
2740 my $adirtxt = "installed in `$adir'";
2741 $adirtxt = "built for `$adir'"
2742 if ($adir eq 'EXTRA' || $adir eq 'noinst'
2743 || $adir eq 'check');
2744 my $adircond = $acond->true ? "" : " in condition $hacond";
2746 my $onlyone = ($dir ne $adir) ?
2747 ("\nLibtool libraries can be built for only one "
2748 . "destination") : "";
2750 error ($liblocations{$val}{$acond},
2751 "... and should also be $adirtxt$adircond.$onlyone");
2757 $instconds{$val} = new Automake::DisjConditions;
2759 $instdirs{$val}{$full_cond} = $dir;
2760 $instsubdirs{$val}{$full_cond} = $ldir;
2761 $liblocations{$val}{$full_cond} = $where;
2762 $instconds{$val} = $instconds{$val}->merge ($full_cond);
2768 skip_ac_subst => 1);
2771 foreach my $pair (@liblist)
2773 my ($where, $onelib) = @$pair;
2775 my $seen_libobjs = 0;
2778 # Canonicalize names and check for misspellings.
2779 my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_LDFLAGS',
2780 '_SOURCES', '_OBJECTS',
2783 # Check that the library fits the standard naming convention.
2784 my $libname_rx = '^lib.*\.la';
2785 my $ldvar = var ("${xlib}_LDFLAGS") || var ('AM_LDFLAGS');
2786 my $ldvar2 = var ('LDFLAGS');
2787 if (($ldvar && grep (/-module/, $ldvar->value_as_list_recursive))
2788 || ($ldvar2 && grep (/-module/, $ldvar2->value_as_list_recursive)))
2790 # Relax name checking for libtool modules.
2791 $libname_rx = '\.la';
2794 my $bn = basename ($onelib);
2795 if ($bn !~ /$libname_rx$/)
2797 my $type = 'library';
2798 if ($libname_rx eq '\.la')
2800 $bn =~ s/^(lib|)(.*?)(?:\.[^.]*)?$/$1$2.la/;
2805 $bn =~ s/^(?:lib)?(.*?)(?:\.[^.]*)?$/lib$1.la/;
2807 my $suggestion = dirname ($onelib) . "/$bn";
2808 $suggestion =~ s|^\./||g;
2809 msg ('error-gnu/warn', $where,
2810 "`$onelib' is not a standard libtool $type name\n"
2811 . "did you mean `$suggestion'?")
2814 ($known_libraries{$onelib} = $bn) =~ s/\.la$//;
2816 $where->push_context ("while processing Libtool library `$onelib'");
2817 $where->set (INTERNAL->get);
2819 # Make sure we look at these.
2820 set_seen ($xlib . '_LDFLAGS');
2821 set_seen ($xlib . '_DEPENDENCIES');
2822 set_seen ('EXTRA_' . $xlib . '_DEPENDENCIES');
2824 # Generate support for conditional object inclusion in
2826 if (var ($xlib . '_LIBADD'))
2828 if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
2835 &define_variable ($xlib . "_LIBADD", '', $where);
2838 reject_var ("${xlib}_LDADD",
2839 "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
2842 my $linker = &handle_source_transform ($xlib, $onelib, $obj, $where,
2843 NONLIBTOOL => 0, LIBTOOL => 1);
2845 # Determine program to use for link.
2846 my($xlink, $vlink) = &define_per_target_linker_variable ($linker, $xlib);
2847 $vlink = verbose_flag ($vlink || 'GEN');
2849 my $rpathvar = "am_${xlib}_rpath";
2850 my $rpath = "\$($rpathvar)";
2851 foreach my $rcond ($instconds{$onelib}->conds)
2854 if ($instdirs{$onelib}{$rcond} eq 'EXTRA'
2855 || $instdirs{$onelib}{$rcond} eq 'noinst'
2856 || $instdirs{$onelib}{$rcond} eq 'check')
2858 # It's an EXTRA_ library, so we can't specify -rpath,
2859 # because we don't know where the library will end up.
2860 # The user probably knows, but generally speaking automake
2861 # doesn't -- and in fact configure could decide
2862 # dynamically between two different locations.
2867 $val = ('-rpath $(' . $instdirs{$onelib}{$rcond} . 'dir)');
2868 $val .= $instsubdirs{$onelib}{$rcond}
2869 if defined $instsubdirs{$onelib}{$rcond};
2873 # If $rcond is true there is only one condition and
2874 # there is no point defining an helper variable.
2879 define_pretty_variable ($rpathvar, $rcond, INTERNAL, $val);
2883 # If the resulting library lies into a subdirectory,
2884 # make sure this directory will exist.
2885 my $dirstamp = require_build_directory_maybe ($onelib);
2887 # Remember to cleanup .libs/ in this directory.
2888 my $dirname = dirname $onelib;
2889 $libtool_clean_directories{$dirname} = 1;
2891 $output_rules .= &file_contents ('ltlibrary',
2893 LTLIBRARY => $onelib,
2894 XLTLIBRARY => $xlib,
2898 DIRSTAMP => $dirstamp);
2901 if (var ($xlib . '_LIBADD'))
2903 &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
2909 msg ('extra-portability', $where,
2910 "`$onelib': linking libtool libraries using a non-POSIX\n"
2911 . "archiver requires `AM_PROG_AR' in `$configure_ac'")
2916 # See if any _SOURCES variable were misspelled.
2919 # It is ok if the user sets this particular variable.
2920 set_seen 'AM_LDFLAGS';
2922 foreach my $primary ('SOURCES', 'LIBADD', 'LDADD', 'LDFLAGS', 'DEPENDENCIES')
2924 foreach my $var (variables $primary)
2926 my $varname = $var->name;
2927 # A configure variable is always legitimate.
2928 next if exists $configure_vars{$varname};
2930 for my $cond ($var->conditions->conds)
2932 $varname =~ /^(?:EXTRA_)?(?:nobase_)?(?:dist_|nodist_)?(.*)_[[:alnum:]]+$/;
2933 msg_var ('syntax', $var, "variable `$varname' is defined but no"
2934 . " program or\nlibrary has `$1' as canonical name"
2935 . " (possible typo)")
2936 unless $var->rdef ($cond)->seen;
2946 # NOTE we no longer automatically clean SCRIPTS, because it is
2947 # useful to sometimes distribute scripts verbatim. This happens
2948 # e.g. in Automake itself.
2949 &am_install_var ('-candist', 'scripts', 'SCRIPTS',
2950 'bin', 'sbin', 'libexec', 'pkglibexec', 'pkgdata',
2957 ## ------------------------ ##
2958 ## Handling Texinfo files. ##
2959 ## ------------------------ ##
2961 # ($OUTFILE, $VFILE, @CLEAN_FILES)
2962 # &scan_texinfo_file ($FILENAME)
2963 # ------------------------------
2964 # $OUTFILE - name of the info file produced by $FILENAME.
2965 # $VFILE - name of the version.texi file used (undef if none).
2966 # @CLEAN_FILES - list of byproducts (indexes etc.)
2967 sub scan_texinfo_file ($)
2969 my ($filename) = @_;
2971 # Some of the following extensions are always created, no matter
2972 # whether indexes are used or not. Other (like cps, fns, ... pgs)
2973 # are only created when they are used. We used to scan $FILENAME
2974 # for their use, but that is not enough: they could be used in
2975 # included files. We can't scan included files because we don't
2976 # know the include path. Therefore we always erase these files, no
2977 # matter whether they are used or not.
2979 # (tmp is only created if an @macro is used and a certain e-TeX
2980 # feature is not available.)
2981 my %clean_suffixes =
2982 map { $_ => 1 } (qw(aux log toc tmp
2988 pg pgs)); # grep 'new.*index' texinfo.tex
2990 my $texi = new Automake::XFile "< $filename";
2991 verb "reading $filename";
2993 my ($outfile, $vfile);
2994 while ($_ = $texi->getline)
2996 if (/^\@setfilename +(\S+)/)
2998 # Honor only the first @setfilename. (It's possible to have
2999 # more occurrences later if the manual shows examples of how
3000 # to use @setfilename...)
3004 if ($outfile =~ /\.([^.]+)$/ && $1 ne 'info')
3006 error ("$filename:$.",
3007 "output `$outfile' has unrecognized extension");
3011 # A "version.texi" file is actually any file whose name matches
3013 elsif (/^\@include\s+(vers[^.]*\.texi)\s*$/)
3018 # Try to find new or unused indexes.
3020 # Creating a new category of index.
3021 elsif (/^\@def(code)?index (\w+)/)
3023 $clean_suffixes{$2} = 1;
3024 $clean_suffixes{"$2s"} = 1;
3027 # Merging an index into an another.
3028 elsif (/^\@syn(code)?index (\w+) (\w+)/)
3030 delete $clean_suffixes{"$2s"};
3031 $clean_suffixes{"$3s"} = 1;
3038 err_am "`$filename' missing \@setfilename";
3042 my $infobase = basename ($filename);
3043 $infobase =~ s/\.te?xi(nfo)?$//;
3044 return ($outfile, $vfile,
3045 map { "$infobase.$_" } (sort keys %clean_suffixes));
3049 # ($DIRSTAMP, @CLEAN_FILES)
3050 # output_texinfo_build_rules ($SOURCE, $DEST, $INSRC, @DEPENDENCIES)
3051 # ------------------------------------------------------------------
3052 # SOURCE - the source Texinfo file
3053 # DEST - the destination Info file
3054 # INSRC - whether DEST should be built in the source tree
3055 # DEPENDENCIES - known dependencies
3056 sub output_texinfo_build_rules ($$$@)
3058 my ($source, $dest, $insrc, @deps) = @_;
3060 # Split `a.texi' into `a' and `.texi'.
3061 my ($spfx, $ssfx) = ($source =~ /^(.*?)(\.[^.]*)?$/);
3062 my ($dpfx, $dsfx) = ($dest =~ /^(.*?)(\.[^.]*)?$/);
3067 # We can output two kinds of rules: the "generic" rules use Make
3068 # suffix rules and are appropriate when $source and $dest do not lie
3069 # in a sub-directory; the "specific" rules are needed in the other
3072 # The former are output only once (this is not really apparent here,
3073 # but just remember that some logic deeper in Automake will not
3074 # output the same rule twice); while the later need to be output for
3075 # each Texinfo source.
3078 my $sdir = dirname $source;
3079 if ($sdir eq '.' && dirname ($dest) eq '.')
3082 $makeinfoflags = '-I $(srcdir)';
3087 $makeinfoflags = "-I $sdir -I \$(srcdir)/$sdir";
3090 # A directory can contain two kinds of info files: some built in the
3091 # source tree, and some built in the build tree. The rules are
3092 # different in each case. However we cannot output two different
3093 # set of generic rules. Because in-source builds are more usual, we
3094 # use generic rules in this case and fall back to "specific" rules
3095 # for build-dir builds. (It should not be a problem to invert this
3097 $generic = 0 unless $insrc;
3099 # We cannot use a suffix rule to build info files with an empty
3100 # extension. Otherwise we would output a single suffix inference
3101 # rule, with separate dependencies, as in
3105 # foo.info: foo.texi
3107 # which confuse Solaris make. (See the Autoconf manual for
3108 # details.) Therefore we use a specific rule in this case. This
3109 # applies to info files only (dvi and pdf files always have an
3111 my $generic_info = ($generic && $dsfx) ? 1 : 0;
3113 # If the resulting file lie into a subdirectory,
3114 # make sure this directory will exist.
3115 my $dirstamp = require_build_directory_maybe ($dest);
3117 my $dipfx = ($insrc ? '$(srcdir)/' : '') . $dpfx;
3119 $output_rules .= file_contents ('texibuild',
3120 new Automake::Location,
3121 AM_V_MAKEINFO => verbose_flag('MAKEINFO'),
3122 AM_V_TEXI2DVI => verbose_flag('TEXI2DVI'),
3123 AM_V_TEXI2PDF => verbose_flag('TEXI2PDF'),
3125 DEST_PREFIX => $dpfx,
3126 DEST_INFO_PREFIX => $dipfx,
3127 DEST_SUFFIX => $dsfx,
3128 DIRSTAMP => $dirstamp,
3129 GENERIC => $generic,
3130 GENERIC_INFO => $generic_info,
3132 MAKEINFOFLAGS => $makeinfoflags,
3133 SILENT => silent_flag(),
3136 SOURCE_INFO => ($generic_info
3138 SOURCE_REAL => $source,
3139 SOURCE_SUFFIX => $ssfx,
3140 TEXIQUIET => verbose_flag('texinfo'),
3141 TEXIDEVNULL => verbose_flag('texidevnull'),
3143 return ($dirstamp, "$dpfx.dvi", "$dpfx.pdf", "$dpfx.ps", "$dpfx.html");
3147 # ($MOSTLYCLEAN, $TEXICLEAN, $MAINTCLEAN)
3148 # handle_texinfo_helper ($info_texinfos)
3149 # --------------------------------------
3150 # Handle all Texinfo source; helper for handle_texinfo.
3151 sub handle_texinfo_helper ($)
3153 my ($info_texinfos) = @_;
3154 my (@infobase, @info_deps_list, @texi_deps);
3157 my (@mostly_cleans, @texi_cleans, @maint_cleans) = ('', '', '');
3159 # Build a regex matching user-cleaned files.
3160 my $d = var 'DISTCLEANFILES';
3161 my $c = var 'CLEANFILES';
3163 push @f, $d->value_as_list_recursive (inner_expand => 1) if $d;
3164 push @f, $c->value_as_list_recursive (inner_expand => 1) if $c;
3165 @f = map { s|[^A-Za-z_0-9*\[\]\-]|\\$&|g; s|\*|[^/]*|g; $_; } @f;
3166 my $user_cleaned_files = '^(?:' . join ('|', @f) . ')$';
3169 ($info_texinfos->value_as_list_recursive (inner_expand => 1))
3171 my $infobase = $texi;
3172 $infobase =~ s/\.(txi|texinfo|texi)$//;
3174 if ($infobase eq $texi)
3176 # FIXME: report line number.
3177 err_am "texinfo file `$texi' has unrecognized extension";
3181 push @infobase, $infobase;
3183 # If 'version.texi' is referenced by input file, then include
3184 # automatic versioning capability.
3185 my ($out_file, $vtexi, @clean_files) =
3186 scan_texinfo_file ("$relative_dir/$texi")
3188 push (@mostly_cleans, @clean_files);
3190 # If the Texinfo source is in a subdirectory, create the
3191 # resulting info in this subdirectory. If it is in the current
3192 # directory, try hard to not prefix "./" because it breaks the
3194 my $outdir = dirname ($texi) . '/';
3195 $outdir = "" if $outdir eq './';
3196 $out_file = $outdir . $out_file;
3198 # Until Automake 1.6.3, .info files were built in the
3199 # source tree. This was an obstacle to the support of
3200 # non-distributed .info files, and non-distributed .texi
3203 # * Non-distributed .texi files is important in some packages
3204 # where .texi files are built at make time, probably using
3205 # other binaries built in the package itself, maybe using
3206 # tools or information found on the build host. Because
3207 # these files are not distributed they are always rebuilt
3208 # at make time; they should therefore not lie in the source
3209 # directory. One plan was to support this using
3210 # nodist_info_TEXINFOS or something similar. (Doing this
3211 # requires some sanity checks. For instance Automake should
3213 # dist_info_TEXINFOS = foo.texi
3214 # nodist_foo_TEXINFOS = included.texi
3215 # because a distributed file should never depend on a
3216 # non-distributed file.)
3218 # * If .texi files are not distributed, then .info files should
3219 # not be distributed either. There are also cases where one
3220 # wants to distribute .texi files, but does not want to
3221 # distribute the .info files. For instance the Texinfo package
3222 # distributes the tool used to build these files; it would
3223 # be a waste of space to distribute them. It's not clear
3224 # which syntax we should use to indicate that .info files should
3225 # not be distributed. Akim Demaille suggested that eventually
3226 # we switch to a new syntax:
3227 # | Maybe we should take some inspiration from what's already
3228 # | done in the rest of Automake. Maybe there is too much
3229 # | syntactic sugar here, and you want
3230 # | nodist_INFO = bar.info
3231 # | dist_bar_info_SOURCES = bar.texi
3232 # | bar_texi_DEPENDENCIES = foo.texi
3233 # | with a bit of magic to have bar.info represent the whole
3234 # | bar*info set. That's a lot more verbose that the current
3235 # | situation, but it is # not new, hence the user has less
3238 # | But there is still too much room for meaningless specs:
3239 # | nodist_INFO = bar.info
3240 # | dist_bar_info_SOURCES = bar.texi
3241 # | dist_PS = bar.ps something-written-by-hand.ps
3242 # | nodist_bar_ps_SOURCES = bar.texi
3243 # | bar_texi_DEPENDENCIES = foo.texi
3244 # | here bar.texi is dist_ in line 2, and nodist_ in 4.
3246 # Back to the point, it should be clear that in order to support
3247 # non-distributed .info files, we need to build them in the
3248 # build tree, not in the source tree (non-distributed .texi
3249 # files are less of a problem, because we do not output build
3250 # rules for them). In Automake 1.7 .info build rules have been
3251 # largely cleaned up so that .info files get always build in the
3252 # build tree, even when distributed. The idea was that
3253 # (1) if during a VPATH build the .info file was found to be
3254 # absent or out-of-date (in the source tree or in the
3255 # build tree), Make would rebuild it in the build tree.
3256 # If an up-to-date source-tree of the .info file existed,
3257 # make would not rebuild it in the build tree.
3258 # (2) having two copies of .info files, one in the source tree
3259 # and one (newer) in the build tree is not a problem
3260 # because `make dist' always pick files in the build tree
3262 # However it turned out the be a bad idea for several reasons:
3263 # * Tru64, OpenBSD, and FreeBSD (not NetBSD) Make do not behave
3264 # like GNU Make on point (1) above. These implementations
3265 # of Make would always rebuild .info files in the build
3266 # tree, even if such files were up to date in the source
3267 # tree. Consequently, it was impossible to perform a VPATH
3268 # build of a package containing Texinfo files using these
3269 # Make implementations.
3270 # (Refer to the Autoconf Manual, section "Limitation of
3271 # Make", paragraph "VPATH", item "target lookup", for
3272 # an account of the differences between these
3274 # * The GNU Coding Standards require these files to be built
3275 # in the source-tree (when they are distributed, that is).
3276 # * Keeping a fresher copy of distributed files in the
3277 # build tree can be annoying during development because
3278 # - if the files is kept under CVS, you really want it
3279 # to be updated in the source tree
3280 # - it is confusing that `make distclean' does not erase
3281 # all files in the build tree.
3283 # Consequently, starting with Automake 1.8, .info files are
3284 # built in the source tree again. Because we still plan to
3285 # support non-distributed .info files at some point, we
3286 # have a single variable ($INSRC) that controls whether
3287 # the current .info file must be built in the source tree
3288 # or in the build tree. Actually this variable is switched
3289 # off for .info files that appear to be cleaned; this is
3290 # for backward compatibility with package such as Texinfo,
3291 # which do things like
3292 # info_TEXINFOS = texinfo.txi info-stnd.texi info.texi
3293 # DISTCLEANFILES = texinfo texinfo-* info*.info*
3294 # # Do not create info files for distribution.
3296 # in order not to distribute .info files.
3297 my $insrc = ($out_file =~ $user_cleaned_files) ? 0 : 1;
3299 my $soutdir = '$(srcdir)/' . $outdir;
3300 $outdir = $soutdir if $insrc;
3302 # If user specified file_TEXINFOS, then use that as explicit
3305 push (@texi_deps, "$soutdir$vtexi") if $vtexi;
3307 my $canonical = canonicalize ($infobase);
3308 if (var ($canonical . "_TEXINFOS"))
3310 push (@texi_deps, '$(' . $canonical . '_TEXINFOS)');
3311 push_dist_common ('$(' . $canonical . '_TEXINFOS)');
3314 my ($dirstamp, @cfiles) =
3315 output_texinfo_build_rules ($texi, $out_file, $insrc, @texi_deps);
3316 push (@texi_cleans, @cfiles);
3318 push (@info_deps_list, $out_file);
3320 # If a vers*.texi file is needed, emit the rule.
3323 err_am ("`$vtexi', included in `$texi', "
3324 . "also included in `$versions{$vtexi}'")
3325 if defined $versions{$vtexi};
3326 $versions{$vtexi} = $texi;
3328 # We number the stamp-vti files. This is doable since the
3329 # actual names don't matter much. We only number starting
3330 # with the second one, so that the common case looks nice.
3331 my $vti = ($done ? $done : 'vti');
3334 # This is ugly, but it is our historical practice.
3335 if ($config_aux_dir_set_in_configure_ac)
3337 require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
3342 require_file_with_macro (TRUE, 'info_TEXINFOS',
3343 FOREIGN, 'mdate-sh');
3347 if ($config_aux_dir_set_in_configure_ac)
3349 $conf_dir = "$am_config_aux_dir/";
3353 $conf_dir = '$(srcdir)/';
3355 $output_rules .= file_contents ('texi-vers',
3356 new Automake::Location,
3359 STAMPVTI => "${soutdir}stamp-$vti",
3360 VTEXI => "$soutdir$vtexi",
3362 DIRSTAMP => $dirstamp);
3366 # Handle location of texinfo.tex.
3367 my $need_texi_file = 0;
3369 if (var ('TEXINFO_TEX'))
3371 # The user defined TEXINFO_TEX so assume he knows what he is
3373 $texinfodir = ('$(srcdir)/'
3374 . dirname (variable_value ('TEXINFO_TEX')));
3376 elsif (option 'cygnus')
3378 $texinfodir = '$(top_srcdir)/../texinfo';
3379 define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
3381 elsif ($config_aux_dir_set_in_configure_ac)
3383 $texinfodir = $am_config_aux_dir;
3384 define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
3385 $need_texi_file = 2; # so that we require_conf_file later
3389 $texinfodir = '$(srcdir)';
3390 $need_texi_file = 1;
3392 define_variable ('am__TEXINFO_TEX_DIR', $texinfodir, INTERNAL);
3394 push (@dist_targets, 'dist-info');
3396 if (! option 'no-installinfo')
3398 # Make sure documentation is made and installed first. Use
3399 # $(INFO_DEPS), not 'info', because otherwise recursive makes
3400 # get run twice during "make all".
3401 unshift (@all, '$(INFO_DEPS)');
3404 define_files_variable ("DVIS", @infobase, 'dvi', INTERNAL);
3405 define_files_variable ("PDFS", @infobase, 'pdf', INTERNAL);
3406 define_files_variable ("PSS", @infobase, 'ps', INTERNAL);
3407 define_files_variable ("HTMLS", @infobase, 'html', INTERNAL);
3409 # This next isn't strictly needed now -- the places that look here
3410 # could easily be changed to look in info_TEXINFOS. But this is
3411 # probably better, in case noinst_TEXINFOS is ever supported.
3412 define_variable ("TEXINFOS", variable_value ('info_TEXINFOS'), INTERNAL);
3414 # Do some error checking. Note that this file is not required
3415 # when in Cygnus mode; instead we defined TEXINFO_TEX explicitly
3417 if ($need_texi_file && ! option 'no-texinfo.tex')
3419 if ($need_texi_file > 1)
3421 require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
3426 require_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
3431 return (makefile_wrap ("", "\t ", @mostly_cleans),
3432 makefile_wrap ("", "\t ", @texi_cleans),
3433 makefile_wrap ("", "\t ", @maint_cleans));
3439 # Handle all Texinfo source.
3440 sub handle_texinfo ()
3442 reject_var 'TEXINFOS', "`TEXINFOS' is an anachronism; use `info_TEXINFOS'";
3443 # FIXME: I think this is an obsolete future feature name.
3444 reject_var 'html_TEXINFOS', "HTML generation not yet supported";
3446 my $info_texinfos = var ('info_TEXINFOS');
3447 my ($mostlyclean, $clean, $maintclean) = ('', '', '');
3450 define_verbose_texinfo;
3451 ($mostlyclean, $clean, $maintclean) = handle_texinfo_helper ($info_texinfos);
3457 $output_rules .= file_contents ('texinfos',
3458 new Automake::Location,
3459 AM_V_DVIPS => verbose_flag('DVIPS'),
3460 MOSTLYCLEAN => $mostlyclean,
3461 TEXICLEAN => $clean,
3462 MAINTCLEAN => $maintclean,
3463 'LOCAL-TEXIS' => !!$info_texinfos,
3464 TEXIQUIET => verbose_flag('texinfo'));
3468 # Handle any man pages.
3469 sub handle_man_pages
3471 reject_var 'MANS', "`MANS' is an anachronism; use `man_MANS'";
3473 # Find all the sections in use. We do this by first looking for
3474 # "standard" sections, and then looking for any additional
3475 # sections used in man_MANS.
3476 my (%sections, %notrans_sections, %trans_sections,
3477 %notrans_vars, %trans_vars, %notrans_sect_vars, %trans_sect_vars);
3478 # We handle nodist_ for uniformity. man pages aren't distributed
3479 # by default so it isn't actually very important.
3480 foreach my $npfx ('', 'notrans_')
3482 foreach my $pfx ('', 'dist_', 'nodist_')
3484 # Add more sections as needed.
3485 foreach my $section ('0'..'9', 'n', 'l')
3487 my $varname = $npfx . $pfx . 'man' . $section . '_MANS';
3490 $sections{$section} = 1;
3491 $varname = '$(' . $varname . ')';
3492 if ($npfx eq 'notrans_')
3494 $notrans_sections{$section} = 1;
3495 $notrans_sect_vars{$varname} = 1;
3499 $trans_sections{$section} = 1;
3500 $trans_sect_vars{$varname} = 1;
3503 &push_dist_common ($varname)
3508 my $varname = $npfx . $pfx . 'man_MANS';
3509 my $var = var ($varname);
3512 foreach ($var->value_as_list_recursive)
3514 # A page like `foo.1c' goes into man1dir.
3515 if (/\.([0-9a-z])([a-z]*)$/)
3518 if ($npfx eq 'notrans_')
3520 $notrans_sections{$1} = 1;
3524 $trans_sections{$1} = 1;
3529 $varname = '$(' . $varname . ')';
3530 if ($npfx eq 'notrans_')
3532 $notrans_vars{$varname} = 1;
3536 $trans_vars{$varname} = 1;
3538 &push_dist_common ($varname)
3544 return unless %sections;
3548 # Build section independent variables.
3549 my $have_notrans = %notrans_vars;
3550 my @notrans_list = sort keys %notrans_vars;
3551 my $have_trans = %trans_vars;
3552 my @trans_list = sort keys %trans_vars;
3554 # Now for each section, generate an install and uninstall rule.
3555 # Sort sections so output is deterministic.
3556 foreach my $section (sort keys %sections)
3558 # Build section dependent variables.
3559 my $notrans_mans = $have_notrans || exists $notrans_sections{$section};
3560 my $trans_mans = $have_trans || exists $trans_sections{$section};
3561 my (%notrans_this_sect, %trans_this_sect);
3562 my $expr = 'man' . $section . '_MANS';
3563 foreach my $varname (keys %notrans_sect_vars)
3565 if ($varname =~ /$expr/)
3567 $notrans_this_sect{$varname} = 1;
3570 foreach my $varname (keys %trans_sect_vars)
3572 if ($varname =~ /$expr/)
3574 $trans_this_sect{$varname} = 1;
3577 my @notrans_sect_list = sort keys %notrans_this_sect;
3578 my @trans_sect_list = sort keys %trans_this_sect;
3579 @unsorted_deps = (keys %notrans_vars, keys %trans_vars,
3580 keys %notrans_this_sect, keys %trans_this_sect);
3581 my @deps = sort @unsorted_deps;
3582 $output_rules .= &file_contents ('mans',
3583 new Automake::Location,
3584 SECTION => $section,
3586 NOTRANS_MANS => $notrans_mans,
3587 NOTRANS_SECT_LIST => "@notrans_sect_list",
3588 HAVE_NOTRANS => $have_notrans,
3589 NOTRANS_LIST => "@notrans_list",
3590 TRANS_MANS => $trans_mans,
3591 TRANS_SECT_LIST => "@trans_sect_list",
3592 HAVE_TRANS => $have_trans,
3593 TRANS_LIST => "@trans_list");
3596 @unsorted_deps = (keys %notrans_vars, keys %trans_vars,
3597 keys %notrans_sect_vars, keys %trans_sect_vars);
3598 my @mans = sort @unsorted_deps;
3599 $output_vars .= file_contents ('mans-vars',
3600 new Automake::Location,
3603 push (@all, '$(MANS)')
3604 unless option 'no-installman';
3607 # Handle DATA variables.
3610 &am_install_var ('-noextra', '-candist', 'data', 'DATA',
3611 'data', 'dataroot', 'doc', 'dvi', 'html', 'pdf',
3612 'ps', 'sysconf', 'sharedstate', 'localstate',
3613 'pkgdata', 'lisp', 'noinst', 'check');
3621 my @cscope_deps = ();
3622 if (var ('SUBDIRS'))
3624 $output_rules .= ("tags-recursive:\n"
3625 . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3626 # Never fail here if a subdir fails; it
3628 . "\t test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir"
3629 . " && \$(MAKE) \$(AM_MAKEFLAGS) tags); \\\n"
3631 push (@tag_deps, 'tags-recursive');
3632 &depend ('.PHONY', 'tags-recursive');
3633 &depend ('.MAKE', 'tags-recursive');
3635 $output_rules .= ("ctags-recursive:\n"
3636 . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3637 # Never fail here if a subdir fails; it
3639 . "\t test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir"
3640 . " && \$(MAKE) \$(AM_MAKEFLAGS) ctags); \\\n"
3642 push (@ctag_deps, 'ctags-recursive');
3643 &depend ('.PHONY', 'ctags-recursive');
3644 &depend ('.MAKE', 'ctags-recursive');
3646 $output_rules .= ("cscopelist-recursive:\n"
3647 . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
3648 # Never fail here if a subdir fails; it
3650 . "\t test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir"
3651 . " && \$(MAKE) \$(AM_MAKEFLAGS) cscopelist); \\\n"
3653 push (@cscope_deps, 'cscopelist-recursive');
3654 &depend ('.PHONY', 'cscopelist-recursive');
3655 &depend ('.MAKE', 'cscopelist-recursive');
3658 if (&saw_sources_p (1)
3659 || var ('ETAGS_ARGS')
3663 foreach my $spec (@config_headers)
3665 my ($out, @ins) = split_config_file_spec ($spec);
3666 foreach my $in (@ins)
3668 # If the config header source is in this directory,
3670 push @config, basename ($in)
3671 if $relative_dir eq dirname ($in);
3674 $output_rules .= &file_contents ('tags',
3675 new Automake::Location,
3676 CONFIG => "@config",
3677 TAGSDIRS => "@tag_deps",
3678 CTAGSDIRS => "@ctag_deps",
3679 CSCOPEDIRS => "@cscope_deps");
3681 set_seen 'TAGS_DEPENDENCIES';
3683 elsif (reject_var ('TAGS_DEPENDENCIES',
3684 "it doesn't make sense to define `TAGS_DEPENDENCIES'"
3685 . " without\nsources or `ETAGS_ARGS'"))
3690 # Every Makefile must define some sort of TAGS rule.
3691 # Otherwise, it would be possible for a top-level "make TAGS"
3692 # to fail because some subdirectory failed.
3693 $output_rules .= "tags: TAGS\nTAGS:\n\n";
3694 # Ditto ctags and cscope.
3695 $output_rules .= "ctags: CTAGS\nCTAGS:\n\n";
3696 $output_rules .= "cscope cscopelist:\n\n";
3700 # Handle multilib support.
3703 if ($seen_multilib && $relative_dir eq '.')
3705 $output_rules .= &file_contents ('multilib', new Automake::Location);
3706 push (@all, 'all-multi');
3711 # user_phony_rule ($NAME)
3712 # -----------------------
3713 # Return false if rule $NAME does not exist. Otherwise,
3714 # declare it as phony, complete its definition (in case it is
3715 # conditional), and return its Automake::Rule instance.
3716 sub user_phony_rule ($)
3719 my $rule = rule $name;
3722 depend ('.PHONY', $name);
3723 # Define $NAME in all condition where it is not already defined,
3724 # so that it is always OK to depend on $NAME.
3725 for my $c ($rule->not_always_defined_in_cond (TRUE)->conds)
3727 Automake::Rule::define ($name, 'internal', RULE_AUTOMAKE,
3729 $output_rules .= $c->subst_string . "$name:\n";
3737 # &for_dist_common ($A, $B)
3738 # -------------------------
3739 # Subroutine for &handle_dist: sort files to dist.
3741 # We put README first because it then becomes easier to make a
3742 # Usenet-compliant shar file (in these, README must be first).
3744 # FIXME: do more ordering of files here.
3758 # Handle 'dist' target.
3761 # Substitutions for distdir.am
3764 # Define DIST_SUBDIRS. This must always be done, regardless of the
3765 # no-dist setting: target like `distclean' or `maintainer-clean' use it.
3766 my $subdirs = var ('SUBDIRS');
3769 # If SUBDIRS is conditionally defined, then set DIST_SUBDIRS
3770 # to all possible directories, and use it. If DIST_SUBDIRS is
3771 # defined, just use it.
3773 # Note that we check DIST_SUBDIRS first on purpose, so that
3774 # we don't call has_conditional_contents for now reason.
3775 # (In the past one project used so many conditional subdirectories
3776 # that calling has_conditional_contents on SUBDIRS caused
3777 # automake to grow to 150Mb -- this should not happen with
3778 # the current implementation of has_conditional_contents,
3779 # but it's more efficient to avoid the call anyway.)
3780 if (var ('DIST_SUBDIRS'))
3783 elsif ($subdirs->has_conditional_contents)
3785 define_pretty_variable
3786 ('DIST_SUBDIRS', TRUE, INTERNAL,
3787 uniq ($subdirs->value_as_list_recursive));
3791 # We always define this because that is what `distclean'
3793 define_pretty_variable ('DIST_SUBDIRS', TRUE, INTERNAL,
3798 # The remaining definitions are only required when a dist target is used.
3799 return if option 'no-dist';
3801 # At least one of the archive formats must be enabled.
3802 if ($relative_dir eq '.')
3804 my $archive_defined = option 'no-dist-gzip' ? 0 : 1;
3805 $archive_defined ||=
3806 grep { option "dist-$_" } qw(shar zip tarZ bzip2 lzip lzma xz);
3807 error (option 'no-dist-gzip',
3808 "no-dist-gzip specified but no dist-* specified,\n"
3809 . "at least one archive format must be enabled")
3810 unless $archive_defined;
3813 # Look for common files that should be included in distribution.
3814 # If the aux dir is set, and it does not have a Makefile.am, then
3815 # we check for these files there as well.
3817 if ($relative_dir eq '.'
3818 && $config_aux_dir_set_in_configure_ac)
3820 if (! &is_make_dir ($config_aux_dir))
3825 foreach my $cfile (@common_files)
3827 if (dir_has_case_matching_file ($relative_dir, $cfile)
3828 # The file might be absent, but if it can be built it's ok.
3831 &push_dist_common ($cfile);
3834 # Don't use `elsif' here because a file might meaningfully
3835 # appear in both directories.
3836 if ($check_aux && dir_has_case_matching_file ($config_aux_dir, $cfile))
3838 &push_dist_common ("$config_aux_dir/$cfile")
3842 # We might copy elements from $configure_dist_common to
3843 # %dist_common if we think we need to. If the file appears in our
3844 # directory, we would have discovered it already, so we don't
3845 # check that. But if the file is in a subdir without a Makefile,
3846 # we want to distribute it here if we are doing `.'. Ugly!
3847 # Also, in some corner cases, it's possible that the following code
3848 # will cause the same file to appear in the $(DIST_COMMON) variables
3849 # of two distinct Makefiles; but this is not a problem, since the
3850 # `distdir' target in `lib/am/distdir.am' can deal with the same
3851 # file being distributed multiple times.
3852 # See also automake bug#9651.
3853 if ($relative_dir eq '.')
3855 foreach my $file (split (' ' , $configure_dist_common))
3857 my $dir = dirname ($file);
3858 push_dist_common ($file)
3859 if ($dir eq '.' || ! is_make_dir ($dir));
3863 # Files to distributed. Don't use ->value_as_list_recursive
3864 # as it recursively expands `$(dist_pkgdata_DATA)' etc.
3865 my @dist_common = split (' ', rvar ('DIST_COMMON')->variable_value);
3866 @dist_common = uniq (sort for_dist_common (@dist_common));
3867 variable_delete 'DIST_COMMON';
3868 define_pretty_variable ('DIST_COMMON', TRUE, INTERNAL, @dist_common);
3870 # Now that we've processed DIST_COMMON, disallow further attempts
3872 $handle_dist_run = 1;
3874 # Scan EXTRA_DIST to see if we need to distribute anything from a
3875 # subdir. If so, add it to the list. I didn't want to do this
3876 # originally, but there were so many requests that I finally
3878 my $extra_dist = var ('EXTRA_DIST');
3880 $transform{'DISTCHECK-HOOK'} = !! rule 'distcheck-hook';
3881 $transform{'GETTEXT'} = $seen_gettext && !$seen_gettext_external;
3883 # If the target `dist-hook' exists, make sure it is run. This
3884 # allows users to do random weird things to the distribution
3885 # before it is packaged up.
3886 push (@dist_targets, 'dist-hook')
3887 if user_phony_rule 'dist-hook';
3888 $transform{'DIST-TARGETS'} = join (' ', @dist_targets);
3890 my $flm = option ('filename-length-max');
3891 my $filename_filter = $flm ? '.' x $flm->[1] : '';
3893 $output_rules .= &file_contents ('distdir',
3894 new Automake::Location,
3896 FILENAME_FILTER => $filename_filter);
3900 # check_directory ($NAME, $WHERE [, $RELATIVE_DIR = "."])
3901 # -------------------------------------------------------
3902 # Ensure $NAME is a directory (in $RELATIVE_DIR), and that it uses a sane
3903 # name. Use $WHERE as a location in the diagnostic, if any.
3904 sub check_directory ($$;$)
3906 my ($dir, $where, $reldir) = @_;
3907 $reldir = '.' unless defined $reldir;
3909 error $where, "required directory $reldir/$dir does not exist"
3910 unless -d "$reldir/$dir";
3912 # If an `obj/' directory exists, BSD make will enter it before
3913 # reading `Makefile'. Hence the `Makefile' in the current directory
3919 # % cat obj/Makefile
3925 # % pmake # BSD make
3928 msg ('portability', $where,
3929 "naming a subdirectory `obj' causes troubles with BSD make")
3932 # `aux' is probably the most important of the following forbidden name,
3933 # since it's tempting to use it as an AC_CONFIG_AUX_DIR.
3934 msg ('portability', $where,
3935 "name `$dir' is reserved on W32 and DOS platforms")
3936 if grep (/^\Q$dir\E$/i, qw/aux lpt1 lpt2 lpt3 com1 com2 com3 com4 con prn/);
3939 # check_directories_in_var ($VARIABLE)
3940 # ------------------------------------
3941 # Recursively check all items in variables $VARIABLE as directories
3942 sub check_directories_in_var ($)
3945 $var->traverse_recursively
3948 my ($var, $val, $cond, $full_cond) = @_;
3949 check_directory ($val, $var->rdef ($cond)->location, $relative_dir);
3953 skip_ac_subst => 1);
3956 # &handle_subdirs ()
3957 # ------------------
3958 # Handle subdirectories.
3959 sub handle_subdirs ()
3961 my $subdirs = var ('SUBDIRS');
3965 check_directories_in_var $subdirs;
3967 my $dsubdirs = var ('DIST_SUBDIRS');
3968 check_directories_in_var $dsubdirs
3971 $output_rules .= &file_contents ('subdirs', new Automake::Location);
3972 rvar ('RECURSIVE_TARGETS')->rdef (TRUE)->{'pretty'} = VAR_SORTED; # Gross!
3976 # ($REGEN, @DEPENDENCIES)
3979 # If aclocal.m4 creation is automated, return the list of its dependencies.
3980 sub scan_aclocal_m4 ()
3982 my $regen_aclocal = 0;
3984 set_seen 'CONFIG_STATUS_DEPENDENCIES';
3985 set_seen 'CONFIGURE_DEPENDENCIES';
3987 if (-f 'aclocal.m4')
3989 &define_variable ("ACLOCAL_M4", '$(top_srcdir)/aclocal.m4', INTERNAL);
3991 my $aclocal = new Automake::XFile "< aclocal.m4";
3992 my $line = $aclocal->getline;
3993 $regen_aclocal = $line =~ 'generated automatically by aclocal';
3998 if (set_seen ('ACLOCAL_M4_SOURCES'))
4000 push (@ac_deps, '$(ACLOCAL_M4_SOURCES)');
4001 msg_var ('obsolete', 'ACLOCAL_M4_SOURCES',
4002 "`ACLOCAL_M4_SOURCES' is obsolete.\n"
4003 . "It should be safe to simply remove it");
4006 # Note that it might be possible that aclocal.m4 doesn't exist but
4007 # should be auto-generated. This case probably isn't very
4010 return ($regen_aclocal, @ac_deps);
4014 # Helper function for substitute_ac_subst_variables.
4015 sub substitute_ac_subst_variables_worker($)
4018 return "\@$token\@" if var $token;
4019 return "\${$token\}";
4022 # substitute_ac_subst_variables ($TEXT)
4023 # -------------------------------------
4024 # Replace any occurrence of ${FOO} in $TEXT by @FOO@ if FOO is an AC_SUBST
4026 sub substitute_ac_subst_variables ($)
4029 $text =~ s/\${([^ \t=:+{}]+)}/&substitute_ac_subst_variables_worker ($1)/ge;
4034 # &prepend_srcdir (@INPUTS)
4035 # -------------------------
4036 # Prepend $(srcdir) or $(top_srcdir) to all @INPUTS. The idea is that
4037 # if an input file has a directory part the same as the current
4038 # directory, then the directory part is simply replaced by $(srcdir).
4039 # But if the directory part is different, then $(top_srcdir) is
4041 sub prepend_srcdir (@)
4046 foreach my $single (@inputs)
4048 if (dirname ($single) eq $relative_dir)
4050 push (@newinputs, '$(srcdir)/' . basename ($single));
4054 push (@newinputs, '$(top_srcdir)/' . $single);
4061 # rewrite_inputs_into_dependencies ($OUTPUT, @INPUTS)
4062 # ---------------------------------------------------
4063 # Compute a list of dependencies appropriate for the rebuild
4065 # AC_CONFIG_FILES($OUTPUT:$INPUT[0]:$INPUTS[1]:...)
4066 # Also distribute $INPUTs which are not built by another AC_CONFIG_FOOs.
4067 sub rewrite_inputs_into_dependencies ($@)
4069 my ($file, @inputs) = @_;
4074 # We cannot create dependencies on shell variables.
4075 next if (substitute_ac_subst_variables $i) =~ /\$/;
4077 if (exists $ac_config_files_location{$i} && $i ne $file)
4079 my $di = dirname $i;
4080 if ($di eq $relative_dir)
4084 # In the top-level Makefile we do not use $(top_builddir), because
4085 # we are already there, and since the targets are built without
4086 # a $(top_builddir), it helps BSD Make to match them with
4088 elsif ($relative_dir ne '.')
4090 $i = '$(top_builddir)/' . $i;
4095 msg ('error', $ac_config_files_location{$file},
4096 "required file `$i' not found")
4097 unless $i =~ /\$/ || exists $output_files{$i} || -f $i;
4098 ($i) = prepend_srcdir ($i);
4099 push_dist_common ($i);
4108 # &handle_configure ($MAKEFILE_AM, $MAKEFILE_IN, $MAKEFILE, @INPUTS)
4109 # ------------------------------------------------------------------
4110 # Handle remaking and configure stuff.
4111 # We need the name of the input file, to do proper remaking rules.
4112 sub handle_configure ($$$@)
4114 my ($makefile_am, $makefile_in, $makefile, @inputs) = @_;
4116 prog_error 'empty @inputs'
4119 my ($rel_makefile_am, $rel_makefile_in) = prepend_srcdir ($makefile_am,
4121 my $rel_makefile = basename $makefile;
4123 my $colon_infile = ':' . join (':', @inputs);
4124 $colon_infile = '' if $colon_infile eq ":$makefile.in";
4125 my @rewritten = rewrite_inputs_into_dependencies ($makefile, @inputs);
4126 my ($regen_aclocal_m4, @aclocal_m4_deps) = scan_aclocal_m4;
4127 define_pretty_variable ('am__aclocal_m4_deps', TRUE, INTERNAL,
4128 @configure_deps, @aclocal_m4_deps,
4129 '$(top_srcdir)/' . $configure_ac);
4130 my @configuredeps = ('$(am__aclocal_m4_deps)', '$(CONFIGURE_DEPENDENCIES)');
4131 push @configuredeps, '$(ACLOCAL_M4)' if -f 'aclocal.m4';
4132 define_pretty_variable ('am__configure_deps', TRUE, INTERNAL,
4135 my $automake_options = '--' . (global_option 'cygnus' ? 'cygnus' : $strictness_name)
4136 . (global_option 'no-dependencies' ? ' --ignore-deps' : '');
4138 $output_rules .= file_contents
4140 new Automake::Location,
4141 MAKEFILE => $rel_makefile,
4142 'MAKEFILE-DEPS' => "@rewritten",
4143 'CONFIG-MAKEFILE' => ($relative_dir eq '.') ? '$@' : '$(subdir)/$@',
4144 'MAKEFILE-IN' => $rel_makefile_in,
4145 'HAVE-MAKEFILE-IN-DEPS' => (@include_stack > 0),
4146 'MAKEFILE-IN-DEPS' => "@include_stack",
4147 'MAKEFILE-AM' => $rel_makefile_am,
4148 'AUTOMAKE-OPTIONS' => $automake_options,
4149 'MAKEFILE-AM-SOURCES' => "$makefile$colon_infile",
4150 'REGEN-ACLOCAL-M4' => $regen_aclocal_m4,
4151 VERBOSE => verbose_flag ('GEN'));
4153 if ($relative_dir eq '.')
4155 &push_dist_common ('acconfig.h')
4159 # If we have a configure header, require it.
4161 my @distclean_config;
4162 foreach my $spec (@config_headers)
4165 # $CONFIG_H_PATH: config.h from top level.
4166 my ($config_h_path, @ins) = split_config_file_spec ($spec);
4167 my $config_h_dir = dirname ($config_h_path);
4169 # If the header is in the current directory we want to build
4170 # the header here. Otherwise, if we're at the topmost
4171 # directory and the header's directory doesn't have a
4172 # Makefile, then we also want to build the header.
4173 if ($relative_dir eq $config_h_dir
4174 || ($relative_dir eq '.' && ! &is_make_dir ($config_h_dir)))
4176 my ($cn_sans_dir, $stamp_dir);
4177 if ($relative_dir eq $config_h_dir)
4179 $cn_sans_dir = basename ($config_h_path);
4184 $cn_sans_dir = $config_h_path;
4185 if ($config_h_dir eq '.')
4191 $stamp_dir = $config_h_dir . '/';
4195 # This will also distribute all inputs.
4196 @ins = rewrite_inputs_into_dependencies ($config_h_path, @ins);
4198 # Cannot define rebuild rules for filenames with shell variables.
4199 next if (substitute_ac_subst_variables $config_h_path) =~ /\$/;
4201 # Header defined in this directory.
4203 if (-f $config_h_path . '.top')
4205 push (@files, "$cn_sans_dir.top");
4207 if (-f $config_h_path . '.bot')
4209 push (@files, "$cn_sans_dir.bot");
4212 push_dist_common (@files);
4214 # For now, acconfig.h can only appear in the top srcdir.
4215 if (-f 'acconfig.h')
4217 push (@files, '$(top_srcdir)/acconfig.h');
4220 my $stamp = "${stamp_dir}stamp-h${hdr_index}";
4222 file_contents ('remake-hdr',
4223 new Automake::Location,
4225 CONFIG_H => $cn_sans_dir,
4226 CONFIG_HIN => $ins[0],
4227 CONFIG_H_DEPS => "@ins",
4228 CONFIG_H_PATH => $config_h_path,
4231 push @distclean_config, $cn_sans_dir, $stamp;
4235 $output_rules .= file_contents ('clean-hdr',
4236 new Automake::Location,
4237 FILES => "@distclean_config")
4238 if @distclean_config;
4240 # Distribute and define mkinstalldirs only if it is already present
4241 # in the package, for backward compatibility (some people may still
4242 # use $(mkinstalldirs)).
4243 my $mkidpath = "$config_aux_dir/mkinstalldirs";
4246 # Use require_file so that any existing script gets updated
4247 # by --force-missing.
4248 require_conf_file ($mkidpath, FOREIGN, 'mkinstalldirs');
4249 define_variable ('mkinstalldirs',
4250 "\$(SHELL) $am_config_aux_dir/mkinstalldirs", INTERNAL);
4254 # Use $(install_sh), not $(MKDIR_P) because the latter requires
4255 # at least one argument, and $(mkinstalldirs) used to work
4256 # even without arguments (e.g. $(mkinstalldirs) $(conditional_dir)).
4257 define_variable ('mkinstalldirs', '$(install_sh) -d', INTERNAL);
4260 reject_var ('CONFIG_HEADER',
4261 "`CONFIG_HEADER' is an anachronism; now determined "
4262 . "automatically\nfrom `$configure_ac'");
4265 foreach my $spec (@config_headers)
4267 my ($out, @ins) = split_config_file_spec ($spec);
4268 # Generate CONFIG_HEADER define.
4269 if ($relative_dir eq dirname ($out))
4271 push @config_h, basename ($out);
4275 push @config_h, "\$(top_builddir)/$out";
4278 define_variable ("CONFIG_HEADER", "@config_h", INTERNAL)
4281 # Now look for other files in this directory which must be remade
4282 # by config.status, and generate rules for them.
4283 my @actual_other_files = ();
4284 # These get cleaned only in a VPATH build.
4285 my @actual_other_vpath_files = ();
4286 foreach my $lfile (@other_input_files)
4290 if ($lfile =~ /^([^:]*):(.*)$/)
4292 # This is the ":" syntax of AC_OUTPUT.
4294 @inputs = split (':', $2);
4300 @inputs = $file . '.in';
4303 # Automake files should not be stored in here, but in %MAKE_LIST.
4304 prog_error ("$lfile in \@other_input_files\n"
4305 . "\@other_input_files = (@other_input_files)")
4306 if -f $file . '.am';
4308 my $local = basename ($file);
4310 # We skip files that aren't in this directory. However, if
4311 # the file's directory does not have a Makefile, and we are
4312 # currently doing `.', then we create a rule to rebuild the
4313 # file in the subdir.
4314 my $fd = dirname ($file);
4315 if ($fd ne $relative_dir)
4317 if ($relative_dir eq '.' && ! &is_make_dir ($fd))
4327 my @rewritten_inputs = rewrite_inputs_into_dependencies ($file, @inputs);
4329 # Cannot output rules for shell variables.
4330 next if (substitute_ac_subst_variables $local) =~ /\$/;
4333 my $cond = $ac_config_files_condition{$lfile};
4336 $condstr = $cond->subst_string;
4337 Automake::Rule::define ($local, $configure_ac, RULE_AUTOMAKE, $cond,
4338 $ac_config_files_location{$file});
4340 $output_rules .= ($condstr . $local . ': '
4341 . '$(top_builddir)/config.status '
4342 . "@rewritten_inputs\n"
4344 . 'cd $(top_builddir) && '
4345 . '$(SHELL) ./config.status '
4346 . ($relative_dir eq '.' ? '' : '$(subdir)/')
4349 push (@actual_other_files, $local);
4352 # For links we should clean destinations and distribute sources.
4353 foreach my $spec (@config_links)
4355 my ($link, $file) = split /:/, $spec;
4356 # Some people do AC_CONFIG_LINKS($computed). We only handle
4357 # the DEST:SRC form.
4359 my $where = $ac_config_files_location{$link};
4361 # Skip destinations that contain shell variables.
4362 if ((substitute_ac_subst_variables $link) !~ /\$/)
4364 # We skip links that aren't in this directory. However, if
4365 # the link's directory does not have a Makefile, and we are
4366 # currently doing `.', then we add the link to CONFIG_CLEAN_FILES
4367 # in `.'s Makefile.in.
4368 my $local = basename ($link);
4369 my $fd = dirname ($link);
4370 if ($fd ne $relative_dir)
4372 if ($relative_dir eq '.' && ! &is_make_dir ($fd))
4383 push @actual_other_files, $local if $local;
4387 push @actual_other_vpath_files, $local if $local;
4391 # Do not process sources that contain shell variables.
4392 if ((substitute_ac_subst_variables $file) !~ /\$/)
4394 my $fd = dirname ($file);
4396 # We distribute files that are in this directory.
4397 # At the top-level (`.') we also distribute files whose
4398 # directory does not have a Makefile.
4399 if (($fd eq $relative_dir)
4400 || ($relative_dir eq '.' && ! &is_make_dir ($fd)))
4402 # The following will distribute $file as a side-effect when
4403 # it is appropriate (i.e., when $file is not already an output).
4404 # We do not need the result, just the side-effect.
4405 rewrite_inputs_into_dependencies ($link, $file);
4410 # These files get removed by "make distclean".
4411 define_pretty_variable ('CONFIG_CLEAN_FILES', TRUE, INTERNAL,
4412 @actual_other_files);
4413 define_pretty_variable ('CONFIG_CLEAN_VPATH_FILES', TRUE, INTERNAL,
4414 @actual_other_vpath_files);
4420 my @r = &am_install_var ('-defaultdist', 'header', 'HEADERS', 'include',
4421 'oldinclude', 'pkginclude',
4425 next unless $_->[1] =~ /\..*$/;
4426 &saw_extension ($&);
4432 return if ! $seen_gettext || $relative_dir ne '.';
4434 my $subdirs = var 'SUBDIRS';
4438 err_ac "AM_GNU_GETTEXT used but SUBDIRS not defined";
4442 # Perform some sanity checks to help users get the right setup.
4443 # We disable these tests when po/ doesn't exist in order not to disallow
4444 # unusual gettext setups.
4449 # | 1) If a package doesn't have a directory po/ at top level, it
4450 # | will likely have multiple po/ directories in subpackages.
4452 # | 2) It is useful to warn for the absence of intl/ if AM_GNU_GETTEXT
4453 # | is used without 'external'. It is also useful to warn for the
4454 # | presence of intl/ if AM_GNU_GETTEXT([external]) is used. Both
4455 # | warnings apply only to the usual layout of packages, therefore
4456 # | they should both be disabled if no po/ directory is found at
4461 my @subdirs = $subdirs->value_as_list_recursive;
4463 msg_var ('syntax', $subdirs,
4464 "AM_GNU_GETTEXT used but `po' not in SUBDIRS")
4465 if ! grep ($_ eq 'po', @subdirs);
4467 # intl/ is not required when AM_GNU_GETTEXT is called with the
4468 # `external' option and AM_GNU_GETTEXT_INTL_SUBDIR is not called.
4469 msg_var ('syntax', $subdirs,
4470 "AM_GNU_GETTEXT used but `intl' not in SUBDIRS")
4471 if (! ($seen_gettext_external && ! $seen_gettext_intl)
4472 && ! grep ($_ eq 'intl', @subdirs));
4474 # intl/ should not be used with AM_GNU_GETTEXT([external]), except
4475 # if AM_GNU_GETTEXT_INTL_SUBDIR is called.
4476 msg_var ('syntax', $subdirs,
4477 "`intl' should not be in SUBDIRS when "
4478 . "AM_GNU_GETTEXT([external]) is used")
4479 if ($seen_gettext_external && ! $seen_gettext_intl
4480 && grep ($_ eq 'intl', @subdirs));
4483 require_file ($ac_gettext_location, GNU, 'ABOUT-NLS');
4486 # Handle footer elements.
4489 reject_rule ('.SUFFIXES',
4490 "use variable `SUFFIXES', not target `.SUFFIXES'");
4492 # Note: AIX 4.1 /bin/make will fail if any suffix rule appears
4493 # before .SUFFIXES. So we make sure that .SUFFIXES appears before
4494 # anything else, by sticking it right after the default: target.
4495 $output_header .= ".SUFFIXES:\n";
4496 my $suffixes = var 'SUFFIXES';
4497 my @suffixes = Automake::Rule::suffixes;
4498 if (@suffixes || $suffixes)
4500 # Make sure SUFFIXES has unique elements. Sort them to ensure
4501 # the output remains consistent. However, $(SUFFIXES) is
4502 # always at the start of the list, unsorted. This is done
4503 # because make will choose rules depending on the ordering of
4504 # suffixes, and this lets the user have some control. Push
4505 # actual suffixes, and not $(SUFFIXES). Some versions of make
4506 # do not like variable substitutions on the .SUFFIXES line.
4507 my @user_suffixes = ($suffixes
4508 ? $suffixes->value_as_list_recursive : ());
4510 my %suffixes = map { $_ => 1 } @suffixes;
4511 delete @suffixes{@user_suffixes};
4513 $output_header .= (".SUFFIXES: "
4514 . join (' ', @user_suffixes, sort keys %suffixes)
4518 $output_trailer .= file_contents ('footer', new Automake::Location);
4522 # Generate `make install' rules.
4523 sub handle_install ()
4525 $output_rules .= &file_contents
4527 new Automake::Location,
4528 maybe_BUILT_SOURCES => (set_seen ('BUILT_SOURCES')
4529 ? (" \$(BUILT_SOURCES)\n"
4530 . "\t\$(MAKE) \$(AM_MAKEFLAGS)")
4532 'installdirs-local' => (user_phony_rule 'installdirs-local'
4533 ? ' installdirs-local' : ''),
4534 am__installdirs => variable_value ('am__installdirs') || '');
4538 # Deal with all and all-am.
4541 my ($makefile) = @_;
4545 # Put this at the beginning for the sake of non-GNU makes. This
4546 # is still wrong if these makes can run parallel jobs. But it is
4548 unshift (@all, basename ($makefile));
4550 foreach my $spec (@config_headers)
4552 my ($out, @ins) = split_config_file_spec ($spec);
4553 push (@all, basename ($out))
4554 if dirname ($out) eq $relative_dir;
4557 # Install `all' hooks.
4558 push (@all, "all-local")
4559 if user_phony_rule "all-local";
4561 &pretty_print_rule ("all-am:", "\t\t", @all);
4562 &depend ('.PHONY', 'all-am', 'all');
4567 my @local_headers = ();
4568 push @local_headers, '$(BUILT_SOURCES)'
4569 if var ('BUILT_SOURCES');
4570 foreach my $spec (@config_headers)
4572 my ($out, @ins) = split_config_file_spec ($spec);
4573 push @local_headers, basename ($out)
4574 if dirname ($out) eq $relative_dir;
4579 # We need to make sure config.h is built before we recurse.
4580 # We also want to make sure that built sources are built
4581 # before any ordinary `all' targets are run. We can't do this
4582 # by changing the order of dependencies to the "all" because
4583 # that breaks when using parallel makes. Instead we handle
4584 # things explicitly.
4585 $output_all .= ("all: @local_headers"
4587 . '$(MAKE) $(AM_MAKEFLAGS) '
4588 . (var ('SUBDIRS') ? 'all-recursive' : 'all-am')
4590 depend ('.MAKE', 'all');
4594 $output_all .= "all: " . (var ('SUBDIRS')
4595 ? 'all-recursive' : 'all-am') . "\n\n";
4600 # &do_check_merge_target ()
4601 # -------------------------
4602 # Handle check merge target specially.
4603 sub do_check_merge_target ()
4605 # Include user-defined local form of target.
4606 push @check_tests, 'check-local'
4607 if user_phony_rule 'check-local';
4609 # In --cygnus mode, check doesn't depend on all.
4610 if (option 'cygnus')
4612 # Just run the local check rules.
4613 pretty_print_rule ('check-am:', "\t\t", @check);
4617 # The check target must depend on the local equivalent of
4618 # `all', to ensure all the primary targets are built. Then it
4619 # must build the local check rules.
4620 $output_rules .= "check-am: all-am\n";
4623 pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t ",
4625 depend ('.MAKE', 'check-am');
4630 pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t ",
4632 depend ('.MAKE', 'check-am');
4635 depend '.PHONY', 'check', 'check-am';
4636 # Handle recursion. We have to honor BUILT_SOURCES like for `all:'.
4637 $output_rules .= ("check: "
4638 . (var ('BUILT_SOURCES')
4639 ? "\$(BUILT_SOURCES)\n\t\$(MAKE) \$(AM_MAKEFLAGS) "
4641 . (var ('SUBDIRS') ? 'check-recursive' : 'check-am')
4643 depend ('.MAKE', 'check')
4644 if var ('BUILT_SOURCES');
4647 # handle_clean ($MAKEFILE)
4648 # ------------------------
4649 # Handle all 'clean' targets.
4650 sub handle_clean ($)
4652 my ($makefile) = @_;
4654 # Clean the files listed in user variables if they exist.
4655 $clean_files{'$(MOSTLYCLEANFILES)'} = MOSTLY_CLEAN
4656 if var ('MOSTLYCLEANFILES');
4657 $clean_files{'$(CLEANFILES)'} = CLEAN
4658 if var ('CLEANFILES');
4659 $clean_files{'$(DISTCLEANFILES)'} = DIST_CLEAN
4660 if var ('DISTCLEANFILES');
4661 $clean_files{'$(MAINTAINERCLEANFILES)'} = MAINTAINER_CLEAN
4662 if var ('MAINTAINERCLEANFILES');
4664 # Built sources are automatically removed by maintainer-clean.
4665 $clean_files{'$(BUILT_SOURCES)'} = MAINTAINER_CLEAN
4666 if var ('BUILT_SOURCES');
4668 # Compute a list of "rm"s to run for each target.
4669 my %rms = (MOSTLY_CLEAN, [],
4672 MAINTAINER_CLEAN, []);
4674 foreach my $file (keys %clean_files)
4676 my $when = $clean_files{$file};
4677 prog_error 'invalid entry in %clean_files'
4678 unless exists $rms{$when};
4680 my $rm = "rm -f $file";
4681 # If file is a variable, make sure when don't call `rm -f' without args.
4682 $rm ="test -z \"$file\" || $rm"
4683 if ($file =~ /^\s*\$(\(.*\)|\{.*\})\s*$/);
4685 push @{$rms{$when}}, "\t-$rm\n";
4688 $output_rules .= &file_contents
4690 new Automake::Location,
4691 MOSTLYCLEAN_RMS => join ('', sort @{$rms{&MOSTLY_CLEAN}}),
4692 CLEAN_RMS => join ('', sort @{$rms{&CLEAN}}),
4693 DISTCLEAN_RMS => join ('', sort @{$rms{&DIST_CLEAN}}),
4694 MAINTAINER_CLEAN_RMS => join ('', sort @{$rms{&MAINTAINER_CLEAN}}),
4695 MAKEFILE => basename $makefile,
4700 # &target_cmp ($A, $B)
4701 # --------------------
4702 # Subroutine for &handle_factored_dependencies to let `.PHONY' and
4703 # other `.TARGETS' be last.
4706 return 0 if $a eq $b;
4708 my $a1 = substr ($a, 0, 1);
4709 my $b1 = substr ($b, 0, 1);
4712 return -1 if $b1 eq '.';
4713 return 1 if $a1 eq '.';
4719 # &handle_factored_dependencies ()
4720 # --------------------------------
4721 # Handle everything related to gathered targets.
4722 sub handle_factored_dependencies
4725 foreach my $utarg ('uninstall-data-local', 'uninstall-data-hook',
4726 'uninstall-exec-local', 'uninstall-exec-hook',
4727 'uninstall-dvi-local',
4728 'uninstall-html-local',
4729 'uninstall-info-local',
4730 'uninstall-pdf-local',
4731 'uninstall-ps-local')
4735 reject_rule ($utarg, "use `$x', not `$utarg'");
4738 reject_rule ('install-local',
4739 "use `install-data-local' or `install-exec-local', "
4740 . "not `install-local'");
4742 reject_rule ('install-hook',
4743 "use `install-data-hook' or `install-exec-hook', "
4744 . "not `install-hook'");
4746 # Install the -local hooks.
4747 foreach (keys %dependencies)
4749 # Hooks are installed on the -am targets.
4751 depend ("$_-am", "$_-local")
4752 if user_phony_rule "$_-local";
4755 # Install the -hook hooks.
4756 # FIXME: Why not be as liberal as we are with -local hooks?
4757 foreach ('install-exec', 'install-data', 'uninstall')
4759 if (user_phony_rule "$_-hook")
4761 depend ('.MAKE', "$_-am");
4762 register_action("$_-am",
4763 ("\t\@\$(NORMAL_INSTALL)\n"
4764 . "\t\$(MAKE) \$(AM_MAKEFLAGS) $_-hook"));
4768 # All the required targets are phony.
4769 depend ('.PHONY', keys %required_targets);
4771 # Actually output gathered targets.
4772 foreach (sort target_cmp keys %dependencies)
4774 # If there is nothing about this guy, skip it.
4776 unless (@{$dependencies{$_}}
4778 || $required_targets{$_});
4780 # Define gathered targets in undefined conditions.
4781 # FIXME: Right now we must handle .PHONY as an exception,
4782 # because people write things like
4783 # .PHONY: myphonytarget
4784 # to append dependencies. This would not work if Automake
4785 # refrained from defining its own .PHONY target as it does
4786 # with other overridden targets.
4787 # Likewise for `.MAKE'.
4788 my @undefined_conds = (TRUE,);
4789 if ($_ ne '.PHONY' && $_ ne '.MAKE')
4792 Automake::Rule::define ($_, 'internal',
4793 RULE_AUTOMAKE, TRUE, INTERNAL);
4795 my @uniq_deps = uniq (sort @{$dependencies{$_}});
4796 foreach my $cond (@undefined_conds)
4798 my $condstr = $cond->subst_string;
4799 &pretty_print_rule ("$condstr$_:", "$condstr\t", @uniq_deps);
4800 $output_rules .= $actions{$_} if defined $actions{$_};
4801 $output_rules .= "\n";
4807 # &handle_tests_dejagnu ()
4808 # ------------------------
4809 sub handle_tests_dejagnu
4811 push (@check_tests, 'check-DEJAGNU');
4812 $output_rules .= file_contents ('dejagnu', new Automake::Location);
4815 sub handle_per_suffix_test
4817 my ($test_suffix, %transform) = @_;
4818 my ($pfx, $generic, $parallel_tests_option, $am_exeext);
4819 prog_error ("called with 'parallel-tests' option not set")
4820 unless $parallel_tests_option = option 'parallel-tests';
4821 if ($test_suffix eq '')
4825 $am_exeext = 'FALSE';
4829 prog_error ("test suffix `$test_suffix' lacks leading dot")
4830 unless $test_suffix =~ m/^\.(.*)/;
4831 $pfx = uc ($1) . '_';
4833 $am_exeext = exists $configure_vars{'EXEEXT'} ? 'am__EXEEXT'
4836 # The "test driver" program, deputed to handle tests protocol used by
4837 # test scripts. By default, it's assumed that no protocol is used,
4838 # so we fall back to the old "parallel-tests" behaviour, implemented
4839 # by the `test-driver' auxiliary script.
4840 if (! var "${pfx}LOG_DRIVER")
4842 require_conf_file ($parallel_tests_option->{position}, FOREIGN,
4844 define_variable ("${pfx}LOG_DRIVER",
4845 "\$(SHELL) $am_config_aux_dir/test-driver",
4848 my $driver = '$(' . $pfx . 'LOG_DRIVER)';
4849 my $driver_flags = '$(AM_' . $pfx . 'LOG_DRIVER_FLAGS)'
4850 . ' $(' . $pfx . 'LOG_DRIVER_FLAGS)';
4851 my $compile = "${pfx}LOG_COMPILE";
4852 define_variable ($compile,
4853 '$(' . $pfx . 'LOG_COMPILER)'
4854 . ' $(AM_' . $pfx . 'LOG_FLAGS)'
4855 . ' $(' . $pfx . 'LOG_FLAGS)',
4857 $output_rules .= file_contents ('check2', new Automake::Location,
4858 GENERIC => $generic,
4860 DRIVER_FLAGS => $driver_flags,
4861 COMPILE => '$(' . $compile . ')',
4862 EXT => $test_suffix,
4863 am__EXEEXT => $am_exeext,
4867 # is_valid_test_extension ($EXT)
4868 # ------------------------------
4869 # Return true if $EXT can appear in $(TEST_EXTENSIONS), return false
4871 sub is_valid_test_extension ($)
4875 if ($ext =~ /^\.[a-zA-Z_][a-zA-Z0-9_]*$/);
4877 if (exists $configure_vars{'EXEEXT'} && $ext eq subst ('EXEEXT'));
4881 # Handle TESTS variable and other checks.
4884 if (option 'dejagnu')
4886 &handle_tests_dejagnu;
4890 foreach my $c ('DEJATOOL', 'RUNTEST', 'RUNTESTFLAGS')
4892 reject_var ($c, "`$c' defined but `dejagnu' not in "
4893 . "`AUTOMAKE_OPTIONS'");
4899 push (@check_tests, 'check-TESTS');
4900 $output_rules .= &file_contents ('check', new Automake::Location,
4901 COLOR => !! option 'color-tests',
4902 PARALLEL_TESTS => !! option 'parallel-tests');
4904 # Tests that are known programs should have $(EXEEXT) appended.
4905 # For matching purposes, we need to adjust XFAIL_TESTS as well.
4906 append_exeext { exists $known_programs{$_[0]} } 'TESTS';
4907 append_exeext { exists $known_programs{$_[0]} } 'XFAIL_TESTS'
4908 if (var ('XFAIL_TESTS'));
4910 if (my $parallel_tests = option 'parallel-tests')
4912 define_variable ('TEST_SUITE_LOG', 'test-suite.log', INTERNAL);
4913 define_variable ('TEST_SUITE_HTML', '$(TEST_SUITE_LOG:.log=.html)', INTERNAL);
4916 my $handle_exeext = exists $configure_vars{'EXEEXT'};
4919 $at_exeext = subst ('EXEEXT');
4920 $suff = $at_exeext . ' ' . $suff;
4922 if (! var 'TEST_EXTENSIONS')
4924 define_variable ('TEST_EXTENSIONS', $suff, INTERNAL);
4926 my $var = var 'TEST_EXTENSIONS';
4927 # Currently, we are not able to deal with conditional contents
4928 # in TEST_EXTENSIONS.
4929 if ($var->has_conditional_contents)
4931 msg_var 'unsupported', $var,
4932 "`TEST_EXTENSIONS' cannot have conditional contents";
4934 my @test_suffixes = $var->value_as_list_recursive;
4935 if ((my @invalid_test_suffixes =
4936 grep { !is_valid_test_extension $_ } @test_suffixes) > 0)
4938 error $var->rdef (TRUE)->location,
4939 "invalid test extensions: @invalid_test_suffixes";
4941 @test_suffixes = grep { is_valid_test_extension $_ } @test_suffixes;
4944 unshift (@test_suffixes, $at_exeext)
4945 unless $test_suffixes[0] eq $at_exeext;
4947 unshift (@test_suffixes, '');
4949 transform_variable_recursively
4950 ('TESTS', 'TEST_LOGS', 'am__testlogs', 1, INTERNAL,
4952 my ($subvar, $val, $cond, $full_cond) = @_;
4955 if $val =~ /^\@.*\@$/;
4956 $obj =~ s/\$\(EXEEXT\)$//o;
4958 if ($val =~ /(\$\((top_)?srcdir\))\//o)
4960 msg ('error', $subvar->rdef ($cond)->location,
4961 "parallel-tests: using `$1' in TESTS is currently broken: `$val'");
4964 foreach my $test_suffix (@test_suffixes)
4967 if $test_suffix eq $at_exeext || $test_suffix eq '';
4968 return substr ($obj, 0, length ($obj) - length ($test_suffix)) . '.log'
4969 if substr ($obj, - length ($test_suffix)) eq $test_suffix;
4973 handle_per_suffix_test ('',
4983 my $last_suffix = $test_suffixes[$#test_suffixes];
4985 foreach my $test_suffix (@test_suffixes)
4987 if ($test_suffix eq $last_suffix)
4993 $cur = 'am__test_logs' . $nhelper;
4995 define_variable ($cur,
4996 '$(' . $prev . ':' . $test_suffix . $post . '=.log)', INTERNAL);
5000 if ($test_suffix ne $at_exeext && $test_suffix ne '')
5002 handle_per_suffix_test ($test_suffix,
5008 $clean_files{'$(TEST_LOGS)'} = MOSTLY_CLEAN;
5009 $clean_files{'$(TEST_LOGS:.log=.trs)'} = MOSTLY_CLEAN;
5010 $clean_files{'$(TEST_SUITE_LOG)'} = MOSTLY_CLEAN;
5011 $clean_files{'$(TEST_SUITE_HTML)'} = MOSTLY_CLEAN;
5016 # Handle Emacs Lisp.
5017 sub handle_emacs_lisp
5019 my @elfiles = &am_install_var ('-candist', 'lisp', 'LISP',
5022 return if ! @elfiles;
5024 define_pretty_variable ('am__ELFILES', TRUE, INTERNAL,
5025 map { $_->[1] } @elfiles);
5026 define_pretty_variable ('am__ELCFILES', TRUE, INTERNAL,
5027 '$(am__ELFILES:.el=.elc)');
5028 # This one can be overridden by users.
5029 define_pretty_variable ('ELCFILES', TRUE, INTERNAL, '$(LISP:.el=.elc)');
5031 push @all, '$(ELCFILES)';
5033 require_variables ($elfiles[0][0], "Emacs Lisp sources seen", TRUE,
5034 'EMACS', 'lispdir');
5035 require_conf_file ($elfiles[0][0], FOREIGN, 'elisp-comp');
5036 &define_variable ('elisp_comp', "$am_config_aux_dir/elisp-comp", INTERNAL);
5042 my @pyfiles = &am_install_var ('-defaultdist', 'python', 'PYTHON',
5044 return if ! @pyfiles;
5046 require_variables ($pyfiles[0][0], "Python sources seen", TRUE, 'PYTHON');
5047 require_conf_file ($pyfiles[0][0], FOREIGN, 'py-compile');
5048 &define_variable ('py_compile', "$am_config_aux_dir/py-compile", INTERNAL);
5054 my @sourcelist = &am_install_var ('-candist',
5057 return if ! @sourcelist;
5059 my @prefixes = am_primary_prefixes ('JAVA', 1,
5063 my @java_sources = ();
5064 foreach my $prefix (@prefixes)
5066 (my $curs = $prefix) =~ s/^(?:nobase_)?(?:dist_|nodist_)?//;
5069 if $curs eq 'EXTRA';
5071 push @java_sources, '$(' . $prefix . '_JAVA' . ')';
5075 err_var "${curs}_JAVA", "multiple _JAVA primaries in use"
5076 unless $curs eq $dir;
5082 define_pretty_variable ('am__java_sources', TRUE, INTERNAL,
5085 if ($dir eq 'check')
5087 push (@check, "class$dir.stamp");
5091 push (@all, "class$dir.stamp");
5096 # Handle some of the minor options.
5097 sub handle_minor_options
5099 if (option 'readme-alpha')
5101 if ($relative_dir eq '.')
5103 if ($package_version !~ /^$GNITS_VERSION_PATTERN$/)
5105 msg ('error-gnits', $package_version_location,
5106 "version `$package_version' doesn't follow " .
5109 if (defined $1 && -f 'README-alpha')
5111 # This means we have an alpha release. See
5112 # GNITS_VERSION_PATTERN for details.
5113 push_dist_common ('README-alpha');
5119 ################################################################
5121 # ($OUTPUT, @INPUTS)
5122 # &split_config_file_spec ($SPEC)
5123 # -------------------------------
5124 # Decode the Autoconf syntax for config files (files, headers, links
5126 sub split_config_file_spec ($)
5129 my ($output, @inputs) = split (/:/, $spec);
5131 push @inputs, "$output.in"
5134 return ($output, @inputs);
5138 # locate_am (@POSSIBLE_SOURCES)
5139 # -----------------------------
5140 # AC_CONFIG_FILES allow specifications such as Makefile:top.in:mid.in:bot.in
5141 # This functions returns the first *.in file for which a *.am exists.
5142 # It returns undef otherwise.
5147 foreach my $file (@rest)
5149 if (($file =~ /^(.*)\.in$/) && -f "$1.am")
5160 # &scan_autoconf_config_files ($WHERE, $CONFIG-FILES)
5161 # ---------------------------------------------------
5162 # Study $CONFIG-FILES which is the first argument to AC_CONFIG_FILES
5164 sub scan_autoconf_config_files ($$)
5166 my ($where, $config_files) = @_;
5168 # Look at potential Makefile.am's.
5169 foreach (split ' ', $config_files)
5171 # Must skip empty string for Perl 4.
5172 next if $_ eq "\\" || $_ eq '';
5174 # Handle $local:$input syntax.
5175 my ($local, @rest) = split (/:/);
5176 @rest = ("$local.in",) unless @rest;
5177 msg ('portability', $where,
5178 "omit leading `./' from config file names such as `$local',"
5179 . "\nas not all make implementations treat `file' and `./file' equally")
5180 if ($local =~ /^\.\//);
5181 my $input = locate_am @rest;
5184 # We have a file that automake should generate.
5185 $make_list{$input} = join (':', ($local, @rest));
5189 # We have a file that automake should cause to be
5190 # rebuilt, but shouldn't generate itself.
5191 push (@other_input_files, $_);
5193 $ac_config_files_location{$local} = $where;
5194 $ac_config_files_condition{$local} =
5195 new Automake::Condition (@cond_stack)
5201 # &scan_autoconf_traces ($FILENAME)
5202 # ---------------------------------
5203 sub scan_autoconf_traces ($)
5205 my ($filename) = @_;
5207 # Macros to trace, with their minimal number of arguments.
5209 # IMPORTANT: If you add a macro here, you should also add this macro
5210 # ========= to Automake-preselection in autoconf/lib/autom4te.in.
5212 AC_CANONICAL_BUILD => 0,
5213 AC_CANONICAL_HOST => 0,
5214 AC_CANONICAL_TARGET => 0,
5215 AC_CONFIG_AUX_DIR => 1,
5216 AC_CONFIG_FILES => 1,
5217 AC_CONFIG_HEADERS => 1,
5218 AC_CONFIG_LIBOBJ_DIR => 1,
5219 AC_CONFIG_LINKS => 1,
5223 AC_REQUIRE_AUX_FILE => 1,
5224 AC_SUBST_TRACE => 1,
5225 AM_AUTOMAKE_VERSION => 1,
5226 AM_CONDITIONAL => 2,
5227 AM_ENABLE_MULTILIB => 0,
5228 AM_GNU_GETTEXT => 0,
5229 AM_GNU_GETTEXT_INTL_SUBDIR => 0,
5230 AM_INIT_AUTOMAKE => 0,
5231 AM_MAINTAINER_MODE => 0,
5233 AM_PROG_CC_C_O => 0,
5234 AM_SILENT_RULES => 0,
5235 _AM_SUBST_NOTMAKE => 1,
5238 _AM_COND_ENDIF => 1,
5239 LT_SUPPORTED_TAG => 1,
5240 _LT_AC_TAGCONFIG => 0,
5246 my $traces = ($ENV{AUTOCONF} || '@am_AUTOCONF@') . " ";
5248 # Use a separator unlikely to be used, not `:', the default, which
5249 # has a precise meaning for AC_CONFIG_FILES and so on.
5250 $traces .= join (' ',
5251 map { "--trace=$_" . ':\$f:\$l::\$d::\$n::\${::}%' }
5254 my $tracefh = new Automake::XFile ("$traces $filename |");
5255 verb "reading $traces";
5260 while ($_ = $tracefh->getline)
5263 my ($here, $depth, @args) = split (/::/);
5264 $where = new Automake::Location $here;
5265 my $macro = $args[0];
5267 prog_error ("unrequested trace `$macro'")
5268 unless exists $traced{$macro};
5270 # Skip and diagnose malformed calls.
5271 if ($#args < $traced{$macro})
5273 msg ('syntax', $where, "not enough arguments for $macro");
5277 # Alphabetical ordering please.
5278 if ($macro eq 'AC_CANONICAL_BUILD')
5280 if ($seen_canonical <= AC_CANONICAL_BUILD)
5282 $seen_canonical = AC_CANONICAL_BUILD;
5283 $canonical_location = $where;
5286 elsif ($macro eq 'AC_CANONICAL_HOST')
5288 if ($seen_canonical <= AC_CANONICAL_HOST)
5290 $seen_canonical = AC_CANONICAL_HOST;
5291 $canonical_location = $where;
5294 elsif ($macro eq 'AC_CANONICAL_TARGET')
5296 $seen_canonical = AC_CANONICAL_TARGET;
5297 $canonical_location = $where;
5299 elsif ($macro eq 'AC_CONFIG_AUX_DIR')
5301 if ($seen_init_automake)
5303 error ($where, "AC_CONFIG_AUX_DIR must be called before "
5304 . "AM_INIT_AUTOMAKE ...", partial => 1);
5305 error ($seen_init_automake, "... AM_INIT_AUTOMAKE called here");
5307 $config_aux_dir = $args[1];
5308 $config_aux_dir_set_in_configure_ac = 1;
5309 check_directory ($config_aux_dir, $where);
5311 elsif ($macro eq 'AC_CONFIG_FILES')
5313 # Look at potential Makefile.am's.
5314 scan_autoconf_config_files ($where, $args[1]);
5316 elsif ($macro eq 'AC_CONFIG_HEADERS')
5318 foreach my $spec (split (' ', $args[1]))
5320 my ($dest, @src) = split (':', $spec);
5321 $ac_config_files_location{$dest} = $where;
5322 push @config_headers, $spec;
5325 elsif ($macro eq 'AC_CONFIG_LIBOBJ_DIR')
5327 $config_libobj_dir = $args[1];
5328 check_directory ($config_libobj_dir, $where);
5330 elsif ($macro eq 'AC_CONFIG_LINKS')
5332 foreach my $spec (split (' ', $args[1]))
5334 my ($dest, $src) = split (':', $spec);
5335 $ac_config_files_location{$dest} = $where;
5336 push @config_links, $spec;
5339 elsif ($macro eq 'AC_FC_SRCEXT')
5341 my $suffix = $args[1];
5342 # These flags are used as %SOURCEFLAG% in depend2.am,
5343 # where the trailing space is important.
5344 $sourceflags{'.' . $suffix} = '$(FCFLAGS_' . $suffix . ') '
5345 if ($suffix eq 'f90' || $suffix eq 'f95' || $suffix eq 'f03' || $suffix eq 'f08');
5347 elsif ($macro eq 'AC_INIT')
5349 if (defined $args[2])
5351 $package_version = $args[2];
5352 $package_version_location = $where;
5355 elsif ($macro eq 'AC_LIBSOURCE')
5357 $libsources{$args[1]} = $here;
5359 elsif ($macro eq 'AC_REQUIRE_AUX_FILE')
5361 # Only remember the first time a file is required.
5362 $required_aux_file{$args[1]} = $where
5363 unless exists $required_aux_file{$args[1]};
5365 elsif ($macro eq 'AC_SUBST_TRACE')
5367 # Just check for alphanumeric in AC_SUBST_TRACE. If you do
5368 # AC_SUBST(5), then too bad.
5369 $configure_vars{$args[1]} = $where
5370 if $args[1] =~ /^\w+$/;
5372 elsif ($macro eq 'AM_AUTOMAKE_VERSION')
5375 "version mismatch. This is Automake $VERSION,\n" .
5376 "but the definition used by this AM_INIT_AUTOMAKE\n" .
5377 "comes from Automake $args[1]. You should recreate\n" .
5378 "aclocal.m4 with aclocal and run automake again.\n",
5379 # $? = 63 is used to indicate version mismatch to missing.
5381 if $VERSION ne $args[1];
5383 $seen_automake_version = 1;
5385 elsif ($macro eq 'AM_CONDITIONAL')
5387 $configure_cond{$args[1]} = $where;
5389 elsif ($macro eq 'AM_ENABLE_MULTILIB')
5391 $seen_multilib = $where;
5393 elsif ($macro eq 'AM_GNU_GETTEXT')
5395 $seen_gettext = $where;
5396 $ac_gettext_location = $where;
5397 $seen_gettext_external = grep ($_ eq 'external', @args);
5399 elsif ($macro eq 'AM_GNU_GETTEXT_INTL_SUBDIR')
5401 $seen_gettext_intl = $where;
5403 elsif ($macro eq 'AM_INIT_AUTOMAKE')
5405 $seen_init_automake = $where;
5406 if (defined $args[2])
5408 $package_version = $args[2];
5409 $package_version_location = $where;
5411 elsif (defined $args[1])
5413 my @opts = split (' ', $args[1]);
5414 @opts = map { { option => $_, where => $where } } @opts;
5415 exit $exit_code if process_global_option_list (@opts);
5418 elsif ($macro eq 'AM_MAINTAINER_MODE')
5420 $seen_maint_mode = $where;
5422 elsif ($macro eq 'AM_PROG_AR')
5426 elsif ($macro eq 'AM_PROG_CC_C_O')
5428 $seen_cc_c_o = $where;
5430 elsif ($macro eq 'AM_SILENT_RULES')
5432 set_global_option ('silent-rules', $where);
5434 elsif ($macro eq '_AM_COND_IF')
5436 cond_stack_if ('', $args[1], $where);
5437 error ($where, "missing m4 quoting, macro depth $depth")
5440 elsif ($macro eq '_AM_COND_ELSE')
5442 cond_stack_else ('!', $args[1], $where);
5443 error ($where, "missing m4 quoting, macro depth $depth")
5446 elsif ($macro eq '_AM_COND_ENDIF')
5448 cond_stack_endif (undef, undef, $where);
5449 error ($where, "missing m4 quoting, macro depth $depth")
5452 elsif ($macro eq '_AM_SUBST_NOTMAKE')
5454 $ignored_configure_vars{$args[1]} = $where;
5456 elsif ($macro eq 'm4_include'
5457 || $macro eq 'm4_sinclude'
5458 || $macro eq 'sinclude')
5460 # Skip missing `sinclude'd files.
5461 next if $macro ne 'm4_include' && ! -f $args[1];
5463 # Some modified versions of Autoconf don't use
5464 # frozen files. Consequently it's possible that we see all
5465 # m4_include's performed during Autoconf's startup.
5466 # Obviously we don't want to distribute Autoconf's files
5467 # so we skip absolute filenames here.
5468 push @configure_deps, '$(top_srcdir)/' . $args[1]
5469 unless $here =~ m,^(?:\w:)?[\\/],;
5470 # Keep track of the greatest timestamp.
5473 my $mtime = mtime $args[1];
5474 $configure_deps_greatest_timestamp = $mtime
5475 if $mtime > $configure_deps_greatest_timestamp;
5478 elsif ($macro eq 'LT_SUPPORTED_TAG')
5480 $libtool_tags{$args[1]} = 1;
5481 $libtool_new_api = 1;
5483 elsif ($macro eq '_LT_AC_TAGCONFIG')
5485 # _LT_AC_TAGCONFIG is an old macro present in Libtool 1.5.
5486 # We use it to detect whether tags are supported. Our
5487 # preferred interface is LT_SUPPORTED_TAG, but it was
5488 # introduced in Libtool 1.6.
5489 if (0 == keys %libtool_tags)
5491 # Hardcode the tags supported by Libtool 1.5.
5492 %libtool_tags = (CC => 1, CXX => 1, GCJ => 1, F77 => 1);
5497 error ($where, "condition stack not properly closed")
5504 # &scan_autoconf_files ()
5505 # -----------------------
5506 # Check whether we use `configure.ac' or `configure.in'.
5507 # Scan it (and possibly `aclocal.m4') for interesting things.
5508 # We must scan aclocal.m4 because there might be AC_SUBSTs and such there.
5509 sub scan_autoconf_files ()
5511 # Reinitialize libsources here. This isn't really necessary,
5512 # since we currently assume there is only one configure.ac. But
5513 # that won't always be the case.
5516 # Keep track of the youngest configure dependency.
5517 $configure_deps_greatest_timestamp = mtime $configure_ac;
5518 if (-e 'aclocal.m4')
5520 my $mtime = mtime 'aclocal.m4';
5521 $configure_deps_greatest_timestamp = $mtime
5522 if $mtime > $configure_deps_greatest_timestamp;
5525 scan_autoconf_traces ($configure_ac);
5527 @configure_input_files = sort keys %make_list;
5528 # Set input and output files if not specified by user.
5531 @input_files = @configure_input_files;
5532 %output_files = %make_list;
5536 if (! $seen_init_automake)
5538 err_ac ("no proper invocation of AM_INIT_AUTOMAKE was found.\nYou "
5539 . "should verify that $configure_ac invokes AM_INIT_AUTOMAKE,"
5540 . "\nthat aclocal.m4 is present in the top-level directory,\n"
5541 . "and that aclocal.m4 was recently regenerated "
5542 . "(using aclocal)");
5546 if (! $seen_automake_version)
5548 if (-f 'aclocal.m4')
5550 error ($seen_init_automake,
5551 "your implementation of AM_INIT_AUTOMAKE comes from " .
5552 "an\nold Automake version. You should recreate " .
5553 "aclocal.m4\nwith aclocal and run automake again",
5554 # $? = 63 is used to indicate version mismatch to missing.
5559 error ($seen_init_automake,
5560 "no proper implementation of AM_INIT_AUTOMAKE was " .
5561 "found,\nprobably because aclocal.m4 is missing.\n" .
5562 "You should run aclocal to create this file, then\n" .
5563 "run automake again");
5570 # Look for some files we need. Always check for these. This
5571 # check must be done for every run, even those where we are only
5572 # looking at a subdir Makefile. We must set relative_dir for
5573 # push_required_file to work.
5574 # Sort the files for stable verbose output.
5575 $relative_dir = '.';
5576 foreach my $file (sort keys %required_aux_file)
5578 require_conf_file ($required_aux_file{$file}->get, FOREIGN, $file)
5580 err_am "`install.sh' is an anachronism; use `install-sh' instead"
5581 if -f $config_aux_dir . '/install.sh';
5583 # Preserve dist_common for later.
5584 $configure_dist_common = variable_value ('DIST_COMMON') || '';
5588 ################################################################
5590 # Set up for Cygnus mode.
5593 my $cygnus = option 'cygnus';
5594 return unless $cygnus;
5596 set_strictness ('foreign');
5597 set_option ('no-installinfo', $cygnus);
5598 set_option ('no-dependencies', $cygnus);
5599 set_option ('no-dist', $cygnus);
5601 err_ac "`AM_MAINTAINER_MODE' required when --cygnus specified"
5602 if !$seen_maint_mode;
5605 # Do any extra checking for GNU standards.
5606 sub check_gnu_standards
5608 if ($relative_dir eq '.')
5610 # In top level (or only) directory.
5611 require_file ("$am_file.am", GNU,
5612 qw/INSTALL NEWS README AUTHORS ChangeLog/);
5614 # Accept one of these three licenses; default to COPYING.
5615 # Make sure we do not overwrite an existing license.
5617 foreach (qw /COPYING COPYING.LIB COPYING.LESSER/)
5625 require_file ("$am_file.am", GNU, 'COPYING')
5629 for my $opt ('no-installman', 'no-installinfo')
5631 msg ('error-gnu', option $opt,
5632 "option `$opt' disallowed by GNU standards")
5637 # Do any extra checking for GNITS standards.
5638 sub check_gnits_standards
5640 if ($relative_dir eq '.')
5642 # In top level (or only) directory.
5643 require_file ("$am_file.am", GNITS, 'THANKS');
5647 ################################################################
5649 # Functions to handle files of each language.
5651 # Each `lang_X_rewrite($DIRECTORY, $BASE, $EXT)' function follows a
5652 # simple formula: Return value is LANG_SUBDIR if the resulting object
5653 # file should be in a subdir if the source file is, LANG_PROCESS if
5654 # file is to be dealt with, LANG_IGNORE otherwise.
5656 # Much of the actual processing is handled in
5657 # handle_single_transform. These functions exist so that
5658 # auxiliary information can be recorded for a later cleanup pass.
5659 # Note that the calls to these functions are computed, so don't bother
5660 # searching for their precise names in the source.
5662 # This is just a convenience function that can be used to determine
5663 # when a subdir object should be used.
5666 return option 'subdir-objects' ? LANG_SUBDIR : LANG_PROCESS;
5669 # Rewrite a single C source file.
5672 my ($directory, $base, $ext, $obj, $have_per_exec_flags, $var) = @_;
5674 my $r = LANG_PROCESS;
5675 if (option 'subdir-objects')
5678 if ($directory && $directory ne '.')
5680 $base = $directory . '/' . $base;
5682 # libtool is always able to put the object at the proper place,
5683 # so we do not have to require AM_PROG_CC_C_O when building .lo files.
5684 msg_var ('portability', $var,
5685 "compiling `$base.c' in subdir requires "
5686 . "`AM_PROG_CC_C_O' in `$configure_ac'",
5687 uniq_scope => US_GLOBAL,
5688 uniq_part => 'AM_PROG_CC_C_O subdir')
5689 unless $seen_cc_c_o || $obj eq '.lo';
5694 && $have_per_exec_flags
5695 && ! option 'subdir-objects'
5698 msg_var ('portability',
5699 $var, "compiling `$base.c' with per-target flags requires "
5700 . "`AM_PROG_CC_C_O' in `$configure_ac'",
5701 uniq_scope => US_GLOBAL,
5702 uniq_part => 'AM_PROG_CC_C_O per-target')
5708 # Rewrite a single C++ source file.
5709 sub lang_cxx_rewrite
5711 return &lang_sub_obj;
5714 # Rewrite a single header file.
5715 sub lang_header_rewrite
5717 # Header files are simply ignored.
5721 # Rewrite a single Vala source file.
5722 sub lang_vala_rewrite
5724 my ($directory, $base, $ext) = @_;
5726 (my $newext = $ext) =~ s/vala$/c/;
5727 return (LANG_SUBDIR, $newext);
5730 # Rewrite a single yacc file.
5731 sub lang_yacc_rewrite
5733 my ($directory, $base, $ext) = @_;
5735 my $r = &lang_sub_obj;
5736 (my $newext = $ext) =~ tr/y/c/;
5737 return ($r, $newext);
5740 # Rewrite a single yacc++ file.
5741 sub lang_yaccxx_rewrite
5743 my ($directory, $base, $ext) = @_;
5745 my $r = &lang_sub_obj;
5746 (my $newext = $ext) =~ tr/y/c/;
5747 return ($r, $newext);
5750 # Rewrite a single lex file.
5751 sub lang_lex_rewrite
5753 my ($directory, $base, $ext) = @_;
5755 my $r = &lang_sub_obj;
5756 (my $newext = $ext) =~ tr/l/c/;
5757 return ($r, $newext);
5760 # Rewrite a single lex++ file.
5761 sub lang_lexxx_rewrite
5763 my ($directory, $base, $ext) = @_;
5765 my $r = &lang_sub_obj;
5766 (my $newext = $ext) =~ tr/l/c/;
5767 return ($r, $newext);
5770 # Rewrite a single assembly file.
5771 sub lang_asm_rewrite
5773 return &lang_sub_obj;
5776 # Rewrite a single preprocessed assembly file.
5777 sub lang_cppasm_rewrite
5779 return &lang_sub_obj;
5782 # Rewrite a single Fortran 77 file.
5783 sub lang_f77_rewrite
5785 return &lang_sub_obj;
5788 # Rewrite a single Fortran file.
5791 return &lang_sub_obj;
5794 # Rewrite a single preprocessed Fortran file.
5795 sub lang_ppfc_rewrite
5797 return &lang_sub_obj;
5800 # Rewrite a single preprocessed Fortran 77 file.
5801 sub lang_ppf77_rewrite
5803 return &lang_sub_obj;
5806 # Rewrite a single ratfor file.
5807 sub lang_ratfor_rewrite
5809 return &lang_sub_obj;
5812 # Rewrite a single Objective C file.
5813 sub lang_objc_rewrite
5815 return &lang_sub_obj;
5818 # Rewrite a single Unified Parallel C file.
5819 sub lang_upc_rewrite
5821 return &lang_sub_obj;
5824 # Rewrite a single Java file.
5825 sub lang_java_rewrite
5830 # The lang_X_finish functions are called after all source file
5831 # processing is done. Each should handle defining rules for the
5832 # language, etc. A finish function is only called if a source file of
5833 # the appropriate type has been seen.
5835 sub lang_vala_finish_target ($$)
5837 my ($self, $name) = @_;
5839 my $derived = canonicalize ($name);
5840 my $varname = $derived . '_SOURCES';
5841 my $var = var ($varname);
5845 foreach my $file ($var->value_as_list_recursive)
5847 $output_rules .= "\$(srcdir)/$file: \$(srcdir)/${derived}_vala.stamp\n"
5848 . "\t\@if test -f \$@; then :; else rm -f \$(srcdir)/${derived}_vala.stamp; fi\n"
5849 . "\t\@if test -f \$@; then :; else \\\n"
5850 . "\t \$(MAKE) \$(AM_MAKEFLAGS) \$(srcdir)/${derived}_vala.stamp; \\\n"
5852 if $file =~ s/(.*)\.vala$/$1.c/;
5856 # Add rebuild rules for generated header and vapi files
5857 my $flags = var ($derived . '_VALAFLAGS');
5861 foreach my $flag ($flags->value_as_list_recursive)
5863 if (grep (/$lastflag/, ('-H', '-h', '--header', '--internal-header',
5864 '--vapi', '--internal-vapi', '--gir')))
5866 my $headerfile = $flag;
5867 $output_rules .= "\$(srcdir)/$headerfile: \$(srcdir)/${derived}_vala.stamp\n"
5868 . "\t\@if test -f \$@; then :; else rm -f \$(srcdir)/${derived}_vala.stamp; fi\n"
5869 . "\t\@if test -f \$@; then :; else \\\n"
5870 . "\t \$(MAKE) \$(AM_MAKEFLAGS) \$(srcdir)/${derived}_vala.stamp; \\\n"
5873 # valac is not used when building from dist tarballs
5874 # distribute the generated files
5875 push_dist_common ($headerfile);
5876 $clean_files{$headerfile} = MAINTAINER_CLEAN;
5882 my $compile = $self->compile;
5884 # Rewrite each occurrence of `AM_VALAFLAGS' in the compile
5885 # rule into `${derived}_VALAFLAGS' if it exists.
5886 my $val = "${derived}_VALAFLAGS";
5887 $compile =~ s/\(AM_VALAFLAGS\)/\($val\)/
5890 # VALAFLAGS is a user variable (per GNU Standards),
5891 # it should not be overridden in the Makefile...
5892 check_user_variables ['VALAFLAGS'];
5894 my $dirname = dirname ($name);
5896 # Only generate C code, do not run C compiler
5899 my $verbose = verbose_flag ('VALAC');
5900 my $silent = silent_flag ();
5903 "\$(srcdir)/${derived}_vala.stamp: \$(${derived}_SOURCES)\n".
5904 "\t${verbose}\$(am__cd) \$(srcdir) && ${compile} \$(${derived}_SOURCES)\n".
5905 "\t${silent}touch \$@\n";
5907 push_dist_common ("${derived}_vala.stamp");
5909 $clean_files{"${derived}_vala.stamp"} = MAINTAINER_CLEAN;
5912 # Add output rules to invoke valac and create stamp file as a witness
5913 # to handle multiple outputs. This function is called after all source
5914 # file processing is done.
5915 sub lang_vala_finish
5919 foreach my $prog (keys %known_programs)
5921 lang_vala_finish_target ($self, $prog);
5924 while (my ($name) = each %known_libraries)
5926 lang_vala_finish_target ($self, $name);
5930 # The built .c files should be cleaned only on maintainer-clean
5931 # as the .c files are distributed. This function is called for each
5932 # .vala source file.
5933 sub lang_vala_target_hook
5935 my ($self, $aggregate, $output, $input, %transform) = @_;
5937 $clean_files{$output} = MAINTAINER_CLEAN;
5940 # This is a yacc helper which is called whenever we have decided to
5941 # compile a yacc file.
5942 sub lang_yacc_target_hook
5944 my ($self, $aggregate, $output, $input, %transform) = @_;
5946 # If some relevant *YFLAGS variable contains the `-d' flag, we'll
5947 # have to to generate special code.
5948 my $yflags_contains_minus_d = 0;
5950 foreach my $pfx ("", "${aggregate}_")
5952 my $yflagsvar = var ("${pfx}YFLAGS");
5953 next unless $yflagsvar;
5954 # We cannot work reliably with conditionally-defined YFLAGS.
5955 if ($yflagsvar->has_conditional_contents)
5957 msg_var ('unsupported', $yflagsvar,
5958 "`${pfx}YFLAGS' cannot have conditional contents");
5962 $yflags_contains_minus_d = 1
5963 if grep (/^-d$/, $yflagsvar->value_as_list_recursive);
5967 if ($yflags_contains_minus_d)
5969 (my $output_base = $output) =~ s/$KNOWN_EXTENSIONS_PATTERN$//;
5970 my $header = $output_base . '.h';
5972 # Found a `-d' that applies to the compilation of this file.
5973 # Add a dependency for the generated header file, and arrange
5974 # for that file to be included in the distribution.
5975 foreach my $cond (Automake::Rule::define (${header}, 'internal',
5976 RULE_AUTOMAKE, TRUE,
5979 my $condstr = $cond->subst_string;
5981 "$condstr${header}: $output\n"
5982 # Recover from removal of $header
5983 . "$condstr\t\@if test ! -f \$@; then rm -f $output; else :; fi\n"
5984 . "$condstr\t\@if test ! -f \$@; then \$(MAKE) \$(AM_MAKEFLAGS) $output; else :; fi\n";
5986 # Distribute the generated file, unless its .y source was
5987 # listed in a nodist_ variable. (&handle_source_transform
5988 # will set DIST_SOURCE.)
5989 &push_dist_common ($header)
5990 if $transform{'DIST_SOURCE'};
5992 # The GNU rules say that yacc/lex output files should be removed
5993 # by maintainer-clean. However, if the files are not distributed,
5994 # then we want to remove them with "make clean"; otherwise,
5995 # "make distcheck" will fail.
5996 $clean_files{$header} = $transform{'DIST_SOURCE'} ? MAINTAINER_CLEAN : CLEAN;
5998 # See the comment above for $HEADER.
5999 $clean_files{$output} = $transform{'DIST_SOURCE'} ? MAINTAINER_CLEAN : CLEAN;
6002 # This is a lex helper which is called whenever we have decided to
6003 # compile a lex file.
6004 sub lang_lex_target_hook
6006 my ($self, $aggregate, $output, $input) = @_;
6007 # If the files are built in the build directory, then we want to
6008 # remove them with `make clean'. If they are in srcdir they
6009 # shouldn't be touched. However, we can't determine this
6010 # statically, and the GNU rules say that yacc/lex output files
6011 # should be removed by maintainer-clean. So that's what we do.
6012 $clean_files{$output} = MAINTAINER_CLEAN;
6015 # This is a helper for both lex and yacc.
6016 sub yacc_lex_finish_helper
6018 return if defined $language_scratch{'lex-yacc-done'};
6019 $language_scratch{'lex-yacc-done'} = 1;
6021 # FIXME: for now, no line number.
6022 require_conf_file ($configure_ac, FOREIGN, 'ylwrap');
6023 &define_variable ('YLWRAP', "$am_config_aux_dir/ylwrap", INTERNAL);
6026 sub lang_yacc_finish
6028 return if defined $language_scratch{'yacc-done'};
6029 $language_scratch{'yacc-done'} = 1;
6031 reject_var 'YACCFLAGS', "`YACCFLAGS' obsolete; use `YFLAGS' instead";
6033 yacc_lex_finish_helper;
6039 return if defined $language_scratch{'lex-done'};
6040 $language_scratch{'lex-done'} = 1;
6042 yacc_lex_finish_helper;
6046 # Given a hash table of linker names, pick the name that has the most
6047 # precedence. This is lame, but something has to have global
6048 # knowledge in order to eliminate the conflict. Add more linkers as
6054 foreach my $l (qw(GCJLINK CXXLINK F77LINK FCLINK OBJCLINK UPCLINK))
6056 return $l if defined $linkers{$l};
6061 # Called to indicate that an extension was used.
6065 if (! defined $extension_seen{$ext})
6067 $extension_seen{$ext} = 1;
6071 ++$extension_seen{$ext};
6075 # Return the number of files seen for a given language. Knows about
6076 # special cases we care about. FIXME: this is hideous. We need
6077 # something that involves real language objects. For instance yacc
6078 # and yaccxx could both derive from a common yacc class which would
6079 # know about the strange ylwrap requirement. (Or better yet we could
6080 # just not support legacy yacc!)
6081 sub count_files_for_language
6086 if ($name eq 'yacc' || $name eq 'yaccxx')
6088 @names = ('yacc', 'yaccxx');
6090 elsif ($name eq 'lex' || $name eq 'lexxx')
6092 @names = ('lex', 'lexxx');
6100 foreach $name (@names)
6102 my $lang = $languages{$name};
6103 foreach my $ext (@{$lang->extensions})
6105 $r += $extension_seen{$ext}
6106 if defined $extension_seen{$ext};
6113 # Called to ask whether source files have been seen . If HEADERS is 1,
6114 # headers can be included.
6119 # count all the sources
6121 foreach my $val (values %extension_seen)
6128 $count -= count_files_for_language ('header');
6135 # register_language (%ATTRIBUTE)
6136 # ------------------------------
6137 # Register a single language.
6138 # Each %ATTRIBUTE is of the form ATTRIBUTE => VALUE.
6139 sub register_language (%)
6144 $option{'autodep'} = 'no'
6145 unless defined $option{'autodep'};
6146 $option{'linker'} = ''
6147 unless defined $option{'linker'};
6148 $option{'flags'} = []
6149 unless defined $option{'flags'};
6150 $option{'output_extensions'} = sub { return ( '.$(OBJEXT)', '.lo' ) }
6151 unless defined $option{'output_extensions'};
6152 $option{'nodist_specific'} = 0
6153 unless defined $option{'nodist_specific'};
6155 my $lang = new Language (%option);
6158 $extension_map{$_} = $lang->name foreach @{$lang->extensions};
6159 $languages{$lang->name} = $lang;
6160 my $link = $lang->linker;
6163 if (exists $link_languages{$link})
6165 prog_error ("`$link' has different definitions in "
6166 . $lang->name . " and " . $link_languages{$link}->name)
6167 if $lang->link ne $link_languages{$link}->link;
6171 $link_languages{$link} = $lang;
6175 # Update the pattern of known extensions.
6176 accept_extensions (@{$lang->extensions});
6178 # Upate the $suffix_rule map.
6179 foreach my $suffix (@{$lang->extensions})
6181 foreach my $dest (&{$lang->output_extensions} ($suffix))
6183 register_suffix_rule (INTERNAL, $suffix, $dest);
6188 # derive_suffix ($EXT, $OBJ)
6189 # --------------------------
6190 # This function is used to find a path from a user-specified suffix $EXT
6191 # to $OBJ or to some other suffix we recognize internally, e.g. `cc'.
6192 sub derive_suffix ($$)
6194 my ($source_ext, $obj) = @_;
6196 while (! $extension_map{$source_ext}
6197 && $source_ext ne $obj
6198 && exists $suffix_rules->{$source_ext}
6199 && exists $suffix_rules->{$source_ext}{$obj})
6201 $source_ext = $suffix_rules->{$source_ext}{$obj}[0];
6208 ################################################################
6210 # Pretty-print something and append to output_rules.
6211 sub pretty_print_rule
6213 $output_rules .= &makefile_wrap (@_);
6217 ################################################################
6220 ## -------------------------------- ##
6221 ## Handling the conditional stack. ##
6222 ## -------------------------------- ##
6226 # make_conditional_string ($NEGATE, $COND)
6227 # ----------------------------------------
6228 sub make_conditional_string ($$)
6230 my ($negate, $cond) = @_;
6231 $cond = "${cond}_TRUE"
6232 unless $cond =~ /^TRUE|FALSE$/;
6233 $cond = Automake::Condition::conditional_negate ($cond)
6239 my %_am_macro_for_cond =
6241 AMDEP => "one of the compiler tests\n"
6242 . " AC_PROG_CC, AC_PROG_CXX, AC_PROG_CXX, AC_PROG_OBJC,\n"
6243 . " AM_PROG_AS, AM_PROG_GCJ, AM_PROG_UPC",
6244 am__fastdepCC => 'AC_PROG_CC',
6245 am__fastdepCCAS => 'AM_PROG_AS',
6246 am__fastdepCXX => 'AC_PROG_CXX',
6247 am__fastdepGCJ => 'AM_PROG_GCJ',
6248 am__fastdepOBJC => 'AC_PROG_OBJC',
6249 am__fastdepUPC => 'AM_PROG_UPC'
6253 # cond_stack_if ($NEGATE, $COND, $WHERE)
6254 # --------------------------------------
6255 sub cond_stack_if ($$$)
6257 my ($negate, $cond, $where) = @_;
6259 if (! $configure_cond{$cond} && $cond !~ /^TRUE|FALSE$/)
6261 my $text = "$cond does not appear in AM_CONDITIONAL";
6262 my $scope = US_LOCAL;
6263 if (exists $_am_macro_for_cond{$cond})
6265 my $mac = $_am_macro_for_cond{$cond};
6266 $text .= "\n The usual way to define `$cond' is to add ";
6267 $text .= ($mac =~ / /) ? $mac : "`$mac'";
6268 $text .= "\n to `$configure_ac' and run `aclocal' and `autoconf' again";
6269 # These warnings appear in Automake files (depend2.am),
6270 # so there is no need to display them more than once:
6273 error $where, $text, uniq_scope => $scope;
6276 push (@cond_stack, make_conditional_string ($negate, $cond));
6278 return new Automake::Condition (@cond_stack);
6283 # cond_stack_else ($NEGATE, $COND, $WHERE)
6284 # ----------------------------------------
6285 sub cond_stack_else ($$$)
6287 my ($negate, $cond, $where) = @_;
6291 error $where, "else without if";
6295 $cond_stack[$#cond_stack] =
6296 Automake::Condition::conditional_negate ($cond_stack[$#cond_stack]);
6298 # If $COND is given, check against it.
6301 $cond = make_conditional_string ($negate, $cond);
6303 error ($where, "else reminder ($negate$cond) incompatible with "
6304 . "current conditional: $cond_stack[$#cond_stack]")
6305 if $cond_stack[$#cond_stack] ne $cond;
6308 return new Automake::Condition (@cond_stack);
6313 # cond_stack_endif ($NEGATE, $COND, $WHERE)
6314 # -----------------------------------------
6315 sub cond_stack_endif ($$$)
6317 my ($negate, $cond, $where) = @_;
6322 error $where, "endif without if";
6326 # If $COND is given, check against it.
6329 $cond = make_conditional_string ($negate, $cond);
6331 error ($where, "endif reminder ($negate$cond) incompatible with "
6332 . "current conditional: $cond_stack[$#cond_stack]")
6333 if $cond_stack[$#cond_stack] ne $cond;
6338 return new Automake::Condition (@cond_stack);
6345 ## ------------------------ ##
6346 ## Handling the variables. ##
6347 ## ------------------------ ##
6350 # &define_pretty_variable ($VAR, $COND, $WHERE, @VALUE)
6351 # -----------------------------------------------------
6352 # Like define_variable, but the value is a list, and the variable may
6353 # be defined conditionally. The second argument is the condition
6354 # under which the value should be defined; this should be the empty
6355 # string to define the variable unconditionally. The third argument
6356 # is a list holding the values to use for the variable. The value is
6357 # pretty printed in the output file.
6358 sub define_pretty_variable ($$$@)
6360 my ($var, $cond, $where, @value) = @_;
6362 if (! vardef ($var, $cond))
6364 Automake::Variable::define ($var, VAR_AUTOMAKE, '', $cond, "@value",
6365 '', $where, VAR_PRETTY);
6366 rvar ($var)->rdef ($cond)->set_seen;
6371 # define_variable ($VAR, $VALUE, $WHERE)
6372 # --------------------------------------
6373 # Define a new Automake Makefile variable VAR to VALUE, but only if
6374 # not already defined.
6375 sub define_variable ($$$)
6377 my ($var, $value, $where) = @_;
6378 define_pretty_variable ($var, TRUE, $where, $value);
6382 # define_files_variable ($VAR, \@BASENAME, $EXTENSION, $WHERE)
6383 # ------------------------------------------------------------
6384 # Define the $VAR which content is the list of file names composed of
6385 # a @BASENAME and the $EXTENSION.
6386 sub define_files_variable ($\@$$)
6388 my ($var, $basename, $extension, $where) = @_;
6389 define_variable ($var,
6390 join (' ', map { "$_.$extension" } @$basename),
6395 # Like define_variable, but define a variable to be the configure
6396 # substitution by the same name.
6397 sub define_configure_variable ($)
6400 # Some variables we do not want to output. For instance it
6401 # would be a bad idea to output `U = @U@` when `@U@` can be
6402 # substituted as `\`.
6403 my $pretty = exists $ignored_configure_vars{$var} ? VAR_SILENT : VAR_ASIS;
6404 Automake::Variable::define ($var, VAR_CONFIGURE, '', TRUE, subst $var,
6405 '', $configure_vars{$var}, $pretty);
6409 # define_compiler_variable ($LANG)
6410 # --------------------------------
6411 # Define a compiler variable. We also handle defining the `LT'
6412 # version of the command when using libtool.
6413 sub define_compiler_variable ($)
6417 my ($var, $value) = ($lang->compiler, $lang->compile);
6418 my $libtool_tag = '';
6419 $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
6420 if $lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag};
6421 &define_variable ($var, $value, INTERNAL);
6422 if (var ('LIBTOOL'))
6424 my $verbose = define_verbose_libtool ();
6425 &define_variable ("LT$var",
6426 "\$(LIBTOOL) $verbose $libtool_tag\$(AM_LIBTOOLFLAGS) "
6427 . "\$(LIBTOOLFLAGS) --mode=compile $value",
6430 define_verbose_tagvar ($lang->ccer || 'GEN');
6434 # define_linker_variable ($LANG)
6435 # ------------------------------
6436 # Define linker variables.
6437 sub define_linker_variable ($)
6441 my $libtool_tag = '';
6442 $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
6443 if $lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag};
6445 &define_variable ($lang->lder, $lang->ld, INTERNAL);
6446 # CCLINK = $(CCLD) blah blah...
6448 if (var ('LIBTOOL'))
6450 my $verbose = define_verbose_libtool ();
6451 $link = "\$(LIBTOOL) $verbose $libtool_tag\$(AM_LIBTOOLFLAGS) "
6452 . "\$(LIBTOOLFLAGS) --mode=link ";
6454 &define_variable ($lang->linker, $link . $lang->link, INTERNAL);
6455 &define_variable ($lang->compiler, $lang);
6456 &define_verbose_tagvar ($lang->lder || 'GEN');
6459 sub define_per_target_linker_variable ($$)
6461 my ($linker, $target) = @_;
6463 # If the user wrote a custom link command, we don't define ours.
6464 return "${target}_LINK"
6465 if set_seen "${target}_LINK";
6467 my $xlink = $linker ? $linker : 'LINK';
6469 my $lang = $link_languages{$xlink};
6470 prog_error "Unknown language for linker variable `$xlink'"
6473 my $link_command = $lang->link;
6476 my $libtool_tag = '';
6477 $libtool_tag = '--tag=' . $lang->libtool_tag . ' '
6478 if $lang->libtool_tag && exists $libtool_tags{$lang->libtool_tag};
6480 my $verbose = define_verbose_libtool ();
6482 "\$(LIBTOOL) $verbose $libtool_tag\$(AM_LIBTOOLFLAGS) \$(LIBTOOLFLAGS) "
6483 . "--mode=link " . $link_command;
6486 # Rewrite each occurrence of `AM_$flag' in the link
6487 # command into `${derived}_$flag' if it exists.
6488 my $orig_command = $link_command;
6489 my @flags = (@{$lang->flags}, 'LDFLAGS');
6490 push @flags, 'LIBTOOLFLAGS' if var 'LIBTOOL';
6491 for my $flag (@flags)
6493 my $val = "${target}_$flag";
6494 $link_command =~ s/\(AM_$flag\)/\($val\)/
6498 # If the computed command is the same as the generic command, use
6499 # the command linker variable.
6500 return ($lang->linker, $lang->lder)
6501 if $link_command eq $orig_command;
6503 &define_variable ("${target}_LINK", $link_command, INTERNAL);
6504 return ("${target}_LINK", $lang->lder);
6507 ################################################################
6509 # &check_trailing_slash ($WHERE, $LINE)
6510 # -------------------------------------
6511 # Return 1 iff $LINE ends with a slash.
6512 # Might modify $LINE.
6513 sub check_trailing_slash ($\$)
6515 my ($where, $line) = @_;
6517 # Ignore `##' lines.
6518 return 0 if $$line =~ /$IGNORE_PATTERN/o;
6520 # Catch and fix a common error.
6521 msg "syntax", $where, "whitespace following trailing backslash"
6522 if $$line =~ s/\\\s+\n$/\\\n/;
6524 return $$line =~ /\\$/;
6528 # &read_am_file ($AMFILE, $WHERE)
6529 # -------------------------------
6530 # Read Makefile.am and set up %contents. Simultaneously copy lines
6531 # from Makefile.am into $output_trailer, or define variables as
6532 # appropriate. NOTE we put rules in the trailer section. We want
6533 # user rules to come after our generated stuff.
6534 sub read_am_file ($$)
6536 my ($amfile, $where) = @_;
6538 my $am_file = new Automake::XFile ("< $amfile");
6539 verb "reading $amfile";
6541 # Keep track of the youngest output dependency.
6542 my $mtime = mtime $amfile;
6543 $output_deps_greatest_timestamp = $mtime
6544 if $mtime > $output_deps_greatest_timestamp;
6550 my $var_look = VAR_ASIS;
6552 use constant IN_VAR_DEF => 0;
6553 use constant IN_RULE_DEF => 1;
6554 use constant IN_COMMENT => 2;
6555 my $prev_state = IN_RULE_DEF;
6557 while ($_ = $am_file->getline)
6559 $where->set ("$amfile:$.");
6560 if (/$IGNORE_PATTERN/o)
6562 # Merely delete comments beginning with two hashes.
6564 elsif (/$WHITE_PATTERN/o)
6566 error $where, "blank line following trailing backslash"
6568 # Stick a single white line before the incoming macro or rule.
6571 # Flush all comments seen so far.
6574 $output_vars .= $comment;
6578 elsif (/$COMMENT_PATTERN/o)
6580 # Stick comments before the incoming macro or rule. Make
6581 # sure a blank line precedes the first block of comments.
6582 $spacing = "\n" unless $blank;
6584 $comment .= $spacing . $_;
6586 $prev_state = IN_COMMENT;
6592 $saw_bk = check_trailing_slash ($where, $_);
6595 # We save the conditional stack on entry, and then check to make
6596 # sure it is the same on exit. This lets us conditionally include
6598 my @saved_cond_stack = @cond_stack;
6599 my $cond = new Automake::Condition (@cond_stack);
6601 my $last_var_name = '';
6602 my $last_var_type = '';
6603 my $last_var_value = '';
6605 # FIXME: shouldn't use $_ in this loop; it is too big.
6608 $where->set ("$amfile:$.");
6610 # Make sure the line is \n-terminated.
6614 # Don't look at MAINTAINER_MODE_TRUE here. That shouldn't be
6615 # used by users. @MAINT@ is an anachronism now.
6616 $_ =~ s/\@MAINT\@//g
6617 unless $seen_maint_mode;
6619 my $new_saw_bk = check_trailing_slash ($where, $_);
6621 if (/$IGNORE_PATTERN/o)
6623 # Merely delete comments beginning with two hashes.
6625 # Keep any backslash from the previous line.
6626 $new_saw_bk = $saw_bk;
6628 elsif (/$WHITE_PATTERN/o)
6630 # Stick a single white line before the incoming macro or rule.
6632 error $where, "blank line following trailing backslash"
6635 elsif (/$COMMENT_PATTERN/o)
6637 error $where, "comment following trailing backslash"
6638 if $saw_bk && $prev_state != IN_COMMENT;
6640 # Stick comments before the incoming macro or rule.
6641 $comment .= $spacing . $_;
6643 $prev_state = IN_COMMENT;
6647 if ($prev_state == IN_RULE_DEF)
6649 my $cond = new Automake::Condition @cond_stack;
6650 $output_trailer .= $cond->subst_string;
6651 $output_trailer .= $_;
6653 elsif ($prev_state == IN_COMMENT)
6655 # If the line doesn't start with a `#', add it.
6656 # We do this because a continued comment like
6660 # is not portable. BSD make doesn't honor
6661 # escaped newlines in comments.
6663 $comment .= $spacing . $_;
6665 else # $prev_state == IN_VAR_DEF
6667 $last_var_value .= ' '
6668 unless $last_var_value =~ /\s$/;
6669 $last_var_value .= $_;
6673 Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
6674 $last_var_type, $cond,
6675 $last_var_value, $comment,
6676 $last_where, VAR_ASIS)
6678 $comment = $spacing = '';
6683 elsif (/$IF_PATTERN/o)
6685 $cond = cond_stack_if ($1, $2, $where);
6687 elsif (/$ELSE_PATTERN/o)
6689 $cond = cond_stack_else ($1, $2, $where);
6691 elsif (/$ENDIF_PATTERN/o)
6693 $cond = cond_stack_endif ($1, $2, $where);
6696 elsif (/$RULE_PATTERN/o)
6699 $prev_state = IN_RULE_DEF;
6701 # For now we have to output all definitions of user rules
6702 # and can't diagnose duplicates (see the comment in
6703 # Automake::Rule::define). So we go on and ignore the return value.
6704 Automake::Rule::define ($1, $amfile, RULE_USER, $cond, $where);
6706 check_variable_expansions ($_, $where);
6708 $output_trailer .= $comment . $spacing;
6709 my $cond = new Automake::Condition @cond_stack;
6710 $output_trailer .= $cond->subst_string;
6711 $output_trailer .= $_;
6712 $comment = $spacing = '';
6714 elsif (/$ASSIGNMENT_PATTERN/o)
6716 # Found a macro definition.
6717 $prev_state = IN_VAR_DEF;
6718 $last_var_name = $1;
6719 $last_var_type = $2;
6720 $last_var_value = $3;
6721 $last_where = $where->clone;
6722 if ($3 ne '' && substr ($3, -1) eq "\\")
6724 # We preserve the `\' because otherwise the long lines
6725 # that are generated will be truncated by broken
6727 $last_var_value = $3 . "\n";
6729 # Normally we try to output variable definitions in the
6730 # same format they were input. However, POSIX compliant
6731 # systems are not required to support lines longer than
6732 # 2048 bytes (most notably, some sed implementation are
6733 # limited to 4000 bytes, and sed is used by config.status
6734 # to rewrite Makefile.in into Makefile). Moreover nobody
6735 # would really write such long lines by hand since it is
6736 # hardly maintainable. So if a line is longer that 1000
6737 # bytes (an arbitrary limit), assume it has been
6738 # automatically generated by some tools, and flatten the
6739 # variable definition. Otherwise, keep the variable as it
6741 $var_look = VAR_PRETTY if length ($last_var_value) >= 1000;
6745 Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
6746 $last_var_type, $cond,
6747 $last_var_value, $comment,
6748 $last_where, $var_look)
6750 $comment = $spacing = '';
6751 $var_look = VAR_ASIS;
6754 elsif (/$INCLUDE_PATTERN/o)
6758 if ($path =~ s/^\$\(top_srcdir\)\///)
6760 push (@include_stack, "\$\(top_srcdir\)/$path");
6761 # Distribute any included file.
6763 # Always use the $(top_srcdir) prefix in DIST_COMMON,
6764 # otherwise OSF make will implicitly copy the included
6765 # file in the build tree during `make distdir' to satisfy
6767 # (subdircond2.test and subdircond3.test will fail.)
6768 push_dist_common ("\$\(top_srcdir\)/$path");
6772 $path =~ s/\$\(srcdir\)\///;
6773 push (@include_stack, "\$\(srcdir\)/$path");
6774 # Always use the $(srcdir) prefix in DIST_COMMON,
6775 # otherwise OSF make will implicitly copy the included
6776 # file in the build tree during `make distdir' to satisfy
6778 # (subdircond2.test and subdircond3.test will fail.)
6779 push_dist_common ("\$\(srcdir\)/$path");
6780 $path = $relative_dir . "/" . $path if $relative_dir ne '.';
6782 $where->push_context ("`$path' included from here");
6783 &read_am_file ($path, $where);
6784 $where->pop_context;
6788 # This isn't an error; it is probably a continued rule.
6789 # In fact, this is what we assume.
6790 $prev_state = IN_RULE_DEF;
6791 check_variable_expansions ($_, $where);
6792 $output_trailer .= $comment . $spacing;
6793 my $cond = new Automake::Condition @cond_stack;
6794 $output_trailer .= $cond->subst_string;
6795 $output_trailer .= $_;
6796 $comment = $spacing = '';
6797 error $where, "`#' comment at start of rule is unportable"
6798 if $_ =~ /^\t\s*\#/;
6801 $saw_bk = $new_saw_bk;
6802 $_ = $am_file->getline;
6805 $output_trailer .= $comment;
6807 error ($where, "trailing backslash on last line")
6810 error ($where, (@cond_stack ? "unterminated conditionals: @cond_stack"
6811 : "too many conditionals closed in include file"))
6812 if "@saved_cond_stack" ne "@cond_stack";
6816 # define_standard_variables ()
6817 # ----------------------------
6818 # A helper for read_main_am_file which initializes configure variables
6819 # and variables from header-vars.am.
6820 sub define_standard_variables
6822 my $saved_output_vars = $output_vars;
6823 my ($comments, undef, $rules) =
6824 file_contents_internal (1, "$libdir/am/header-vars.am",
6825 new Automake::Location);
6827 foreach my $var (sort keys %configure_vars)
6829 &define_configure_variable ($var);
6832 $output_vars .= $comments . $rules;
6835 # Read main am file.
6836 sub read_main_am_file
6840 # This supports the strange variable tricks we are about to play.
6841 prog_error ("variable defined before read_main_am_file\n" . variables_dump ())
6842 if (scalar (variables) > 0);
6844 # Generate copyright header for generated Makefile.in.
6845 # We do discard the output of predefined variables, handled below.
6846 $output_vars = ("# $in_file_name generated by automake "
6847 . $VERSION . " from $am_file_name.\n");
6848 $output_vars .= '# ' . subst ('configure_input') . "\n";
6849 $output_vars .= $gen_copyright;
6851 # We want to predefine as many variables as possible. This lets
6852 # the user set them with `+=' in Makefile.am.
6853 &define_standard_variables;
6855 # Read user file, which might override some of our values.
6856 &read_am_file ($amfile, new Automake::Location);
6861 ################################################################
6864 # &flatten ($STRING)
6865 # ------------------
6866 # Flatten the $STRING and return the result.
6880 # transform_token ($TOKEN, \%PAIRS, $KEY)
6881 # =======================================
6882 # Return the value associated to $KEY in %PAIRS, as used on $TOKEN
6883 # (which should be ?KEY? or any of the special %% requests)..
6884 sub transform_token ($$$)
6886 my ($token, $transform, $key) = @_;
6887 my $res = $transform->{$key};
6888 prog_error "Unknown key `$key' in `$token'" unless defined $res;
6893 # transform ($TOKEN, \%PAIRS)
6894 # ===========================
6895 # If ($TOKEN, $VAL) is in %PAIRS:
6896 # - replaces %KEY% with $VAL,
6897 # - enables/disables ?KEY? and ?!KEY?,
6898 # - replaces %?KEY% with TRUE or FALSE.
6899 # - replaces %KEY?IFTRUE%, %KEY:IFFALSE%, and %KEY?IFTRUE:IFFALSE% with
6900 # IFTRUE / IFFALSE, as appropriate.
6903 my ($token, $transform) = @_;
6906 # Must be before the following pattern to exclude the case
6907 # when there is neither IFTRUE nor IFFALSE.
6908 if ($token =~ /^%([\w\-]+)%$/)
6910 return transform_token ($token, $transform, $1);
6912 # %KEY?IFTRUE%, %KEY:IFFALSE%, and %KEY?IFTRUE:IFFALSE%.
6913 elsif ($token =~ /^%([\w\-]+)(?:\?([^?:%]+))?(?::([^?:%]+))?%$/)
6915 return transform_token ($token, $transform, $1) ? ($2 || '') : ($3 || '');
6918 elsif ($token =~ /^%\?([\w\-]+)%$/)
6920 return transform_token ($token, $transform, $1) ? 'TRUE' : 'FALSE';
6923 elsif ($token =~ /^ \? (!?) ([\w\-]+) \? $/x)
6925 my $neg = ($1 eq '!') ? 1 : 0;
6926 my $val = transform_token ($token, $transform, $2);
6927 return (!!$val == $neg) ? '##%' : '';
6931 prog_error "Unknown request format: $token";
6937 # &make_paragraphs ($MAKEFILE, [%TRANSFORM])
6938 # ------------------------------------------
6939 # Load a $MAKEFILE, apply the %TRANSFORM, and return it as a list of
6941 sub make_paragraphs ($%)
6943 my ($file, %transform) = @_;
6945 # Complete %transform with global options.
6946 # Note that %transform goes last, so it overrides global options.
6947 %transform = ('CYGNUS' => !! option 'cygnus',
6949 => $seen_maint_mode ? subst ('MAINTAINER_MODE_TRUE') : '',
6951 'XZ' => !! option 'dist-xz',
6952 'LZMA' => !! option 'dist-lzma',
6953 'LZIP' => !! option 'dist-lzip',
6954 'BZIP2' => !! option 'dist-bzip2',
6955 'COMPRESS' => !! option 'dist-tarZ',
6956 'GZIP' => ! option 'no-dist-gzip',
6957 'SHAR' => !! option 'dist-shar',
6958 'ZIP' => !! option 'dist-zip',
6960 'INSTALL-INFO' => ! option 'no-installinfo',
6961 'INSTALL-MAN' => ! option 'no-installman',
6962 'HAVE-MANS' => !! var ('MANS'),
6963 'CK-NEWS' => !! option 'check-news',
6965 'SUBDIRS' => !! var ('SUBDIRS'),
6966 'TOPDIR_P' => $relative_dir eq '.',
6968 'BUILD' => ($seen_canonical >= AC_CANONICAL_BUILD),
6969 'HOST' => ($seen_canonical >= AC_CANONICAL_HOST),
6970 'TARGET' => ($seen_canonical >= AC_CANONICAL_TARGET),
6972 'LIBTOOL' => !! var ('LIBTOOL'),
6974 'FIRST' => ! $transformed_files{$file},
6977 $transformed_files{$file} = 1;
6978 $_ = $am_file_cache{$file};
6982 verb "reading $file";
6983 # Swallow the whole file.
6984 my $fc_file = new Automake::XFile "< $file";
6985 my $saved_dollar_slash = $/;
6987 $_ = $fc_file->getline;
6988 $/ = $saved_dollar_slash;
6991 # Remove ##-comments.
6992 # Besides we don't need more than two consecutive new-lines.
6993 s/(?:$IGNORE_PATTERN|(?<=\n\n)\n+)//gom;
6995 $am_file_cache{$file} = $_;
6998 # Substitute Automake template tokens.
6999 s/(?: % \?? [\w\-]+ %
7000 | % [\w\-]+ (?:\?[^?:%]+)? (?::[^?:%]+)? %
7002 )/transform($&, \%transform)/gex;
7003 # transform() may have added some ##%-comments to strip.
7004 # (we use `##%' instead of `##' so we can distinguish ##%##%##% from
7005 # ####### and do not remove the latter.)
7006 s/^[ \t]*(?:##%)+.*\n//gm;
7008 # Split at unescaped new lines.
7009 my @lines = split (/(?<!\\)\n/, $_);
7012 while (defined ($_ = shift @lines))
7015 # If we are a rule, eat as long as we start with a tab.
7016 if (/$RULE_PATTERN/smo)
7018 while (defined ($_ = shift @lines) && $_ =~ /^\t/)
7020 $paragraph .= "\n$_";
7022 unshift (@lines, $_);
7025 # If we are a comments, eat as much comments as you can.
7026 elsif (/$COMMENT_PATTERN/smo)
7028 while (defined ($_ = shift @lines)
7029 && $_ =~ /$COMMENT_PATTERN/smo)
7031 $paragraph .= "\n$_";
7033 unshift (@lines, $_);
7036 push @res, $paragraph;
7044 # ($COMMENT, $VARIABLES, $RULES)
7045 # &file_contents_internal ($IS_AM, $FILE, $WHERE, [%TRANSFORM])
7046 # -------------------------------------------------------------
7047 # Return contents of a file from $libdir/am, automatically skipping
7048 # macros or rules which are already known. $IS_AM iff the caller is
7049 # reading an Automake file (as opposed to the user's Makefile.am).
7050 sub file_contents_internal ($$$%)
7052 my ($is_am, $file, $where, %transform) = @_;
7054 $where->set ($file);
7056 my $result_vars = '';
7057 my $result_rules = '';
7061 # The following flags are used to track rules spanning across
7062 # multiple paragraphs.
7063 my $is_rule = 0; # 1 if we are processing a rule.
7064 my $discard_rule = 0; # 1 if the current rule should not be output.
7066 # We save the conditional stack on entry, and then check to make
7067 # sure it is the same on exit. This lets us conditionally include
7069 my @saved_cond_stack = @cond_stack;
7070 my $cond = new Automake::Condition (@cond_stack);
7072 foreach (make_paragraphs ($file, %transform))
7074 # FIXME: no line number available.
7075 $where->set ($file);
7078 error $where, "blank line following trailing backslash:\n$_"
7080 error $where, "comment following trailing backslash:\n$_"
7086 # Stick empty line before the incoming macro or rule.
7089 elsif (/$COMMENT_PATTERN/mso)
7092 # Stick comments before the incoming macro or rule.
7096 # Handle inclusion of other files.
7097 elsif (/$INCLUDE_PATTERN/o)
7101 my $file = ($is_am ? "$libdir/am/" : '') . $1;
7102 $where->push_context ("`$file' included from here");
7104 my ($com, $vars, $rules)
7105 = file_contents_internal ($is_am, $file, $where, %transform);
7106 $where->pop_context;
7108 $result_vars .= $vars;
7109 $result_rules .= $rules;
7113 # Handling the conditionals.
7114 elsif (/$IF_PATTERN/o)
7116 $cond = cond_stack_if ($1, $2, $file);
7118 elsif (/$ELSE_PATTERN/o)
7120 $cond = cond_stack_else ($1, $2, $file);
7122 elsif (/$ENDIF_PATTERN/o)
7124 $cond = cond_stack_endif ($1, $2, $file);
7128 elsif (/$RULE_PATTERN/mso)
7132 # Separate relationship from optional actions: the first
7133 # `new-line tab" not preceded by backslash (continuation
7136 /^(.*?)(?:(?<!\\)\n(\t.*))?$/s;
7137 my ($relationship, $actions) = ($1, $2 || '');
7139 # Separate targets from dependencies: the first colon.
7140 $relationship =~ /^([^:]+\S+) *: *(.*)$/som;
7141 my ($targets, $dependencies) = ($1, $2);
7142 # Remove the escaped new lines.
7143 # I don't know why, but I have to use a tmp $flat_deps.
7144 my $flat_deps = &flatten ($dependencies);
7145 my @deps = split (' ', $flat_deps);
7147 foreach (split (' ', $targets))
7149 # FIXME: 1. We are not robust to people defining several targets
7150 # at once, only some of them being in %dependencies. The
7151 # actions from the targets in %dependencies are usually generated
7152 # from the content of %actions, but if some targets in $targets
7153 # are not in %dependencies the ELSE branch will output
7154 # a rule for all $targets (i.e. the targets which are both
7155 # in %dependencies and $targets will have two rules).
7157 # FIXME: 2. The logic here is not able to output a
7158 # multi-paragraph rule several time (e.g. for each condition
7159 # it is defined for) because it only knows the first paragraph.
7161 # FIXME: 3. We are not robust to people defining a subset
7162 # of a previously defined "multiple-target" rule. E.g.
7163 # `foo:' after `foo bar:'.
7165 # Output only if not in FALSE.
7166 if (defined $dependencies{$_} && $cond != FALSE)
7168 &depend ($_, @deps);
7169 register_action ($_, $actions);
7173 # Free-lance dependency. Output the rule for all the
7174 # targets instead of one by one.
7175 my @undefined_conds =
7176 Automake::Rule::define ($targets, $file,
7177 $is_am ? RULE_AUTOMAKE : RULE_USER,
7179 for my $undefined_cond (@undefined_conds)
7181 my $condparagraph = $paragraph;
7182 $condparagraph =~ s/^/$undefined_cond->subst_string/gme;
7183 $result_rules .= "$spacing$comment$condparagraph\n";
7185 if (scalar @undefined_conds == 0)
7187 # Remember to discard next paragraphs
7188 # if they belong to this rule.
7189 # (but see also FIXME: #2 above.)
7192 $comment = $spacing = '';
7198 elsif (/$ASSIGNMENT_PATTERN/mso)
7200 my ($var, $type, $val) = ($1, $2, $3);
7201 error $where, "variable `$var' with trailing backslash"
7206 Automake::Variable::define ($var,
7207 $is_am ? VAR_AUTOMAKE : VAR_MAKEFILE,
7208 $type, $cond, $val, $comment, $where,
7212 $comment = $spacing = '';
7216 # This isn't an error; it is probably some tokens which
7217 # configure is supposed to replace, such as `@SET-MAKE@',
7218 # or some part of a rule cut by an if/endif.
7219 if (! $cond->false && ! ($is_rule && $discard_rule))
7221 s/^/$cond->subst_string/gme;
7222 $result_rules .= "$spacing$comment$_\n";
7224 $comment = $spacing = '';
7228 error ($where, @cond_stack ?
7229 "unterminated conditionals: @cond_stack" :
7230 "too many conditionals closed in include file")
7231 if "@saved_cond_stack" ne "@cond_stack";
7233 return ($comment, $result_vars, $result_rules);
7238 # &file_contents ($BASENAME, $WHERE, [%TRANSFORM])
7239 # ------------------------------------------------
7240 # Return contents of a file from $libdir/am, automatically skipping
7241 # macros or rules which are already known.
7242 sub file_contents ($$%)
7244 my ($basename, $where, %transform) = @_;
7245 my ($comments, $variables, $rules) =
7246 file_contents_internal (1, "$libdir/am/$basename.am", $where,
7248 return "$comments$variables$rules";
7253 # &am_primary_prefixes ($PRIMARY, $CAN_DIST, @PREFIXES)
7254 # -----------------------------------------------------
7255 # Find all variable prefixes that are used for install directories. A
7256 # prefix `zar' qualifies iff:
7258 # * `zardir' is a variable.
7259 # * `zar_PRIMARY' is a variable.
7261 # As a side effect, it looks for misspellings. It is an error to have
7262 # a variable ending in a "reserved" suffix whose prefix is unknown, e.g.
7263 # "bni_PROGRAMS". However, unusual prefixes are allowed if a variable
7264 # of the same name (with "dir" appended) exists. For instance, if the
7265 # variable "zardir" is defined, then "zar_PROGRAMS" becomes valid.
7266 # This is to provide a little extra flexibility in those cases which
7268 sub am_primary_prefixes ($$@)
7270 my ($primary, $can_dist, @prefixes) = @_;
7273 my %valid = map { $_ => 0 } @prefixes;
7274 $valid{'EXTRA'} = 0;
7275 foreach my $var (variables $primary)
7277 # Automake is allowed to define variables that look like primaries
7278 # but which aren't. E.g. INSTALL_sh_DATA.
7279 # Autoconf can also define variables like INSTALL_DATA, so
7280 # ignore all configure variables (at least those which are not
7281 # redefined in Makefile.am).
7282 # FIXME: We should make sure that these variables are not
7283 # conditionally defined (or else adjust the condition below).
7284 my $def = $var->def (TRUE);
7285 next if $def && $def->owner != VAR_MAKEFILE;
7287 my $varname = $var->name;
7289 if ($varname =~ /^(nobase_)?(dist_|nodist_)?(.*)_[[:alnum:]]+$/)
7291 my ($base, $dist, $X) = ($1 || '', $2 || '', $3 || '');
7292 if ($dist ne '' && ! $can_dist)
7295 "invalid variable `$varname': `dist' is forbidden");
7297 # Standard directories must be explicitly allowed.
7298 elsif (! defined $valid{$X} && exists $standard_prefix{$X})
7301 "`${X}dir' is not a legitimate directory " .
7304 # A not explicitly valid directory is allowed if Xdir is defined.
7305 elsif (! defined $valid{$X} &&
7306 $var->requires_variables ("`$varname' is used", "${X}dir"))
7308 # Nothing to do. Any error message has been output
7309 # by $var->requires_variables.
7313 # Ensure all extended prefixes are actually used.
7314 $valid{"$base$dist$X"} = 1;
7319 prog_error "unexpected variable name: $varname";
7323 # Return only those which are actually defined.
7324 return sort grep { var ($_ . '_' . $primary) } keys %valid;
7328 # Handle `where_HOW' variable magic. Does all lookups, generates
7329 # install code, and possibly generates code to define the primary
7330 # variable. The first argument is the name of the .am file to munge,
7331 # the second argument is the primary variable (e.g. HEADERS), and all
7332 # subsequent arguments are possible installation locations.
7334 # Returns list of [$location, $value] pairs, where
7335 # $value's are the values in all where_HOW variable, and $location
7336 # there associated location (the place here their parent variables were
7339 # FIXME: this should be rewritten to be cleaner. It should be broken
7340 # up into multiple functions.
7342 # Usage is: am_install_var (OPTION..., file, HOW, where...)
7349 my $default_dist = 0;
7352 if ($args[0] eq '-noextra')
7356 elsif ($args[0] eq '-candist')
7360 elsif ($args[0] eq '-defaultdist')
7365 elsif ($args[0] !~ /^-/)
7372 my ($file, $primary, @prefix) = @args;
7374 # Now that configure substitutions are allowed in where_HOW
7375 # variables, it is an error to actually define the primary. We
7376 # allow `JAVA', as it is customarily used to mean the Java
7377 # interpreter. This is but one of several Java hacks. Similarly,
7378 # `PYTHON' is customarily used to mean the Python interpreter.
7379 reject_var $primary, "`$primary' is an anachronism"
7380 unless $primary eq 'JAVA' || $primary eq 'PYTHON';
7382 # Get the prefixes which are valid and actually used.
7383 @prefix = am_primary_prefixes ($primary, $can_dist, @prefix);
7385 # If a primary includes a configure substitution, then the EXTRA_
7386 # form is required. Otherwise we can't properly do our job.
7392 foreach my $X (@prefix)
7394 my $nodir_name = $X;
7395 my $one_name = $X . '_' . $primary;
7396 my $one_var = var $one_name;
7398 my $strip_subdir = 1;
7399 # If subdir prefix should be preserved, do so.
7400 if ($nodir_name =~ /^nobase_/)
7403 $nodir_name =~ s/^nobase_//;
7406 # If files should be distributed, do so.
7410 $dist_p = (($default_dist && $nodir_name !~ /^nodist_/)
7411 || (! $default_dist && $nodir_name =~ /^dist_/));
7412 $nodir_name =~ s/^(dist|nodist)_//;
7416 # Use the location of the currently processed variable.
7417 # We are not processing a particular condition, so pick the first
7419 my $tmpcond = $one_var->conditions->one_cond;
7420 my $where = $one_var->rdef ($tmpcond)->location->clone;
7422 # Append actual contents of where_PRIMARY variable to
7423 # @result, skipping @substitutions@.
7424 foreach my $locvals ($one_var->value_as_list_recursive (location => 1))
7426 my ($loc, $value) = @$locvals;
7427 # Skip configure substitutions.
7428 if ($value =~ /^\@.*\@$/)
7430 if ($nodir_name eq 'EXTRA')
7433 "`$one_name' contains configure substitution, "
7436 # Check here to make sure variables defined in
7437 # configure.ac do not imply that EXTRA_PRIMARY
7439 elsif (! defined $configure_vars{$one_name})
7441 $require_extra = $one_name
7447 # Strip any $(EXEEXT) suffix the user might have added, or this
7448 # will confuse &handle_source_transform and &check_canonical_spelling.
7449 # We'll add $(EXEEXT) back later anyway.
7450 # Do it here rather than in handle_programs so the uniquifying at the
7451 # end of this function works.
7452 ${$locvals}[1] =~ s/\$\(EXEEXT\)$//
7453 if $primary eq 'PROGRAMS';
7455 push (@result, $locvals);
7458 # A blatant hack: we rewrite each _PROGRAMS primary to include
7460 append_exeext { 1 } $one_name
7461 if $primary eq 'PROGRAMS';
7462 # "EXTRA" shouldn't be used when generating clean targets,
7463 # all, or install targets. We used to warn if EXTRA_FOO was
7464 # defined uselessly, but this was annoying.
7466 if $nodir_name eq 'EXTRA';
7468 if ($nodir_name eq 'check')
7470 push (@check, '$(' . $one_name . ')');
7474 push (@used, '$(' . $one_name . ')');
7477 # Is this to be installed?
7478 my $install_p = $nodir_name ne 'noinst' && $nodir_name ne 'check';
7480 # If so, with install-exec? (or install-data?).
7481 my $exec_p = ($nodir_name =~ /$EXEC_DIR_PATTERN/o);
7483 my $check_options_p = $install_p && !! option 'std-options';
7485 # Use the location of the currently processed variable as context.
7486 $where->push_context ("while processing `$one_name'");
7488 # The variable containing all files to distribute.
7489 my $distvar = "\$($one_name)";
7490 $distvar = shadow_unconditionally ($one_name, $where)
7491 if ($dist_p && $one_var->has_conditional_contents);
7493 # Singular form of $PRIMARY.
7494 (my $one_primary = $primary) =~ s/S$//;
7495 $output_rules .= &file_contents ($file, $where,
7496 PRIMARY => $primary,
7497 ONE_PRIMARY => $one_primary,
7499 NDIR => $nodir_name,
7500 BASE => $strip_subdir,
7503 INSTALL => $install_p,
7505 DISTVAR => $distvar,
7506 'CK-OPTS' => $check_options_p);
7509 # The JAVA variable is used as the name of the Java interpreter.
7510 # The PYTHON variable is used as the name of the Python interpreter.
7511 if (@used && $primary ne 'JAVA' && $primary ne 'PYTHON')
7514 define_pretty_variable ($primary, TRUE, INTERNAL, @used);
7515 $output_vars .= "\n";
7518 err_var ($require_extra,
7519 "`$require_extra' contains configure substitution,\n"
7520 . "but `EXTRA_$primary' not defined")
7521 if ($require_extra && ! var ('EXTRA_' . $primary));
7523 # Push here because PRIMARY might be configure time determined.
7524 push (@all, '$(' . $primary . ')')
7525 if @used && $primary ne 'JAVA' && $primary ne 'PYTHON';
7527 # Make the result unique. This lets the user use conditionals in
7528 # a natural way, but still lets us program lazily -- we don't have
7529 # to worry about handling a particular object more than once.
7530 # We will keep only one location per object.
7532 for my $pair (@result)
7534 my ($loc, $val) = @$pair;
7535 $result{$val} = $loc;
7537 my @l = sort keys %result;
7538 return map { [$result{$_}->clone, $_] } @l;
7542 ################################################################
7544 # Each key in this hash is the name of a directory holding a
7545 # Makefile.in. These variables are local to `is_make_dir'.
7547 my $make_dirs_set = 0;
7552 if (! $make_dirs_set)
7554 foreach my $iter (@configure_input_files)
7556 $make_dirs{dirname ($iter)} = 1;
7558 # We also want to notice Makefile.in's.
7559 foreach my $iter (@other_input_files)
7561 if ($iter =~ /Makefile\.in$/)
7563 $make_dirs{dirname ($iter)} = 1;
7568 return defined $make_dirs{$dir};
7571 ################################################################
7573 # Find the aux dir. This should match the algorithm used by
7574 # ./configure. (See the Autoconf documentation for for
7575 # AC_CONFIG_AUX_DIR.)
7576 sub locate_aux_dir ()
7578 if (! $config_aux_dir_set_in_configure_ac)
7580 # The default auxiliary directory is the first
7581 # of ., .., or ../.. that contains install-sh.
7582 # Assume . if install-sh doesn't exist yet.
7583 for my $dir (qw (. .. ../..))
7585 if (-f "$dir/install-sh")
7587 $config_aux_dir = $dir;
7591 $config_aux_dir = '.' unless $config_aux_dir;
7593 # Avoid unsightly '/.'s.
7594 $am_config_aux_dir =
7595 '$(top_srcdir)' . ($config_aux_dir eq '.' ? "" : "/$config_aux_dir");
7596 $am_config_aux_dir =~ s,/*$,,;
7600 # &push_required_file ($DIR, $FILE, $FULLFILE)
7601 # --------------------------------------------------
7602 # Push the given file onto DIST_COMMON.
7603 sub push_required_file
7605 my ($dir, $file, $fullfile) = @_;
7607 # If the file to be distributed is in the same directory of the
7608 # currently processed Makefile.am, then we want to distribute it
7609 # from this same Makefile.am.
7610 if ($dir eq $relative_dir)
7612 push_dist_common ($file);
7614 # This is needed to allow a construct in a non-top-level Makefile.am
7615 # to require a file in the build-aux directory (see at least the test
7616 # script `test-driver-is-distributed.test'). This is related to the
7617 # automake bug#9546. Note that the use of $config_aux_dir instead
7618 # of $am_config_aux_dir here is deliberate and necessary.
7619 elsif ($dir eq $config_aux_dir)
7621 push_dist_common ("$am_config_aux_dir/$file");
7623 # FIXME: another spacial case, for AC_LIBOBJ/AC_LIBSOURCE support.
7624 # We probably need some refactoring of this function and its callers,
7625 # to have a more explicit and systematic handling of all the special
7626 # cases; but, since there are only two of them, this is low-priority
7628 elsif ($config_libobj_dir && $dir eq $config_libobj_dir)
7630 # Avoid unsightly '/.'s.
7631 my $am_config_libobj_dir =
7633 ($config_libobj_dir eq '.' ? "" : "/$config_libobj_dir");
7634 $am_config_libobj_dir =~ s|/*$||;
7635 push_dist_common ("$am_config_libobj_dir/$file");
7637 elsif ($relative_dir eq '.' && ! &is_make_dir ($dir))
7639 # If we are doing the topmost directory, and the file is in a
7640 # subdir which does not have a Makefile, then we distribute it
7643 # If a required file is above the source tree, it is important
7644 # to prefix it with `$(srcdir)' so that no VPATH search is
7645 # performed. Otherwise problems occur with Make implementations
7646 # that rewrite and simplify rules whose dependencies are found in a
7647 # VPATH location. Here is an example with OSF1/Tru64 Make.
7659 # Dependency `../a' was found in `sub/../a', but this make
7660 # implementation simplified it as `a'. (Note that the sub/
7661 # directory does not even exist.)
7663 # This kind of VPATH rewriting seems hard to cancel. The
7664 # distdir.am hack against VPATH rewriting works only when no
7665 # simplification is done, i.e., for dependencies which are in
7666 # subdirectories, not in enclosing directories. Hence, in
7667 # the latter case we use a full path to make sure no VPATH
7669 $fullfile = '$(srcdir)/' . $fullfile
7670 if $dir =~ m,^\.\.(?:$|/),;
7672 push_dist_common ($fullfile);
7676 prog_error "a Makefile in relative directory $relative_dir " .
7677 "can't add files in directory $dir to DIST_COMMON";
7682 # If a file name appears as a key in this hash, then it has already
7683 # been checked for. This allows us not to report the same error more
7685 my %required_file_not_found = ();
7687 # &required_file_check_or_copy ($WHERE, $DIRECTORY, $FILE)
7688 # --------------------------------------------------------
7689 # Verify that the file must exist in $DIRECTORY, or install it.
7690 sub required_file_check_or_copy ($$$)
7692 my ($where, $dir, $file) = @_;
7694 my $fullfile = "$dir/$file";
7696 my $dangling_sym = 0;
7698 if (-l $fullfile && ! -f $fullfile)
7702 elsif (dir_has_case_matching_file ($dir, $file))
7707 # `--force-missing' only has an effect if `--add-missing' is
7710 if $found_it && (! $add_missing || ! $force_missing);
7712 # If we've already looked for it, we're done. You might
7713 # wonder why we don't do this before searching for the
7714 # file. If we do that, then something like
7715 # AC_OUTPUT(subdir/foo foo) will fail to put foo.in into
7719 return if defined $required_file_not_found{$fullfile};
7720 $required_file_not_found{$fullfile} = 1;
7722 if ($dangling_sym && $add_missing)
7731 # Only install missing files according to our desired
7733 my $message = "required file `$fullfile' not found";
7736 if (-f "$libdir/$file")
7740 # Install the missing file. Symlink if we
7741 # can, copy if we must. Note: delete the file
7742 # first, in case it is a dangling symlink.
7743 $message = "installing `$fullfile'";
7745 # The license file should not be volatile.
7746 if ($file eq "COPYING")
7748 $message .= " using GNU General Public License v3 file";
7749 $trailer2 = "\n Consider adding the COPYING file"
7750 . " to the version control system"
7751 . "\n for your code, to avoid questions"
7752 . " about which license your project uses";
7755 # Windows Perl will hang if we try to delete a
7756 # file that doesn't exist.
7757 unlink ($fullfile) if -f $fullfile;
7758 if ($symlink_exists && ! $copy_missing)
7760 if (! symlink ("$libdir/$file", $fullfile)
7764 $trailer = "; error while making link: $!";
7767 elsif (system ('cp', "$libdir/$file", $fullfile))
7770 $trailer = "\n error while copying";
7772 set_dir_cache_file ($dir, $file);
7777 $trailer = "\n `automake --add-missing' can install `$file'"
7778 if -f "$libdir/$file";
7781 # If --force-missing was specified, and we have
7782 # actually found the file, then do nothing.
7784 if $found_it && $force_missing;
7786 # If we couldn't install the file, but it is a target in
7787 # the Makefile, don't print anything. This allows files
7788 # like README, AUTHORS, or THANKS to be generated.
7790 if !$suppress && rule $file;
7792 msg ($suppress ? 'note' : 'error', $where, "$message$trailer$trailer2");
7796 # &require_file_internal ($WHERE, $MYSTRICT, $DIRECTORY, $QUEUE, @FILES)
7797 # ----------------------------------------------------------------------
7798 # Verify that the file must exist in $DIRECTORY, or install it.
7799 # $MYSTRICT is the strictness level at which this file becomes required.
7800 # Worker threads may queue up the action to be serialized by the master,
7802 sub require_file_internal ($$$@)
7804 my ($where, $mystrict, $dir, $queue, @files) = @_;
7807 unless $strictness >= $mystrict;
7809 foreach my $file (@files)
7811 push_required_file ($dir, $file, "$dir/$file");
7814 queue_required_file_check_or_copy ($required_conf_file_queue,
7815 QUEUE_CONF_FILE, $relative_dir,
7816 $where, $mystrict, @files);
7820 required_file_check_or_copy ($where, $dir, $file);
7825 # &require_file ($WHERE, $MYSTRICT, @FILES)
7826 # -----------------------------------------
7827 sub require_file ($$@)
7829 my ($where, $mystrict, @files) = @_;
7830 require_file_internal ($where, $mystrict, $relative_dir, 0, @files);
7833 # &require_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
7834 # -----------------------------------------------------------
7835 sub require_file_with_macro ($$$@)
7837 my ($cond, $macro, $mystrict, @files) = @_;
7838 $macro = rvar ($macro) unless ref $macro;
7839 require_file ($macro->rdef ($cond)->location, $mystrict, @files);
7842 # &require_libsource_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
7843 # ----------------------------------------------------------------
7844 # Require an AC_LIBSOURCEd file. If AC_CONFIG_LIBOBJ_DIR was called, it
7845 # must be in that directory. Otherwise expect it in the current directory.
7846 sub require_libsource_with_macro ($$$@)
7848 my ($cond, $macro, $mystrict, @files) = @_;
7849 $macro = rvar ($macro) unless ref $macro;
7850 if ($config_libobj_dir)
7852 require_file_internal ($macro->rdef ($cond)->location, $mystrict,
7853 $config_libobj_dir, 0, @files);
7857 require_file ($macro->rdef ($cond)->location, $mystrict, @files);
7861 # &queue_required_file_check_or_copy ($QUEUE, $KEY, $DIR, $WHERE,
7862 # $MYSTRICT, @FILES)
7863 # ---------------------------------------------------------------
7864 sub queue_required_file_check_or_copy ($$$$@)
7866 my ($queue, $key, $dir, $where, $mystrict, @files) = @_;
7870 @serial_loc = (QUEUE_LOCATION, $where->serialize ());
7874 @serial_loc = (QUEUE_STRING, $where);
7876 $queue->enqueue ($key, $dir, @serial_loc, $mystrict, 0 + @files, @files);
7879 # &require_queued_file_check_or_copy ($QUEUE)
7880 # -------------------------------------------
7881 sub require_queued_file_check_or_copy ($)
7885 my $dir = $queue->dequeue ();
7886 my $loc_key = $queue->dequeue ();
7887 if ($loc_key eq QUEUE_LOCATION)
7889 $where = Automake::Location::deserialize ($queue);
7891 elsif ($loc_key eq QUEUE_STRING)
7893 $where = $queue->dequeue ();
7897 prog_error "unexpected key $loc_key";
7899 my $mystrict = $queue->dequeue ();
7900 my $nfiles = $queue->dequeue ();
7902 push @files, $queue->dequeue ()
7903 foreach (1 .. $nfiles);
7905 unless $strictness >= $mystrict;
7906 foreach my $file (@files)
7908 required_file_check_or_copy ($where, $config_aux_dir, $file);
7912 # &require_conf_file ($WHERE, $MYSTRICT, @FILES)
7913 # ----------------------------------------------
7914 # Looks in configuration path, as specified by AC_CONFIG_AUX_DIR.
7915 sub require_conf_file ($$@)
7917 my ($where, $mystrict, @files) = @_;
7918 my $queue = defined $required_conf_file_queue ? 1 : 0;
7919 require_file_internal ($where, $mystrict, $config_aux_dir,
7924 # &require_conf_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
7925 # ----------------------------------------------------------------
7926 sub require_conf_file_with_macro ($$$@)
7928 my ($cond, $macro, $mystrict, @files) = @_;
7929 require_conf_file (rvar ($macro)->rdef ($cond)->location,
7933 ################################################################
7935 # &require_build_directory ($DIRECTORY)
7936 # -------------------------------------
7937 # Emit rules to create $DIRECTORY if needed, and return
7938 # the file that any target requiring this directory should be made
7940 # We don't want to emit the rule twice, and want to reuse it
7941 # for directories with equivalent names (e.g., `foo/bar' and `./foo//bar').
7942 sub require_build_directory ($)
7944 my $directory = shift;
7946 return $directory_map{$directory} if exists $directory_map{$directory};
7948 my $cdir = File::Spec->canonpath ($directory);
7950 if (exists $directory_map{$cdir})
7952 my $stamp = $directory_map{$cdir};
7953 $directory_map{$directory} = $stamp;
7957 my $dirstamp = "$cdir/\$(am__dirstamp)";
7959 $directory_map{$directory} = $dirstamp;
7960 $directory_map{$cdir} = $dirstamp;
7962 # Set a variable for the dirstamp basename.
7963 define_pretty_variable ('am__dirstamp', TRUE, INTERNAL,
7964 '$(am__leading_dot)dirstamp');
7966 # Directory must be removed by `make distclean'.
7967 $clean_files{$dirstamp} = DIST_CLEAN;
7969 $output_rules .= ("$dirstamp:\n"
7970 . "\t\@\$(MKDIR_P) $directory\n"
7971 . "\t\@: > $dirstamp\n");
7976 # &require_build_directory_maybe ($FILE)
7977 # --------------------------------------
7978 # If $FILE lies in a subdirectory, emit a rule to create this
7979 # directory and return the file that $FILE should be made
7980 # dependent upon. Otherwise, just return the empty string.
7981 sub require_build_directory_maybe ($)
7984 my $directory = dirname ($file);
7986 if ($directory ne '.')
7988 return require_build_directory ($directory);
7996 ################################################################
7998 # Push a list of files onto dist_common.
7999 sub push_dist_common
8001 prog_error "push_dist_common run after handle_dist"
8002 if $handle_dist_run;
8003 Automake::Variable::define ('DIST_COMMON', VAR_AUTOMAKE, '+', TRUE, "@_",
8004 '', INTERNAL, VAR_PRETTY);
8008 ################################################################
8010 # generate_makefile ($MAKEFILE_AM, $MAKEFILE_IN)
8011 # ----------------------------------------------
8012 # Generate a Makefile.in given the name of the corresponding Makefile and
8013 # the name of the file output by config.status.
8014 sub generate_makefile ($$)
8016 my ($makefile_am, $makefile_in) = @_;
8018 # Reset all the Makefile.am related variables.
8019 initialize_per_input;
8021 # AUTOMAKE_OPTIONS can contains -W flags to disable or enable
8022 # warnings for this file. So hold any warning issued before
8023 # we have processed AUTOMAKE_OPTIONS.
8024 buffer_messages ('warning');
8026 # Name of input file ("Makefile.am") and output file
8027 # ("Makefile.in"). These have no directory components.
8028 $am_file_name = basename ($makefile_am);
8029 $in_file_name = basename ($makefile_in);
8031 # $OUTPUT is encoded. If it contains a ":" then the first element
8032 # is the real output file, and all remaining elements are input
8033 # files. We don't scan or otherwise deal with these input files,
8034 # other than to mark them as dependencies. See
8035 # &scan_autoconf_files for details.
8036 my ($makefile, @inputs) = split (/:/, $output_files{$makefile_in});
8038 $relative_dir = dirname ($makefile);
8039 $am_relative_dir = dirname ($makefile_am);
8040 $topsrcdir = backname ($relative_dir);
8042 read_main_am_file ($makefile_am);
8045 # Process buffered warnings.
8047 # Fatal error. Just return, so we can continue with next file.
8050 # Process buffered warnings.
8053 # There are a few install-related variables that you should not define.
8054 foreach my $var ('PRE_INSTALL', 'POST_INSTALL', 'NORMAL_INSTALL')
8059 my $def = $v->def (TRUE);
8060 prog_error "$var not defined in condition TRUE"
8062 reject_var $var, "`$var' should not be defined"
8063 if $def->owner != VAR_AUTOMAKE;
8067 # Catch some obsolete variables.
8068 msg_var ('obsolete', 'INCLUDES',
8069 "`INCLUDES' is the old name for `AM_CPPFLAGS' (or `*_CPPFLAGS')")
8070 if var ('INCLUDES');
8072 # Must do this after reading .am file.
8073 define_variable ('subdir', $relative_dir, INTERNAL);
8075 # If DIST_SUBDIRS is defined, make sure SUBDIRS is, so that
8076 # recursive rules are enabled.
8077 define_pretty_variable ('SUBDIRS', TRUE, INTERNAL, '')
8078 if var 'DIST_SUBDIRS' && ! var 'SUBDIRS';
8080 # Check first, because we might modify some state.
8082 check_gnu_standards;
8083 check_gnits_standards;
8085 handle_configure ($makefile_am, $makefile_in, $makefile, @inputs);
8092 # These must be run after all the sources are scanned. They
8093 # use variables defined by &handle_libraries, &handle_ltlibraries,
8094 # or &handle_programs.
8099 # Variables used by distdir.am and tags.am.
8100 define_pretty_variable ('SOURCES', TRUE, INTERNAL, @sources);
8101 if (! option 'no-dist')
8103 define_pretty_variable ('DIST_SOURCES', TRUE, INTERNAL, @dist_sources);
8116 handle_minor_options;
8117 # Must come after handle_programs so that %known_programs is up-to-date.
8120 # This must come after most other rules.
8124 do_check_merge_target;
8125 handle_all ($makefile);
8128 if (var ('lib_LTLIBRARIES') && var ('bin_PROGRAMS'))
8130 $output_rules .= "install-binPROGRAMS: install-libLTLIBRARIES\n\n";
8132 if (var ('nobase_lib_LTLIBRARIES') && var ('bin_PROGRAMS'))
8134 $output_rules .= "install-binPROGRAMS: install-nobase_libLTLIBRARIES\n\n";
8138 handle_clean ($makefile);
8139 handle_factored_dependencies;
8141 # Comes last, because all the above procedures may have
8142 # defined or overridden variables.
8143 $output_vars .= output_variables;
8147 if ($exit_code != 0)
8149 verb "not writing $makefile_in because of earlier errors";
8153 mkdir ($am_relative_dir, 0755) if ! -d $am_relative_dir;
8155 # We make sure that `all:' is the first target.
8157 "$output_vars$output_all$output_header$output_rules$output_trailer";
8159 # Decide whether we must update the output file or not.
8160 # We have to update in the following situations.
8161 # * $force_generation is set.
8162 # * any of the output dependencies is younger than the output
8163 # * the contents of the output is different (this can happen
8164 # if the project has been populated with a file listed in
8165 # @common_files since the last run).
8166 # Output's dependencies are split in two sets:
8167 # * dependencies which are also configure dependencies
8168 # These do not change between each Makefile.am
8169 # * other dependencies, specific to the Makefile.am being processed
8170 # (such as the Makefile.am itself, or any Makefile fragment
8172 my $timestamp = mtime $makefile_in;
8173 if (! $force_generation
8174 && $configure_deps_greatest_timestamp < $timestamp
8175 && $output_deps_greatest_timestamp < $timestamp
8176 && $output eq contents ($makefile_in))
8178 verb "$makefile_in unchanged";
8179 # No need to update.
8183 if (-e $makefile_in)
8185 unlink ($makefile_in)
8186 or fatal "cannot remove $makefile_in: $!";
8189 my $gm_file = new Automake::XFile "> $makefile_in";
8190 verb "creating $makefile_in";
8191 print $gm_file $output;
8194 ################################################################
8199 ################################################################
8201 # Helper function for usage().
8202 sub print_autodist_files (@)
8204 my @lcomm = sort (&uniq (@_));
8207 format USAGE_FORMAT =
8208 @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<
8209 $four[0], $four[1], $four[2], $four[3]
8211 local $~ = "USAGE_FORMAT";
8214 my $rows = int(@lcomm / $cols);
8215 my $rest = @lcomm % $cols;
8226 for (my $y = 0; $y < $rows; $y++)
8228 @four = ("", "", "", "");
8229 for (my $x = 0; $x < $cols; $x++)
8231 last if $y + 1 == $rows && $x == $rest;
8233 my $idx = (($x > $rest)
8234 ? ($rows * $rest + ($rows - 1) * ($x - $rest))
8238 $four[$x] = $lcomm[$idx];
8245 # Print usage information.
8248 print "Usage: $0 [OPTION]... [Makefile]...
8250 Generate Makefile.in for configure from Makefile.am.
8253 --help print this help, then exit
8254 --version print version number, then exit
8255 -v, --verbose verbosely list files processed
8256 --no-force only update Makefile.in's that are out of date
8257 -W, --warnings=CATEGORY report the warnings falling in CATEGORY
8259 Dependency tracking:
8260 -i, --ignore-deps disable dependency tracking code
8261 --include-deps enable dependency tracking code
8264 --cygnus assume program is part of Cygnus-style tree
8265 --foreign set strictness to foreign
8266 --gnits set strictness to gnits
8267 --gnu set strictness to gnu
8270 -a, --add-missing add missing standard files to package
8271 --libdir=DIR directory storing library files
8272 -c, --copy with -a, copy missing files (default is symlink)
8273 -f, --force-missing force update of standard files
8276 Automake::ChannelDefs::usage;
8278 print "\nFiles automatically distributed if found " .
8280 print_autodist_files @common_files;
8281 print "\nFiles automatically distributed if found " .
8282 "(under certain conditions):\n";
8283 print_autodist_files @common_sometimes;
8286 Report bugs to <@PACKAGE_BUGREPORT@>.
8287 GNU Automake home page: <@PACKAGE_URL@>.
8288 General help using GNU software: <http://www.gnu.org/gethelp/>.
8291 # --help always returns 0 per GNU standards.
8298 # Print version information
8302 automake (GNU $PACKAGE) $VERSION
8303 Copyright (C) 2011 Free Software Foundation, Inc.
8304 License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl-2.0.html>
8305 This is free software: you are free to change and redistribute it.
8306 There is NO WARRANTY, to the extent permitted by law.
8308 Written by Tom Tromey <tromey\@redhat.com>
8309 and Alexandre Duret-Lutz <adl\@gnu.org>.
8311 # --version always returns 0 per GNU standards.
8315 ################################################################
8317 # Parse command line.
8318 sub parse_arguments ()
8322 my $ignore_deps = 0;
8327 'libdir=s' => \$libdir,
8328 'gnu' => sub { $strict = 'gnu'; },
8329 'gnits' => sub { $strict = 'gnits'; },
8330 'foreign' => sub { $strict = 'foreign'; },
8331 'cygnus' => \$cygnus,
8332 'include-deps' => sub { $ignore_deps = 0; },
8333 'i|ignore-deps' => sub { $ignore_deps = 1; },
8334 'no-force' => sub { $force_generation = 0; },
8335 'f|force-missing' => \$force_missing,
8336 'a|add-missing' => \$add_missing,
8337 'c|copy' => \$copy_missing,
8338 'v|verbose' => sub { setup_channel 'verb', silent => 0; },
8339 'W|warnings=s' => \@warnings,
8342 Getopt::Long::config ("bundling", "pass_through");
8344 # See if --version or --help is used. We want to process these before
8345 # anything else because the GNU Coding Standards require us to
8346 # `exit 0' after processing these options, and we can't guarantee this
8347 # if we treat other options first. (Handling other options first
8348 # could produce error diagnostics, and in this condition it is
8349 # confusing if Automake does `exit 0'.)
8350 my %cli_options_1st_pass =
8352 'version' => \&version,
8354 # Recognize all other options (and their arguments) but do nothing.
8355 map { $_ => sub {} } (keys %cli_options)
8357 my @ARGV_backup = @ARGV;
8358 Getopt::Long::GetOptions %cli_options_1st_pass
8360 @ARGV = @ARGV_backup;
8362 # Now *really* process the options. This time we know that --help
8363 # and --version are not present, but we specify them nonetheless so
8364 # that ambiguous abbreviation are diagnosed.
8365 Getopt::Long::GetOptions %cli_options, 'version' => sub {}, 'help' => sub {}
8368 set_strictness ($strict);
8369 my $cli_where = new Automake::Location;
8370 set_global_option ('cygnus', $cli_where) if $cygnus;
8371 set_global_option ('no-dependencies', $cli_where) if $ignore_deps;
8372 for my $warning (@warnings)
8374 &parse_warnings ('-W', $warning);
8377 return unless @ARGV;
8379 if ($ARGV[0] =~ /^-./)
8382 for my $k (keys %cli_options)
8384 if ($k =~ /(.*)=s$/)
8386 map { $argopts{(length ($_) == 1)
8387 ? "-$_" : "--$_" } = 1; } (split (/\|/, $1));
8390 if ($ARGV[0] eq '--')
8394 elsif (exists $argopts{$ARGV[0]})
8396 fatal ("option `$ARGV[0]' requires an argument.\n"
8397 . "Try `$0 --help' for more information");
8401 fatal ("unrecognized option `$ARGV[0]'.\n"
8402 . "Try `$0 --help' for more information");
8407 foreach my $arg (@ARGV)
8409 fatal ("empty argument\nTry `$0 --help' for more information")
8412 # Handle $local:$input syntax.
8413 my ($local, @rest) = split (/:/, $arg);
8414 @rest = ("$local.in",) unless @rest;
8415 my $input = locate_am @rest;
8418 push @input_files, $input;
8419 $output_files{$input} = join (':', ($local, @rest));
8423 error "no Automake input file found for `$arg'";
8427 fatal "no input file found among supplied arguments"
8428 if $errspec && ! @input_files;
8432 # handle_makefile ($MAKEFILE_IN)
8433 # ------------------------------
8434 # Deal with $MAKEFILE_IN.
8435 sub handle_makefile ($)
8438 ($am_file = $file) =~ s/\.in$//;
8439 if (! -f ($am_file . '.am'))
8441 error "`$am_file.am' does not exist";
8445 # Any warning setting now local to this Makefile.am.
8448 generate_makefile ($am_file . '.am', $file);
8450 # Back out any warning setting.
8455 # handle_makefiles_serial ()
8456 # --------------------------
8457 # Deal with all makefiles, without threads.
8458 sub handle_makefiles_serial ()
8460 foreach my $file (@input_files)
8462 handle_makefile ($file);
8466 # get_number_of_threads ()
8467 # ------------------------
8468 # Logic for deciding how many worker threads to use.
8469 sub get_number_of_threads
8471 my $nthreads = $ENV{'AUTOMAKE_JOBS'} || 0;
8474 unless $nthreads =~ /^[0-9]+$/;
8476 # It doesn't make sense to use more threads than makefiles,
8477 my $max_threads = @input_files;
8479 if ($nthreads > $max_threads)
8481 $nthreads = $max_threads;
8486 # handle_makefiles_threaded ($NTHREADS)
8487 # -------------------------------------
8488 # Deal with all makefiles, using threads. The general strategy is to
8489 # spawn NTHREADS worker threads, dispatch makefiles to them, and let the
8490 # worker threads push back everything that needs serialization:
8491 # * warning and (normal) error messages, for stable stderr output
8492 # order and content (avoiding duplicates, for example),
8493 # * races when installing aux files (and respective messages),
8494 # * races when collecting aux files for distribution.
8496 # The latter requires that the makefile that deals with the aux dir
8497 # files be handled last, done by the master thread.
8498 sub handle_makefiles_threaded ($)
8500 my ($nthreads) = @_;
8502 # The file queue distributes all makefiles, the message queues
8503 # collect all serializations needed for respective files.
8504 my $file_queue = Thread::Queue->new;
8506 foreach my $file (@input_files)
8508 $msg_queues{$file} = Thread::Queue->new;
8511 verb "spawning $nthreads worker threads";
8512 my @threads = (1 .. $nthreads);
8513 foreach my $t (@threads)
8515 $t = threads->new (sub
8517 while (my $file = $file_queue->dequeue)
8519 verb "handling $file";
8520 my $queue = $msg_queues{$file};
8521 setup_channel_queue ($queue, QUEUE_MESSAGE);
8522 $required_conf_file_queue = $queue;
8523 handle_makefile ($file);
8524 $queue->enqueue (undef);
8525 setup_channel_queue (undef, undef);
8526 $required_conf_file_queue = undef;
8532 # Queue all makefiles.
8533 verb "queuing " . @input_files . " input files";
8534 $file_queue->enqueue (@input_files, (undef) x @threads);
8536 # Collect and process serializations.
8537 foreach my $file (@input_files)
8539 verb "dequeuing messages for " . $file;
8540 reset_local_duplicates ();
8541 my $queue = $msg_queues{$file};
8542 while (my $key = $queue->dequeue)
8544 if ($key eq QUEUE_MESSAGE)
8546 pop_channel_queue ($queue);
8548 elsif ($key eq QUEUE_CONF_FILE)
8550 require_queued_file_check_or_copy ($queue);
8554 prog_error "unexpected key $key";
8559 foreach my $t (@threads)
8561 my @exit_thread = $t->join;
8562 $exit_code = $exit_thread[0]
8563 if ($exit_thread[0] > $exit_code);
8567 ################################################################
8569 # Parse the WARNINGS environment variable.
8572 # Parse command line.
8575 $configure_ac = require_configure_ac;
8577 # Do configure.ac scan only once.
8578 scan_autoconf_files;
8583 $msg = "\nDid you forget AC_CONFIG_FILES([Makefile]) in $configure_ac?"
8584 if -f 'Makefile.am';
8585 fatal ("no `Makefile.am' found for any configure output$msg");
8588 my $nthreads = get_number_of_threads ();
8590 if ($perl_threads && $nthreads >= 1)
8592 handle_makefiles_threaded ($nthreads);
8596 handle_makefiles_serial ();
8602 ### Setup "GNU" style for perl-mode and cperl-mode.
8604 ## perl-indent-level: 2
8605 ## perl-continued-statement-offset: 2
8606 ## perl-continued-brace-offset: 0
8607 ## perl-brace-offset: 0
8608 ## perl-brace-imaginary-offset: 0
8609 ## perl-label-offset: -2
8610 ## cperl-indent-level: 2
8611 ## cperl-brace-offset: 0
8612 ## cperl-continued-brace-offset: 0
8613 ## cperl-label-offset: -2
8614 ## cperl-extra-newline-before-brace: t
8615 ## cperl-merge-trailing-else: nil
8616 ## cperl-continued-statement-offset: 2