5 eval 'exec @PERL@ -S $0 ${1+"$@"}'
8 # automake - create Makefile.in from Makefile.am
9 # Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 2, or (at your option)
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
26 # Originally written by David Mackenzie <djm@gnu.ai.mit.edu>.
27 # Perl reimplementation by Tom Tromey <tromey@drip.colorado.edu>.
30 # Parameters set by configure. Not to be changed. NOTE: assign
31 # VERSION as string so that eg version 0.30 will print correctly.
32 $VERSION = "@VERSION@";
34 $am_dir = "@datadir@/@PACKAGE@";
37 $IGNORE_PATTERN = "^##([^#].*)?\$";
38 $WHITE_PATTERN = "^[ \t]*\$";
39 $COMMENT_PATTERN = "^#";
40 $RULE_PATTERN = "^([\$a-zA-Z_.][-.a-zA-Z0-9_(){}/]*) *:";
41 $MACRO_PATTERN = "^([A-Za-z][A-Za-z0-9_]*)[ \t]*=[ \t]*(.*)\$";
42 $BOGUS_MACRO_PATTERN = "^([^ \t]*)[ \t]*=[ \t]*(.*)\$";
44 # Constants to define the "strictness" level.
51 # Variables global to entire run.
53 # Strictness level as set on command line.
54 $default_strictness = $GNU;
56 # Name of strictness level, as set on command line.
57 $default_strictness_name = 'gnu';
59 # This is TRUE if GNU make specific automatic dependency generation
60 # code should be included in generated Makefile.in.
61 $cmdline_use_dependencies = 1;
63 # TRUE if in verbose mode.
66 # This holds our (eventual) exit status. We don't actually exit until
67 # we have processed all input files.
70 # From the Perl manual.
71 $symlink_exists = (eval 'symlink ("", "");', $@ eq '');
73 # TRUE if missing standard files should be installed.
76 # Files found by scanning configure.in for LIBOBJS.
79 # True if fp_C_PROTOTYPES appears in configure.in.
82 # Names used in AC_CONFIG_HEADER call. $config_name is the actual
83 # (first) argument. $config_header is the '.in' file. Ordinarily the
84 # second is derived from the first, but they can be different if the
85 # weird "NAME:FILE" syntax is used.
88 # Line number at which AC_CONFIG_HEADER appears in configure.in.
89 $config_header_line = 0;
91 # Directory where output files go. Actually, output files are
92 # relative to this directory.
93 $output_directory = '.';
95 # Relative location of top build directory.
98 # List of Makefile.am's to process.
101 # List of files in AC_OUTPUT without Makefile.am.
102 @other_input_files = ();
103 # Line number at which AC_OUTPUT seen.
106 # List of directories to search for configure-required files. This
107 # can be set by AC_CONFIG_AUX_DIR.
108 @config_aux_path = ('.', '..', '../..');
109 $config_aux_dir = '';
111 # Whether AC_PROG_MAKE_SET has been seen in configure.in.
114 # Whether ud_GNU_GETTEXT has been seen in configure.in.
116 # Line number at which ud_GNU_GETTEXT seen.
117 $ac_gettext_line = 0;
119 # Whether ALL_LINGUAS has been seen.
123 # Line number at which it appears.
124 $all_linguas_line = 0;
126 # 1 if AC_PROG_INSTALL seen, 2 if fp_PROG_INSTALL seen.
127 $seen_prog_install = 0;
129 # 1 if any scripts installed, 0 otherwise.
130 $scripts_installed = 0;
132 # Whether AC_PATH_XTRA has been seen in configure.in.
135 # Whether YACC variable has been seen in configure.in.
138 # TRUE if we've seen AC_CANONICAL_(HOST|SYSTEM). The presence of
139 # AC_CHECK_TOOL also sets this.
142 # TRUE if we've seen AC_PROG_RANLIB.
145 # TRUE if we've seen AC_ARG_PROGRAM.
148 # TRUE if we've seen gm_PROG_LIBTOOL or AC_PROG_LIBTOOL.
152 # TRUE if we've seen jm_MAINTAINER_MODE.
153 $seen_maint_mode = 0;
155 # TRUE if we've seen PACKAGE and VERSION.
160 # Charsets used by maintainer and in distribution. MAINT_CHARSET is
161 # handled in a funny way: if seen in the top-level Makefile.am, it is
162 # used for every directory which does not specify a different value.
163 # The rationale here is that some directories (eg gettext) might be
164 # distributions of other packages, and thus require their own charset
165 # info. However, the DIST_CHARSET must be the same for the entire
166 # package; it can only be set at top-level.
167 # FIXME this yields bugs when rebuilding. What to do? Always
168 # read (and sometimes discard) top-level Makefile.am?
170 $dist_charset = 'utf8'; # recode doesn't support this yet.
172 # Name of input file ("Makefile.in") and output file ("Makefile.am").
173 # These have no directory components.
179 &initialize_global_constants;
181 # Parse command line.
182 &parse_arguments (@ARGV);
184 # Do configure.in scan only once.
187 die "automake: no \`Makefile.am' found or specified\n"
190 # Now do all the work on each file.
191 foreach $am_file (@input_files)
193 # FIXME should support the AC_OUTPUT ":" syntax here.
194 if (! -f ($am_file . '.am'))
196 &am_error ('no such file');
200 &generate_makefile ($am_file);
204 if ($seen_prog_install <= $scripts_installed)
206 &am_conf_error (($scripts_installed ? 'fp_PROG_INSTALL' : 'AC_PROG_INSTALL')
207 . " must be used in configure.in");
208 &keyed_aclocal_warning ('fp_PROG_INSTALL')
209 if $scripts_installed;
215 ################################################################
217 # Parse command line.
220 local (@arglist) = @_;
223 &set_strictness ('gnu');
227 if ($arglist[0] eq "--version")
229 print "Automake version $VERSION\n";
232 elsif ($arglist[0] eq "--help")
236 elsif ($arglist[0] =~ /^--amdir=(.+)$/)
240 elsif ($arglist[0] eq '--amdir')
242 &require_argument (@arglist);
244 $am_dir = $arglist[0];
246 elsif ($arglist[0] =~ /^--strictness=(.+)$/)
248 &set_strictness ($1);
250 elsif ($arglist[0] eq '--gnu')
252 &set_strictness ('gnu');
254 elsif ($arglist[0] eq '--gnits')
256 &set_strictness ('gnits');
258 elsif ($arglist[0] eq '--foreign')
260 &set_strictness ('foreign');
262 elsif ($arglist[0] eq '--strictness' || $arglist[0] eq '-s')
264 &require_argument (@arglist);
266 &set_strictness ($arglist[0]);
268 elsif ($arglist[0] eq '--include-deps' || $arglist[0] eq '-i')
270 $cmdline_use_dependencies = 0;
272 elsif ($arglist[0] =~ /^--output-dir=(.*)$/)
274 # Set output directory.
275 $output_directory = $1;
277 elsif ($arglist[0] eq '--output-dir' || $arglist[0] eq '-o')
279 &require_argument (@arglist);
281 $output_directory = $arglist[0];
283 elsif ($arglist[0] eq '--add-missing' || $arglist[0] eq '-a')
287 elsif ($arglist[0] eq '--verbose' || $arglist[0] eq '-v')
291 elsif ($arglist[0] eq '--')
293 # Stop option processing.
295 push (@input_files, @arglist);
298 elsif ($arglist[0] =~ /^-/)
300 die "automake: unrecognized option -- \`$arglist[0]'\n";
304 push (@input_files, $arglist[0]);
310 # Take global strictness from whatever we currently have set.
311 $default_strictness = $strictness;
312 $default_strictness_name = $strictness_name;
315 # Ensure argument exists, or die.
318 local ($arg, @arglist) = @_;
319 die "automake: no argument given for option \`$arg'\n"
323 ################################################################
325 # Generate a Makefile.in given the name of the corresponding Makefile.
326 sub generate_makefile
328 local ($makefile) = @_;
330 ($am_file_name = $makefile) =~ s/^.*\///;
331 $in_file_name = $am_file_name . '.in';
332 $am_file_name .= '.am';
334 print "automake: creating ", $makefile, ".in\n" if $verbose;
336 &initialize_per_input;
337 $relative_dir = &dirname ($makefile);
339 # At the toplevel directory, we might need config.guess, config.sub
341 if ($relative_dir eq '.')
343 # libtool requires some files.
344 &require_conf_file_with_conf_line ($libtool_line, $FOREIGN,
345 'config.sub', 'config.guess',
346 'libtool') if $seen_libtool;
348 # AC_CANONICAL_HOST and AC_CANONICAL_SYSTEM need config.guess and
350 &require_config_file ($FOREIGN, 'config.guess', 'config.sub')
354 # We still need Makefile.in here, because sometimes the `dist'
355 # target doesn't re-run automake.
356 &push_dist_common ($in_file_name, $am_file_name);
357 push (@sources, '$(SOURCES)')
358 if &variable_defined ('SOURCES');
359 push (@objects, '$(OBJECTS)')
360 if &variable_defined ('OBJECTS');
362 # This is always the default target. This gives us freedom to do
363 # things in whatever order is convenient.
364 $output_rules .= "default: all\n\n";
365 push (@phony, 'default');
367 &read_am_file ($makefile . '.am');
370 # Check first, because we might modify some state.
371 &check_gnu_standards;
372 &check_gnits_standards;
380 # Re-init SOURCES and OBJECTS. FIXME other code shouldn't depend
381 # on this (but currently does).
382 $contents{'SOURCES'} = join (' ', @sources);
383 $contents{'OBJECTS'} = join (' ', @objects);
392 &handle_dependencies;
395 &handle_merge_targets;
400 if (! -d ($output_directory . '/' . $relative_dir))
402 &mkdir ($output_directory . '/' . $relative_dir);
404 if (! open (GM_FILE, "> " . $output_directory . '/' . $makefile . ".in"))
406 warn "automake: ${am_file}.in: cannot open: $!\n";
411 print GM_FILE $output_vars;
412 print GM_FILE $output_rules;
413 print GM_FILE $output_trailer;
418 ################################################################
420 # Handle AUTOMAKE_OPTIONS variable.
423 return if ! &variable_defined ('AUTOMAKE_OPTIONS');
425 foreach (split (' ', $contents{'AUTOMAKE_OPTIONS'}))
428 if ($_ eq 'gnits' || $_ eq 'gnu' || $_ eq 'foreign')
430 &set_strictness ($_);
432 elsif ($_ eq 'no-installman' || $_ eq 'ansi2knr'
433 || $_ eq 'dist-shar' || $_ eq 'dist-zip'
436 # Explicitly recognize these.
438 elsif ($_ eq 'no-dependencies')
440 $use_dependencies = 0;
442 elsif (/[0-9]+\.?[0-9]+/)
444 # Got a version number. Is the syntax too strict?
447 &am_line_error ('AUTOMAKE_OPTIONS',
448 "require version $_, only have $VERSION");
454 &am_line_error ('AUTOMAKE_OPTIONS',
455 'option ', $_, 'not recognized');
460 # Return object extension. Just once, put some code into the output.
461 sub get_object_extension
463 if (! $dir_holds_sources)
467 if (&variable_defined ('CONFIG_HEADER'))
469 ($xform = &dirname ($contents{'CONFIG_HEADER'}))
471 $xform = '-I' . $xform;
473 $xform = 's/\@CONFIG_INCLUDE_SPEC\@/' . $xform . '/go';
474 $output_vars .= &file_contents_with_transform ($xform,
476 $output_rules .= &file_contents ('compile');
477 &push_phony_cleaners ('compile');
479 # If using X, include some extra variable definitions. NOTE
480 # we don't want to force these into CFLAGS or anything,
481 # because not all programs will necessarily use X.
484 $output_vars .= ("X_CFLAGS = \@X_CFLAGS\@\n"
485 . "X_LIBS = \@X_LIBS\@\n"
486 . "X_EXTRA_LIBS = \@X_EXTRA_LIBS\@\n"
487 . "X_PRE_LIBS = \@X_PRE_LIBS\@\n");
490 # Check for automatic de-ANSI-fication.
491 $dir_holds_sources = '.o';
492 push (@suffixes, '.c', '.o');
493 push (@clean, 'compile');
495 if (defined $options{'ansi2knr'})
497 if (! $fp_c_prototypes)
499 &am_line_error ('AUTOMAKE_OPTIONS',
500 "option \`ansi2knr' in use but \`fp_C_PROTOTYPES' not in configure.in");
501 &keyed_aclocal_warning ('fp_C_PROTOTYPES');
502 # Only give this error once.
503 $fp_c_prototypes = 1;
506 $dir_holds_sources = '$o';
507 push (@suffixes, '._c', '._o');
509 &require_file_with_line ('AUTOMAKE_OPTIONS', $FOREIGN,
510 'ansi2knr.c', 'ansi2knr.1');
512 $output_vars .= &file_contents ('kr-vars');
513 $output_rules .= &file_contents ('compile-kr');
514 $output_rules .= &file_contents ('clean-kr');
517 &push_phony_cleaners ('kr');
520 return $dir_holds_sources;
523 # Handle SOURCE->OBJECT transform for one program or library.
524 sub handle_source_transform
526 # one_file is canonical name. unxformed is given name. obj is
528 local ($one_file, $unxformed, $obj) = @_;
529 local ($objpat) = $obj;
530 $objpat =~ s/(\W)/\\$1/g;
532 if (&variable_defined ($one_file . "_OBJECTS"))
534 &am_line_error ($one_file . '_OBJECTS',
535 $one_file . '_OBJECTS', 'should not be defined');
536 # No point in continuing.
540 local ($source_list);
542 foreach $prefix ('', 'EXTRA_')
545 if (&variable_defined ($prefix . $one_file . "_SOURCES"))
547 push (@sources, '$(' . $prefix . $one_file . "_SOURCES)");
548 push (@objects, '$(' . $prefix . $one_file . "_OBJECTS)")
549 unless $prefix eq 'EXTRA_';
550 $source_list = $contents{$prefix . $one_file . "_SOURCES"};
552 elsif ($prefix eq '')
554 $output_vars .= $one_file . "_SOURCES = " . $unxformed . ".c\n";
555 push (@sources, $unxformed . '.c');
556 push (@objects, $unxformed . $obj);
557 $source_list = $unxformed . ".c ";
561 $output_vars .= "EXTRA_" . $one_file . "_SOURCES =\n";
566 # Turn sources into objects.
567 local (@files) = split (' ', $source_list);
568 local (@result) = ();
571 # Skip header files, including C++-ish ones.
574 # Skip things that look like macro references.
575 next if /^\$\(.*\)$/;
576 next if /^\$\{.*\}$/;
577 # Skip things that look like configure substitutions.
582 # Automatically include generated .c file in
584 &push_dist_common ($1 . '.c');
587 # Transform source files into .o files.
590 s/\.[cCmylfs]$/$obj/g;
592 unless $prefix eq 'EXTRA_';
594 # Transform .o or $o file into .P file (for automatic
597 $dep_files{'$(srcdir)/.deps/' . $_} = 1;
600 &pretty_print ($one_file . "_OBJECTS =", "", @result)
601 unless $prefix eq 'EXTRA_';
605 if (&variable_defined ('CONFIG_HEADER'))
607 $output_rules .= ('$(' . $one_file . "_OBJECTS): "
608 . $contents{'CONFIG_HEADER'} . "\n");
614 # Special-case @ALLOCA@ and @LIBOBJS@ in _LDADD or _LIBADD variables.
615 sub handle_lib_objects
619 die "programming error in handle_lib_objects"
620 if ! &variable_defined ($var);
622 # We recognize certain things that are commonly put in LIBADD or
626 foreach $lsearch (split (' ', $contents{$var}))
628 # Automatically handle @LIBOBJS@ and @ALLOCA@. Basically this
629 # means adding entries to dep_files.
630 if ($lsearch eq '@LIBOBJS@')
632 local ($iter, $rewrite);
633 foreach $iter (keys %libsources)
635 if ($iter ne 'alloca.c')
637 ($rewrite = $iter) =~ s/\.c$/.P/;
638 $dep_files{'$(srcdir)/.deps/' . $rewrite} = 1;
639 &require_file_with_line ($var, $FOREIGN, $iter);
643 elsif ($lsearch eq '@ALLOCA@')
645 &am_line_error ($var,
646 "\@ALLOCA\@ seen but \`AC_FUNC_ALLOCA' not in \`configure.in'")
647 if ! defined $libsources{'alloca.c'};
648 $dep_files{'$(srcdir)/.deps/alloca.P'} = 1;
649 &require_file_with_line ($var, $FOREIGN, 'alloca.c');
657 local (@proglist) = &am_install_var ('-clean',
658 'programs', 'PROGRAMS',
659 'bin', 'sbin', 'libexec', 'pkglib',
661 return if ! @proglist;
663 # If a program is installed, this is required. We only want this
664 # error to appear once.
665 &am_conf_error ("AC_ARG_PROGRAM must be used in configure.in")
666 unless $seen_arg_prog;
669 local ($obj) = &get_object_extension;
670 local ($one_file, $xname, $munge);
672 foreach $one_file (@proglist)
674 # Canonicalize names.
675 ($xname = $one_file) =~ tr/A-Za-z0-9_/_/c;
676 if ($xname ne $one_file)
679 foreach $xt ('_LDADD', '_SOURCES', '_OBJECTS', '_DEPENDENCIES')
681 &am_line_error ($one_file . $xt,
682 "invalid variable \`" . $one_file . $xt
683 . "'; should be \`" . $xname . $xt . "'")
684 if &variable_defined ($one_file . $xt);
688 &handle_source_transform ($xname, $one_file, $obj);
690 if (&variable_defined ($xname . "_LDADD"))
692 &handle_lib_objects ($xname . '_LDADD');
696 # User didn't define prog_LDADD override. So do it.
697 $output_vars .= $xname . '_LDADD = $(LDADD)' . "\n";
701 &file_contents_with_transform
702 ('s/\@PROGRAM\@/' . $one_file . '/go;'
703 . 's/\@XPROGRAM\@/' . $xname . '/go;',
707 &handle_lib_objects ('LDADD')
708 if &variable_defined ('LDADD');
714 local (@liblist) = &am_install_var ('-no-all', '-clean',
715 'libraries', 'LIBRARIES',
716 'lib', 'pkglib', 'noinst', 'check');
717 return if ! @liblist;
721 # FIXME need am_line_error here. But we don't know which
722 # variable exists. Must add a loop... No. Must have
723 # am_install_var return a hash. Otherwise the user could add
724 # install directories that we'd never find.
725 &am_error ("library requires either \`AC_PROG_RANLIB' or `gm_PROG_LIBTOOL' in configure.in");
726 # Only get this error once.
730 # Generate _LIBFILES variables. Too bad we can't do this in
732 local ($onedir, $onelib);
734 foreach $onedir ('lib', 'pkglib', 'noinst', 'check')
736 if (&variable_defined ($onedir . '_LIBRARIES'))
739 foreach $onelib (split (' ', $contents{$onedir . '_LIBRARIES'}))
741 push (@outlist, 'lib' . $onelib . '.a');
743 &pretty_print ($onedir . '_LIBFILES =', "", @outlist);
746 push (@all, '$(LIBFILES)');
748 local ($obj) = &get_object_extension;
750 foreach $onelib (@liblist)
752 if (&variable_defined ($onelib . '_LIBADD'))
754 &handle_lib_objects ($onelib . '_LIBADD');
758 # Generate support for conditional object inclusion in
760 $output_vars .= $onelib . "_LIBADD =\n";
763 &handle_source_transform ($onelib, $onelib, $obj);
766 &file_contents_with_transform ('s/\@LIBRARY\@/' . $onelib . '/go',
770 # Turn "foo" into "libfoo.a" and include macro definition.
771 grep (($_ = 'lib' . $_ . '.a') && 0, @liblist);
773 if (! &variable_defined ('LIBFILES'))
775 &pretty_print ('LIBFILES = ', "", @liblist);
780 $output_vars .= ('AR = $(LIBTOOL) archive' . "\n"
781 . 'RANLIB = $(LIBTOOL) ranlib' . "\n"
782 . 'LCOMPILE = $(LIBTOOL) compile $(DEFS) $(INCLUDES)'
783 . ' $(CPPFLAGS) $(CFLAGS)' . "\n");
787 $output_vars .= ('AR = ar' . "\n"
788 . 'RANLIB = @RANLIB@' . "\n");
795 # NOTE we no longer automatically clean SCRIPTS, because it is
796 # useful to sometimes distribute scripts verbatim. This happens
797 # eg in Automake itself.
799 $msi = &am_install_var ('scripts', 'SCRIPTS',
800 'bin', 'sbin', 'libexec', 'pkgdata',
803 # We really only want a boolean value.
804 $scripts_installed = 1 if $msi;
806 if ($scripts_installed)
808 # If a program is installed, this is required. We only want this
809 # error to appear once.
810 &am_conf_error ("AC_ARG_PROGRAM must be used in configure.in")
811 unless $seen_arg_prog;
816 # Search a file for a "version.texi" Texinfo include. Return the name
817 # of the include file if found, or the empty string if not. A
818 # "version.texi" file is actually any file whose name matches
820 sub grep_for_vers_texi
822 local ($filename) = @_;
824 if (! open (TEXI, $filename))
826 &am_error ("couldn't open \`$filename': $!");
829 print "automake: reading $filename\n" if $verbose;
833 if (/^\@include\s+(vers[^.]*\.texi)\s*$/)
845 # Handle all Texinfo source.
848 &am_line_error ('TEXINFOS',
849 "\`TEXINFOS' is an anachronism; use \`info_TEXINFOS'")
850 if &variable_defined ('TEXINFOS');
851 return if (! &variable_defined ('info_TEXINFOS')
852 && ! &variable_defined ('html_TEXINFOS'));
854 local (@texis) = split (' ', $contents{'info_TEXINFOS'});
856 local (@infos_list, @info_deps_list, @dvis_list, @texi_deps);
857 local ($infobase, $info_cursor);
861 local ($tc_cursor, @texi_cleans);
864 foreach $info_cursor (@texis)
866 ($infobase = $info_cursor) =~ s/\.texi$//;
868 # If 'version.texi' is referenced by input file, then include
869 # automatic versioning capability.
871 = &grep_for_vers_texi ($relative_dir . "/" . $info_cursor);
874 &am_error ("\`$vtexi', included in \`$info_cursor', also included in \`$versions{$vtexi}'")
875 if (defined $versions{$vtexi});
876 $versions{$vtexi} = $info_cursor;
878 # We number the stamp-vti files. This is doable since the
879 # actual names don't matter much. We only number starting
880 # with the second one, so that the common case looks nice.
881 $vti = 'vti' . ($done ? $done : '');
882 &push_dist_common ($vtexi, 'stamp-' . $vti);
886 &require_conf_file_with_line ('info_TEXINFOS', $FOREIGN,
892 ($conf_pat = $config_aux_dir) =~ s/(\W)/\\$1/g;
894 &file_contents_with_transform
895 ('s/\@TEXI\@/' . $info_cursor . '/g; '
896 . 's/\@VTI\@/' . $vti . '/g; '
897 . 's/\@VTEXI\@/' . $vtexi . '/g;'
898 . 's,\@MDDIR\@,' . $conf_pat . ',g;',
901 &push_phony_cleaners ($vti);
904 # If user specified file_TEXINFOS, then use that as explicit
907 push (@texi_deps, $info_cursor);
908 push (@texi_deps, $vtexi) if $vtexi;
910 # Canonicalize name first.
911 ($canonical = $infobase) =~ tr/A-Za-z0-9_/_/c;
912 if (&variable_defined ($canonical . "_TEXINFOS"))
914 push (@texi_deps, '$(' . $canonical . '_TEXINFOS)');
915 &push_dist_common ('$(' . $canonical . '_TEXINFOS)');
918 $output_rules .= ("\n" . $infobase . ".info: "
919 . join (' ', @texi_deps) . "\n\n");
921 push (@infos_list, $infobase . '.info*');
922 push (@info_deps_list, $infobase . '.info');
923 push (@dvis_list, $infobase . '.dvi');
925 # Generate list of things to clean for this target. We do
926 # this explicitly because otherwise too many things could be
927 # removed. In particular the ".log" extension might
928 # reasonably be used in other contexts by the user.
929 foreach $tc_cursor ('aux', 'cp', 'cps', 'dvi', 'fn', 'fns',
930 'ky', 'log', 'pg', 'toc', 'tp', 'vr', 'op')
932 push (@texi_cleans, $infobase . '.' . $tc_cursor);
937 $output_vars .= &file_contents ('texinfos-vars');
938 $output_rules .= &file_contents ('texinfos');
939 push (@phony, 'install-info', 'uninstall-info');
942 $output_rules .= "\nmostlyclean-info:\n";
943 &pretty_print_rule ("\trm -f", "\t ", @texi_cleans);
944 $output_rules .= ("\nclean-info:\n\ndistclean-info:\n\n"
945 . "maintainer-clean-info:\n\t"
946 . 'rm -f $(INFOS)' . "\n");
947 &push_phony_cleaners ('info');
949 push (@suffixes, '.texi', '.info', '.dvi');
950 push (@uninstall, 'uninstall-info');
951 push (@clean, 'info');
952 push (@info, '$(INFO_DEPS)');
953 push (@dvi, '$(DVIS)');
954 push (@installdirs, '$(infodir)');
955 unshift (@install_data, 'install-info');
957 # Make sure documentation is made and installed first. Use
958 # $(INFO_DEPS), not 'info', because otherwise recursive makes get
959 # run twice during "make all".
960 unshift (@all, '$(INFO_DEPS)');
962 $output_vars .= ("INFOS = " . join (' ', @infos_list) . "\n"
963 . "INFO_DEPS = " . join (' ', @info_deps_list) . "\n"
964 . "DVIS = " . join (' ', @dvis_list) . "\n"
965 # This next isn't strictly needed now -- the
966 # places that look here could easily be changed
967 # to look in info_TEXINFOS. But this is probably
968 # better, in case noinst_TEXINFOS is ever
970 . "TEXINFOS = " . $contents{'info_TEXINFOS'} . "\n\n");
972 # Do some error checking.
973 &require_file_with_line ('info_TEXINFOS', $FOREIGN, 'texinfo.tex');
976 # Handle any man pages.
979 &am_line_error ('MANS', "\`MANS' is an anachronism; use \`man_MANS'")
980 if &variable_defined ('MANS');
981 return if ! &variable_defined ('man_MANS');
983 # We generate the manpage install code by hand to avoid the use of
984 # basename in the generated Makefile.
985 local (@mans) = split (' ', $contents{'man_MANS'});
986 local (%sections, %inames, %secmap, %fullsecmap);
989 # FIXME: statement without effect:
990 /^(.*)\.([0-9])([a-z]*)$/;
994 $fullsecmap{$1} = $2 . $3;
997 # We don't really need this, but we use it in case we ever want to
998 # support noinst_MANS.
999 $output_vars .= "MANS = " . $contents{'man_MANS'} . "\n";
1001 # Generate list of install dirs.
1002 $output_rules .= "install-man: \$(MANS)\n";
1003 foreach (keys %sections)
1005 push (@installdirs, '$(mandir)/man' . $_);
1006 $output_rules .= ("\t" . '$(mkinstalldirs) $(mandir)/man'
1009 push (@phony, 'install-man');
1011 # Generate install target.
1013 foreach $key (keys %inames)
1015 $_ = $install_man_format;
1016 s/\@SECTION\@/$secmap{$key}/g;
1017 s/\@MAN\@/$inames{$key}/g;
1018 s/\@FULLSECT\@/$fullsecmap{$key}/g;
1019 s/\@MANBASE\@/$key/g;
1020 $output_rules .= $_;
1022 $output_rules .= "\n";
1024 $output_rules .= "uninstall-man:\n";
1025 foreach $key (keys %inames)
1027 $_ = $uninstall_man_format;
1028 s/\@SECTION\@/$secmap{$key}/g;
1029 s/\@MAN\@/$inames{$key}/g;
1030 s/\@FULLSECT\@/$fullsecmap{$key}/g;
1031 s/\@MANBASE\@/$key/g;
1032 $output_rules .= $_;
1034 $output_rules .= "\n";
1035 push (@phony, 'uninstall-man');
1037 $output_vars .= &file_contents ('mans-vars');
1039 if (! defined $options{'no-installman'})
1041 push (@install_data, 'install-man');
1042 push (@uninstall, 'uninstall-man');
1043 push (@all, '$(MANS)');
1047 # Handle DATA variables.
1050 &am_install_var ('data', 'DATA', 'data', 'sysconf',
1051 'sharedstate', 'localstate', 'pkgdata',
1058 local ($tagging) = 0;
1060 push (@phony, 'tags');
1061 if (&variable_defined ('SUBDIRS'))
1063 $output_rules .= &file_contents ('tags');
1064 push (@phony, 'tags-recursive');
1067 elsif ($dir_holds_sources || &variable_defined ('ETAGS_ARGS'))
1069 $output_rules .= &file_contents ('tags-subd');
1075 $output_rules .= &file_contents ('tags-clean');
1076 push (@clean, 'tags');
1077 &push_phony_cleaners ('tags');
1081 # Every Makefile must define some sort of TAGS rule.
1082 # Otherwise, it would be possible for a top-level "make TAGS"
1083 # to fail because some subdirectory failed.
1084 $output_rules .= "tags: TAGS\nTAGS:\n\n";
1088 # Worker for handle_dist.
1089 sub handle_dist_worker
1091 $output_rules .= 'distdir: $(DEP_DISTFILES)' . "\n";
1093 # Initialization; only at top level.
1094 if ($relative_dir eq '.')
1096 if ($strictness >= $GNITS)
1098 # For Gnits users, this is pretty handy. Look at 15 lines
1099 # in case some explanatory text is desirable.
1100 $output_rules .= ' @if sed 15q $(srcdir)/NEWS | grep -e "$(VERSION)" > /dev/null; then :; else \\
1101 echo "NEWS not updated; not releasing" 1>&2; \\
1109 # Create dist directory.
1112 chmod 777 $(distdir)
1115 # Only run automake in `dist' target if --include-deps not
1116 # specified. That way the recipient of a distribution can run
1117 # "make dist" and not need Automake.
1118 if ($cmdline_use_dependencies)
1122 # We need an absolute path for --output-dir. Thus the
1124 ' distdir=`cd $(distdir) && pwd` \\
1126 && automake --include-deps --output-dir=$$distdir --strictness='
1127 # Set strictness of output.
1128 . $strictness_name . "\n"
1133 # In loop, test for file existence because sometimes a file gets
1134 # included in DISTFILES twice. For example this happens when a
1135 # single source file is used in building more than one program.
1136 # Also, there are situations in which "ln" can fail. For instance
1137 # a file to distribute could actually be a cross-filesystem
1138 # symlink -- this can easily happen if "gettextize" was run on the
1139 # distribution. Note that DISTFILES can contain a wildcard (for
1140 # info files, sigh), so we must use the echo trick.
1141 $output_rules .= ' @for file in `cd $(srcdir) && echo $(DISTFILES)`; do \\
1142 test -f $(distdir)/$$file \\
1143 || ln $(srcdir)/$$file $(distdir)/$$file 2> /dev/null \\
1144 || cp -p $(srcdir)/$$file $(distdir)/$$file; \\
1148 # If we have SUBDIRS, create all dist subdirectories and do
1150 if (&variable_defined ('SUBDIRS'))
1152 # Test for directory existence here because previous automake
1153 # invocation might have created some directories. Note that
1154 # we explicitly set distdir for the subdir make; that lets us
1155 # mix-n-match many automake-using packages into one large
1156 # package, and have "dist" at the top level do the right
1158 $output_rules .= ' for subdir in $(SUBDIRS); do \\
1159 test -d $(distdir)/$$subdir \\
1160 || mkdir $(distdir)/$$subdir \\
1162 chmod 777 $(distdir)/$$subdir; \\
1163 (cd $$subdir && $(MAKE) distdir=../$(distdir)/$$subdir distdir) \\
1169 # If the target `dist-hook' exists, run it now. This allows
1170 # users to do random weird things to the distribution before it is
1172 if (defined $contents{'dist-hook'})
1174 $output_rules .= "\t\$(MAKE) dist-hook\n";
1177 push (@phony, 'distdir');
1180 # Handle 'dist' target.
1183 # Set up maint_charset.
1184 $local_maint_charset = $contents{'MAINT_CHARSET'}
1185 if &variable_defined ('MAINT_CHARSET');
1186 $maint_charset = $local_maint_charset
1187 if $relative_dir eq '.';
1189 if (&variable_defined ('DIST_CHARSET'))
1191 &am_line_error ('DIST_CHARSET',
1192 "DIST_CHARSET defined but no MAINT_CHARSET defined")
1193 if ! $local_maint_charset;
1194 if ($relative_dir eq '.')
1196 $dist_charset = $contents{'DIST_CHARSET'}
1200 &am_line_error ('DIST_CHARSET',
1201 "DIST_CHARSET can only be defined at top level");
1205 # Look for common files that should be included in distribution.
1207 foreach $cfile (@common_files)
1209 if (-f ($relative_dir . "/" . $cfile))
1211 &push_dist_common ($cfile);
1215 # Keys of %dist_common are names of files to distributed. We put
1216 # README first because it then becomes easier to make a
1217 # Usenet-compliant shar file (in these, README must be first).
1218 # FIXME do more ordering of files here.
1220 if (defined $dist_common{'README'})
1222 push (@coms, 'README');
1223 undef $dist_common{'README'};
1225 push (@coms, sort keys %dist_common);
1227 &pretty_print ("DIST_COMMON =", "", @coms);
1228 $output_vars .= "\n";
1231 $output_vars .= &file_contents ('dist-vars');
1233 # Put these things in rules section so it is easier for whoever
1234 # reads Makefile.in.
1235 if ($relative_dir eq '.')
1237 $output_rules .= "\n" . 'distdir = $(PACKAGE)-$(VERSION)' . "\n";
1241 $output_rules .= ("\nsubdir = " . $relative_dir . "\n"
1242 . 'distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)'
1246 # Generate 'dist' target, and maybe dist-shar / dist-zip.
1247 if ($relative_dir eq '.')
1249 # Rule to check whether a distribution is viable.
1250 $output_rules .= '# This target untars the dist file and tries a VPATH configuration. Then
1251 # it guarantees that the distribution is self-contained by making another
1255 $(TAR) zxf $(distdir).tar.gz
1256 mkdir $(distdir)/=build
1257 mkdir $(distdir)/=inst
1258 dc_install_base=`cd $(distdir)/=inst && pwd`; \\
1259 cd $(distdir)/=build \\
1260 && ../configure --srcdir=.. --prefix=$$dc_install_base \\
1263 && $(MAKE) install \\
1264 && $(MAKE) installcheck \\
1267 @echo "========================"; \\
1268 echo "$(distdir).tar.gz is ready for distribution"; \\
1269 echo "========================"
1272 $output_rules .= 'dist: distdir' . "\n\t";
1273 $output_rules .= 'chmod -R a+r $(distdir)' . "\n\t";
1274 $output_rules .= '$(TAR) chozf $(distdir).tar.gz $(distdir)';
1275 $output_rules .= "\n\t" . 'rm -rf $(distdir)' . "\n";
1277 if (defined $options{'dist-shar'})
1279 $output_rules .= 'dist-shar: distdir' . "\n\t";
1280 $output_rules .= 'chmod -R a+r $(distdir)' . "\n\t";
1281 $output_rules .= 'shar $(distdir) | gzip > $(distdir).shar.gz';
1282 $output_rules .= "\n\t" . 'rm -rf $(distdir)' . "\n";
1285 if (defined $options{'dist-zip'})
1287 $output_rules .= 'dist-zip: distdir' . "\n\t";
1288 $output_rules .= 'chmod -R a+r $(distdir)' . "\n\t";
1289 $output_rules .= 'zip -rq $(distdir).zip $(distdir)';
1290 $output_rules .= "\n\t" . 'rm -rf $(distdir)' . "\n";
1294 # Generate distdir target.
1295 &handle_dist_worker;
1298 # Handle auto-dependency code.
1299 sub handle_dependencies
1301 if ($use_dependencies)
1303 # Include GNU-make-specific auto-dep code.
1304 if ($dir_holds_sources)
1306 &pretty_print ('DEP_FILES =', "", sort keys %dep_files);
1307 $output_rules .= &file_contents ('depend');
1312 # Include any auto-generated deps that are present.
1313 if (-d ($relative_dir . "/.deps") && -f ($relative_dir . "/.deps/.P"))
1316 local ($gpat) = $relative_dir . "/.deps/*.P";
1318 foreach $depfile (<${gpat}>)
1320 if (! open (DEP_FILE, $depfile))
1322 &am_error ("couldn't open \`$depfile': $!");
1325 print "automake: reading $depfile\n" if $verbose;
1327 # Slurp entire file.
1328 $output_rules .= join ('', <DEP_FILE>);
1333 $output_rules .= "\n";
1338 # Handle subdirectories.
1341 if (! &variable_defined ('SUBDIRS'))
1344 ("ud_GNU_GETTEXT in configure.in but SUBDIRS not defined")
1345 if $seen_gettext && $relative_dir eq '.';
1349 &require_file_with_conf_line ($ac_gettext_line, $FOREIGN, 'ABOUT-NLS')
1352 return if ! &variable_defined ('SUBDIRS');
1354 # Make sure each directory mentioned in SUBDIRS actually exists.
1356 foreach $dir (split (' ', $contents{'SUBDIRS'}))
1358 # Skip directories substituted by configure.
1359 next if $dir =~ /^\@.*\@$/;
1360 &am_line_error ('SUBDIRS',
1361 "required directory $relative_dir/$dir does not exist")
1362 if ! -d $relative_dir . '/' . $dir;
1365 $output_rules .= &file_contents ('subdirs');
1367 # Push a bunch of phony targets.
1369 foreach $phonies ('-data', '-exec', 'dirs')
1371 push (@phony, 'install' . $phonies . '-recursive');
1372 push (@phony, 'uninstall' . $phonies . '-recursive');
1374 foreach $phonies ('all', 'check', 'installcheck', 'info', 'dvi')
1376 push (@phony, $phonies . '-recursive');
1378 &push_phony_cleaners ('recursive');
1380 push (@check, "check-recursive");
1381 push (@installcheck, "installcheck-recursive");
1382 push (@info, "info-recursive");
1383 push (@dvi, "dvi-recursive");
1385 $recursive_install = 1;
1388 # Handle remaking and configure stuff.
1389 sub handle_configure
1391 # If SUBDIRS defined, require AC_PROG_MAKE_SET.
1392 &am_line_error ('SUBDIRS', "AC_PROG_MAKE_SET must be used in configure.in")
1393 if &variable_defined ('SUBDIRS') && ! $seen_make_set;
1395 local ($top_reldir);
1396 if ($relative_dir ne '.')
1399 $output_rules .= &file_contents ('remake-subd');
1400 $top_reldir = '../';
1404 if (-f 'aclocal.m4')
1406 $output_vars .= "ACLOCAL = aclocal.m4\n";
1407 &push_dist_common ('aclocal.m4');
1409 $output_rules .= &file_contents ('remake');
1412 ("\`install.sh' is an anachronism; use \`install-sh' instead")
1413 if -f $relative_dir . '/install.sh';
1415 # If we have a configure header, require it.
1418 # FIXME this restriction should be lifted.
1419 # FIXME first see if it is even needed as-is.
1420 &am_conf_line_error ($config_header_line,
1421 "argument to AC_CONFIG_HEADER contains \`/'\n")
1422 if ($config_header =~ /\//);
1424 &require_file_with_conf_line ($config_header_line,
1425 $FOREIGN, $config_header);
1427 # Header defined and in this directory.
1428 if (-f 'acconfig.h')
1430 $output_vars .= "ACCONFIG = acconfig.h\n";
1431 &push_dist_common ('acconfig.h');
1433 if (-f $config_name . '.top')
1435 $output_vars .= "CONFIG_TOP = ${config_name}.top\n";
1436 &push_dist_common ($config_name . '.top');
1438 if (-f $config_name . '.bot')
1440 $output_vars .= "CONFIG_BOT = ${config_name}.bot\n";
1441 &push_dist_common ($config_name . '.bot');
1444 &require_file_with_conf_line ($config_header_line, $FOREIGN,
1447 $output_rules .= &file_contents ('remake-hdr');
1448 $output_vars .= "CONFIG_HEADER_IN = ${config_header}\n";
1454 # Set location of mkinstalldirs.
1455 if ($config_aux_dir ne '.' && $config_aux_dir ne '')
1457 $output_vars .= 'mkinstalldirs = ' . $config_aux_dir;
1461 $output_vars .= 'mkinstalldirs = $(top_srcdir)';
1463 $output_vars .= '/mkinstalldirs' . "\n";
1465 &am_line_error ('CONFIG_HEADER',
1466 "\`CONFIG_HEADER' is an anachronism; now determined from \`configure.in'")
1467 if &variable_defined ('CONFIG_HEADER');
1469 # Generate CONFIG_HEADER define, and define interally.
1470 $output_vars .= "CONFIG_HEADER = ${top_builddir}/${config_name}\n"
1472 $contents{'CONFIG_HEADER'} = "${top_builddir}/${config_name}"
1475 # Now look for other files in this directory which must be remade
1476 # by config.status, and generate rules for them.
1477 local ($file, $local, $input);
1478 foreach $file (@other_input_files)
1480 # Skip files not in this directory, any Makefile, and the
1481 # config header. These last two must be handled specially.
1482 next unless &dirname ($file) eq $relative_dir;
1483 next if $file eq $top_builddir . '/' . $config_name;
1484 ($local = $file) =~ s/^.*\///;
1485 next if $local eq 'Makefile';
1487 if ($local =~ /^(.*):(.*)$/)
1489 # This is the ":" syntax of AC_OUTPUT.
1496 $input = $local . '.in';
1498 # FIXME when using autoconf ":" syntax, should we set CONFIG_FILES
1500 $output_rules .= ($local . ': '
1501 . '$(top_builddir)/config.status ' . $input . "\n"
1503 . 'cd $(top_builddir) && CONFIG_FILES='
1504 . ($relative_dir eq '.' ? '' : '$(subdir)/')
1505 . '$@ CONFIG_HEADERS= ./config.status'
1508 &require_file_with_conf_line ($ac_output_line, $FOREIGN,
1516 &am_install_var ('header', 'HEADERS', 'include',
1517 'oldinclude', 'pkginclude',
1523 return if ! $seen_gettext || $relative_dir ne '.';
1525 # As of 0.10.6, gettext still wants @INTLSUB@ and @POSUB@ in
1526 # SUBDIRS. This is going to change in a future version. So for
1527 # now we simply do no checking.
1528 if (0 && &variable_defined ('SUBDIRS'))
1532 "ud_GNU_GETTEXT in configure.in but \`po' not in SUBDIRS")
1533 if $contents{'SUBDIRS'} !~ /\bpo\b/;
1536 "ud_GNU_GETTEXT in configure.in but \`intl' not in SUBDIRS")
1537 if $contents{'SUBDIRS'} !~ /\bintl\b/;
1540 # Ensure that each language in ALL_LINGUAS has a .po file, and
1541 # each po file is mentioned in ALL_LINGUAS.
1544 local (%linguas) = ();
1545 grep ($linguas{$_} = 1, split (' ', $all_linguas));
1552 &am_line_error ($all_linguas_line,
1553 ("po/$_.po exists but \`$_' not in \`ALL_LINGUAS'"))
1557 foreach (keys %linguas)
1559 &am_line_error ($all_linguas_line,
1560 "$_ in \`ALL_LINGUAS' but po/$_.po does not exist")
1566 &am_error ("ud_GNU_GETTEXT in configure.in but \`ALL_LINGUAS' not defined");
1570 # Handle footer elements.
1573 if ($contents{'SOURCES'})
1575 &pretty_print ('SOURCES =', "",
1576 split (' ', $contents{'SOURCES'}));
1578 if ($contents{'OBJECTS'})
1580 &pretty_print ('OBJECTS =', "",
1581 split (' ', $contents{'OBJECTS'}));
1583 if ($contents{'SOURCES'} || $contents{'OBJECTS'})
1585 $output_vars .= "\n";
1588 if (defined $contents{'SUFFIXES'})
1590 push (@suffixes, '$(SUFFIXES)');
1593 $output_trailer .= ".SUFFIXES:\n";
1596 $output_trailer .= ".SUFFIXES: " . join (' ', @suffixes) . "\n";
1598 $output_trailer .= &file_contents ('footer');
1601 # Deal with installdirs target.
1602 sub handle_installdirs
1604 # GNU Makefile standards recommend this.
1605 $output_rules .= ("installdirs:"
1606 . ($recursive_install
1607 ? " installdirs-recursive\n"
1609 push (@phony, 'installdirs');
1612 &pretty_print_rule ("\t" . '$(mkinstalldirs) ', "\t\t",
1615 $output_rules .= "\n";
1618 # There are several targets which need to be merged. This is because
1619 # their complete definition is compiled from many parts. Note that we
1620 # avoid double colon rules, otherwise we'd use them instead.
1621 sub handle_merge_targets
1623 push (@all, 'Makefile');
1624 push (@all, $config_name)
1625 if $config_name && &dirname ($config_name) eq $relative_dir;
1627 &do_one_merge_target ('info', @info);
1628 &do_one_merge_target ('dvi', @dvi);
1630 if (! &variable_defined ('SUBDIRS') || $relative_dir ne '.')
1632 # 'check' must depend on 'all', but not at top level.
1634 unshift (@check, 'all');
1635 unshift (@install, 'all');
1637 &do_one_merge_target ('check', @check);
1638 &do_one_merge_target ('installcheck', @installcheck);
1640 # Handle the various install targets specially. We do this so
1641 # that (eg) "make install-exec" will run "install-exec-recursive"
1642 # if required, but "make install" won't run it twice. Step one is
1643 # to see if the user specified local versions of any of the
1644 # targets we handle. "all" is treated as one of these since
1645 # "install" can run it.
1646 push (@install_exec, 'install-exec-local')
1647 if defined $contents{'install-exec-local'};
1648 push (@install_data, 'install-data-local')
1649 if defined $contents{'install-data-local'};
1650 push (@uninstall, 'uninstall-local')
1651 if defined $contents{'uninstall-local'};
1652 push (@all, 'all-local')
1653 if defined $contents{'all-local'};
1655 if (defined $contents{'install-local'})
1657 &am_line_error ('install-local',
1658 "use \`install-data' or \`install-exec', not \`install'");
1661 # Step two: if we are doing recursive makes, write out the
1662 # appropriate rules.
1664 if ($recursive_install)
1666 push (@install, 'install-recursive');
1670 local (@hackall) = ();
1671 if ($config_name && &dirname ($config_name) eq $relative_dir)
1674 # This is kind of a hack, but I couldn't see a better
1675 # way to handle it. In this particular case, we need
1676 # to make sure config.h is built before we recurse.
1677 # We can't do this by changing the order of
1678 # dependencies to the "all" because that breaks when
1679 # using parallel makes. Instead we handle things
1681 $output_rules .= ('all-recursive-hack: $(CONFIG_HEADER)'
1682 . "\n\t" . '$(MAKE) all-recursive'
1684 push (@hackall, 'all-recursive-hack');
1685 push (@phony, 'all-recursive-hack');
1689 push (@hackall, 'all-recursive');
1692 $output_rules .= ('all-am: '
1696 push (@all, 'all-am');
1697 push (@phony, 'all-am');
1701 @all = ('all-recursive');
1705 $output_rules .= ('install-exec-am: '
1706 . join (' ', @install_exec)
1708 @install_exec = ('install-exec-recursive', 'install-exec-am');
1709 push (@install, 'install-exec-am');
1710 push (@phony, 'install-exec-am');
1714 @install_exec = ('install-exec-recursive');
1718 $output_rules .= ('install-data-am: '
1719 . join (' ', @install_data)
1721 @install_data = ('install-data-recursive', 'install-data-am');
1722 push (@install, 'install-data-am');
1723 push (@phony, 'install-data-am');
1727 @install_data = ('install-data-recursive');
1731 $output_rules .= ('uninstall-am: '
1732 . join (' ', @uninstall)
1734 @uninstall = ('uninstall-recursive', 'uninstall-am');
1735 push (@phony, 'uninstall-am');
1739 @uninstall = ('uninstall-recursive');
1743 # Step three: print definitions users can use. Code below knows
1744 # that install-exec is done before install-data, beware.
1745 $output_rules .= ("install-exec: "
1746 . join (' ', @install_exec)
1748 if (defined $contents{'install-exec-hook'})
1750 $output_rules .= "\t" . '$(MAKE) install-exec-hook' . "\n";
1752 $output_rules .= "\n";
1753 push (@install, 'install-exec') if !$recursive_install;
1754 push (@phony, 'install-exec');
1756 $output_rules .= ("install-data: "
1757 . join (' ', @install_data)
1759 if (defined $contents{'install-data-hook'})
1761 $output_rules .= "\t" . '$(MAKE) install-data-hook' . "\n";
1763 $output_rules .= "\n";
1764 push (@install, 'install-data') if !$recursive_install;
1765 push (@phony, 'install-data');
1767 # If no dependencies for 'install', add 'all'. Why? That way
1768 # "make install" at top level of distclean'd distribution won't
1769 # fail because stuff in 'lib' fails to build.
1770 if (! @install || ($#install == 1
1771 && $install[0] eq 'install-exec'
1772 && $install[1] eq 'install-data'))
1774 push (@install, 'all');
1776 $output_rules .= ('install: '
1777 . join (' ', @install)
1778 # Use "@:" as empty command so nothing prints.
1782 . join (' ', @uninstall)
1784 push (@phony, 'install', 'uninstall');
1786 $output_rules .= ('all: '
1789 push (@phony, 'all');
1791 # Generate the new 'install-strip' target.
1792 $output_rules .= ("install-strip:\n\t"
1793 . '$(MAKE) INSTALL_PROGRAM=\'$(INSTALL_PROGRAM) -s\' install'
1797 # Helper for handle_merge_targets.
1798 sub do_one_merge_target
1800 local ($name, @values) = @_;
1802 if (defined $contents{$name . '-local'})
1804 # User defined local form of target. So include it.
1805 push (@values, $name . '-local');
1806 push (@phony, $name . '-local');
1809 $output_rules .= $name . ":";
1812 $output_rules .= ' ' . join (' ', @values);
1814 $output_rules .= "\n\n";
1815 push (@phony, $name);
1818 # Handle all 'clean' targets.
1821 push (@clean, 'generic');
1822 $output_rules .= &file_contents ('clean');
1823 &push_phony_cleaners ('generic');
1825 local ($target) = $recursive_install ? 'clean-am' : 'clean';
1826 &do_one_clean_target ($target, 'mostly', '', @clean);
1827 &do_one_clean_target ($target, '', 'mostly', @clean);
1828 &do_one_clean_target ($target, 'dist', '', @clean);
1829 &do_one_clean_target ($target, 'maintainer-', 'dist', @clean);
1831 push (@phony, 'clean', 'mostlyclean', 'distclean', 'maintainer-clean');
1834 if ($recursive_install)
1836 @deps = ('am', 'recursive');
1837 &do_one_clean_target ('', 'mostly', '', @deps);
1838 &do_one_clean_target ('', '', '', @deps);
1839 &do_one_clean_target ('', 'dist', '', @deps);
1840 &do_one_clean_target ('', 'maintainer-', '', @deps);
1844 # Helper for handle_clean.
1845 sub do_one_clean_target
1847 local ($target, $name, $last_name, @deps) = @_;
1849 # Special case: if target not passed, then don't generate
1850 # dependency on next "lower" clean target (eg no
1851 # clean<-mostlyclean derivation). In this case the target is
1852 # implicitly known to be 'clean'.
1853 local ($flag) = $target;
1854 $target = 'clean' if ! $flag;
1856 grep (($_ = $name . 'clean-' . $_) && 0, @deps);
1859 if ($last_name || $name ne 'mostly')
1861 push (@deps, $last_name . $target . " ");
1864 # FIXME not sure if I like the tabs here.
1865 &pretty_print_rule ($name . $target . ": ", "\t\t", @deps);
1867 # FIXME shouldn't we really print these messages before running
1869 if ($name . $target eq 'maintainer-clean')
1871 # Print a special warning.
1873 ("\t\@echo \"This command is intended for maintainers to use;\"\n"
1874 . "\t\@echo \"it deletes files that may require special "
1875 . "tools to rebuild.\"\n");
1877 $output_rules .= "\trm -f config.status\n"
1878 if $relative_dir eq '.';
1880 elsif ($name . $target eq 'distclean')
1882 $output_rules .= "\trm -f config.status\n";
1884 $output_rules .= "\n";
1887 # Handle .PHONY target.
1890 &pretty_print_rule ('.PHONY:', "", @phony);
1891 $output_rules .= "\n";
1894 # Handle TESTS variable and other checks.
1897 if (&variable_defined ('DEJATOOL') && ! defined $options{'dejagnu'})
1900 &am_line_error ('DEJATOOL',
1901 "\`DEJATOOL' defined but \`dejagnu' not in \`AUTOMAKE_OPTIONS'");
1905 if (defined $options{'dejagnu'})
1907 push (@check, 'check-DEJAGNU');
1908 push (@phony, 'check-DEJAGNU');
1909 $output_rules .= &file_contents ('dejagnu');
1911 elsif (&variable_defined ('TESTS'))
1913 push (@check, 'check-TESTS');
1914 push (@phony, 'check-TESTS');
1915 # FIXME use $(SHELL) here? That is what Ulrich suggests.
1916 # Maybe a new macro, $(TEST_SHELL), a la $(CONFIG_SHELL)? For
1917 # now we just execute the file directly; this allows test
1918 # files which are compiled -- a possibly useful feature.
1919 $output_rules .= 'check-TESTS: $(TESTS)
1920 @failed=0; all=0; \\
1921 srcdir=$(srcdir); export srcdir; \\
1922 for tst in $(TESTS); do \\
1923 all=`expr $$all + 1`; \\
1924 if test -f $$tst; then dir=.; \\
1925 else dir="$(srcdir)"; fi; \\
1926 if $$dir/$$tst; then \\
1927 echo "PASS: $$tst"; \\
1929 failed=`expr $$failed + 1`; \\
1930 echo "FAIL: $$tst"; \\
1933 if test "$$failed" -eq 0; then \\
1934 echo "========================"; \\
1935 echo "All $$all tests passed"; \\
1936 echo "========================"; \\
1938 echo "$$failed of $$all tests failed"; \\
1944 ################################################################
1946 # Scan configure.in for interesting things.
1947 # FIXME ensure VERSION, PACKAGE are set.
1950 open (CONFIGURE, 'configure.in')
1951 || die "automake: couldn't open \`configure.in': $!\n";
1952 print "automake: reading configure.in\n" if $verbose;
1954 # Reinitialize libsources here. This isn't really necessary,
1955 # since we currently assume there is only one configure.in. But
1956 # that won't always be the case.
1959 local ($in_ac_output, @make_list) = 0;
1960 local ($libobj_iter);
1963 # Remove comments from current line.
1967 # Populate libobjs array.
1968 if (/AC_FUNC_ALLOCA/)
1970 $libsources{'alloca.c'} = 1;
1972 elsif (/AC_FUNC_GETLOADAVG/)
1974 $libsources{'getloadavg.c'} = 1;
1976 elsif (/AC_FUNC_MEMCMP/)
1978 $libsources{'memcmp.c'} = 1;
1980 elsif (/AC_STRUCT_ST_BLOCKS/)
1982 $libsources{'fileblocks.c'} = 1;
1984 elsif (/(AC|fp)_FUNC_FNMATCH/)
1986 # AC_FUNC_FNMATCH is just wishful thinking at this point.
1987 $libsources{'fnmatch.c'} = 1;
1989 elsif (/AC_REPLACE_FUNCS\s*\((.*)\)/)
1991 foreach (split (' ', $1))
1993 $libsources{$_ . '.c'} = 1;
1996 elsif (/AC_REPLACE_GNU_GETOPT/)
1998 $libsources{'getopt.c'} = 1;
1999 $libsources{'getopt1.c'} = 1;
2001 elsif (/LIBOBJS="(.*)\s+\$LIBOBJS"/
2002 || /LIBOBJS="\$LIBOBJS\s+(.*)"/)
2004 foreach $libobj_iter (split (' ', $1))
2006 if ($libobj_iter =~ /^(.*)\.o$/)
2008 $libsources{$1 . '.c'} = 1;
2013 # Process the AC_OUTPUT macro.
2014 if (! $in_ac_output && s/AC_OUTPUT\s*\(\[?//)
2017 $ac_output_line = $.;
2021 $in_ac_output = 0 if s/[\]\),].*$//;
2023 # Look at potential Makefile.am's.
2029 push (@make_list, $_);
2033 push (@other_input_files, $_);
2038 if (/AC_CONFIG_AUX_DIR\(([^)]+)\)/)
2040 @config_aux_path = $1;
2043 # Check for ansi2knr.
2044 $fp_c_prototypes = 1 if /fp_C_PROTOTYPES/;
2046 # Check for NLS support.
2047 if (/ud_GNU_GETTEXT/)
2050 $ac_gettext_line = $.;
2053 # Look for ALL_LINGUAS.
2054 if (/ALL_LINGUAS="(.*)"$/ || /ALL_LINGUAS=(.*)$/)
2058 $all_linguas_line = $.;
2061 # Handle configuration headers.
2062 if (/AC_CONFIG_HEADER\s*\((.*)\)/)
2064 $config_header_line = $.;
2066 if ($config_name =~ /^([^:]+):(.+)$/)
2069 $config_header = $2;
2073 $config_header = $config_name . '.in';
2077 $seen_canonical = 1 if /AC_CANONICAL_(HOST|SYSTEM)/;
2078 $seen_canonical = 1 if /AC_CHECK_TOOL/;
2079 $seen_path_xtra = 1 if /AC_PATH_XTRA/;
2081 # Sometimes it is desirable to explicitly set YACC. For
2082 # instance some people don't want to use bison.
2083 $seen_prog_yacc = 1 if (/AC_PROG_YACC/
2084 || /AC_SUBST\(YACC\)/
2085 || /AC_(PATH|CHECK)_PROGS?\(YACC/);
2087 # Some things required by Automake.
2088 $seen_make_set = 1 if /AC_PROG_MAKE_SET/;
2089 $seen_arg_prog = 1 if /AC_ARG_PROGRAM/;
2090 $seen_ranlib = 1 if /AC_PROG_RANLIB/;
2091 $seen_maint_mode = 1 if /jm_MAINTAINER_MODE/;
2092 $seen_package = 1 if /PACKAGE=/;
2093 $seen_version = 1 if /VERSION=/;
2095 # Weird conditionals here because it is always allowed to
2096 # upgrade to fp_PROG_INSTALL but never to downgrade to
2098 $seen_prog_install = 1 if ! $seen_prog_install && /AC_PROG_INSTALL/;
2099 $seen_prog_install = 2 if /fp_PROG_INSTALL/;
2101 if (/AC_PROG_LIBTOOL/ || /gm_PROG_LIBTOOL/)
2109 # Set input files if not specified by user.
2110 @input_files = @make_list if (! @input_files);
2114 &am_conf_error ("\`PACKAGE' not defined in configure.in")
2116 &am_conf_error ("\`VERSION' not defined in configure.in")
2119 # Look for some files we need. Always check for these. This
2120 # check must be done for every run, even those where we are only
2121 # looking at a subdir Makefile. We must set relative_dir so that
2122 # the file-finding machinery works.
2123 local ($relative_dir) = '.';
2124 &require_config_file ($FOREIGN, 'install-sh', 'mkinstalldirs');
2127 ################################################################
2129 # Do any extra checking for GNU standards.
2130 sub check_gnu_standards
2132 if ($relative_dir eq '.')
2134 # In top level (or only) directory.
2135 &require_file ($GNU, 'INSTALL', 'NEWS', 'README', 'COPYING',
2136 'AUTHORS', 'ChangeLog');
2140 # Do any extra checking for GNITS standards.
2141 sub check_gnits_standards
2143 if ($strictness >= $GNITS && -f $relative_dir . '/COPYING.LIB')
2146 ("\`${relative_dir}/COPYING.LIB' disallowed by Gnits standards");
2149 if ($relative_dir eq '.')
2151 # In top level (or only) directory.
2152 &require_file ($GNITS, 'THANKS');
2156 ################################################################
2158 # Pretty-print something. HEAD is what should be printed at the
2159 # beginning of the first line, FILL is what should be printed at the
2160 # beginning of every subsequent line.
2161 sub pretty_print_internal
2163 local ($head, $fill, @values) = @_;
2165 local ($column) = length ($head);
2166 local ($result) = $head;
2168 # Fill length is number of characters. However, each Tab
2169 # character counts for eight. So we count the number of Tabs and
2171 local ($fill_length) = length ($fill);
2172 $fill_length += 7 * ($fill =~ tr/\t/\t/d);
2177 # "71" because we also print a space.
2178 if ($column + length ($_) > 71)
2180 $result .= " \\\n" . $fill;
2181 $column = $fill_length;
2185 $result .= ' ' unless ($bol);
2187 $column += length ($_) + 1;
2195 # Pretty-print something and append to output_vars.
2198 $output_vars .= &pretty_print_internal (@_);
2201 # Pretty-print something and append to output_rules.
2202 sub pretty_print_rule
2204 $output_rules .= &pretty_print_internal (@_);
2208 ################################################################
2210 # See if a variable exists.
2211 sub variable_defined
2214 if (defined $targets{$var})
2216 &am_line_error ($var, "\`$var' is target; expected variable");
2218 return (defined $contents{$var} && ! defined $targets{$var});
2221 # Read Makefile.am and set up %contents. Simultaneously copy lines
2222 # from Makefile.am into $output_trailer or $output_vars as
2223 # appropriate. NOTE we put rules in the trailer section. We want
2224 # user rules to come after our generated stuff.
2227 local ($amfile) = @_;
2229 # Compute relative location of the top object directory.
2230 local (@topdir) = ();
2231 foreach (split (/\//, $relative_dir))
2233 next if $_ eq '.' || $_ eq '';
2240 push (@topdir, '..');
2243 @topdir = ('.') if ! @topdir;
2245 $top_builddir = join ('/', @topdir);
2247 ($build_rx = $top_builddir) =~ s/(\W)/\\$1/g;
2248 local ($header_vars) =
2249 &file_contents_with_transform
2250 ('s/\@top_builddir\@/' . $build_rx . '/g',
2253 open (AM_FILE, $amfile) || die "automake: couldn't open \`$amfile': $!\n";
2254 print "automake: reading $amfile\n" if $verbose;
2256 $output_vars .= ("# $in_file_name generated automatically by automake "
2257 . $VERSION . " from $am_file_name\n");
2259 # Generate copyright for generated Makefile.in.
2260 $output_vars .= $gen_copyright;
2262 local ($saw_bk) = 0;
2263 local ($was_rule) = 0;
2264 local ($spacing) = '';
2265 local ($comment) = '';
2266 local ($last_var_name) = '';
2271 if (/$IGNORE_PATTERN/o)
2273 # Merely delete comments beginning with two hashes.
2275 elsif (/$WHITE_PATTERN/o)
2277 # Stick a single white line before the incoming macro or rule.
2281 elsif (/$COMMENT_PATTERN/o)
2283 # Stick comments before the incoming macro or rule. Make
2284 # sure a blank line preceeds comments.
2285 $spacing = "\n" unless $blank;
2286 $comment .= $spacing . $_;
2295 $output_vars .= $comment . "\n" . $header_vars;
2299 local ($is_ok_macro);
2303 unless substr ($_, -1, 1) eq "\n";
2305 $_ =~ s/\@MAINT\@//g
2306 unless $seen_maint_mode;
2308 if (/$IGNORE_PATTERN/o)
2310 # Merely delete comments beginning with two hashes.
2312 elsif (/$WHITE_PATTERN/o)
2314 # Stick a single white line before the incoming macro or rule.
2317 elsif (/$COMMENT_PATTERN/o)
2319 # Stick comments before the incoming macro or rule.
2320 $comment .= $spacing . $_;
2327 $output_trailer .= $_;
2334 # Chop newline and backslash if this line is
2335 # continued. FIXME maybe ensure trailing whitespace
2339 $contents{$last_var_name} .= $_;
2342 elsif (/$RULE_PATTERN/o)
2344 # warn "** Saw rule .$1.\n";
2347 # Value here doesn't matter; for targets we only note
2351 $content_lines{$1} = $.;
2352 $output_trailer .= $comment . $spacing . $_;
2353 $comment = $spacing = '';
2356 elsif (($is_ok_macro = /$MACRO_PATTERN/o)
2357 || /$BOGUS_MACRO_PATTERN/o)
2359 # Found a macro definition.
2361 $last_var_name = $1;
2362 if (substr ($2, -1) eq "\\")
2364 $contents{$1} = substr ($2, 0, length ($2) - 1);
2370 $content_lines{$1} = $.;
2371 $output_vars .= $comment . $spacing . $_;
2372 $comment = $spacing = '';
2376 &am_line_error ($., "bad macro name \`$1'")
2381 # This isn't an error; it is probably a continued rule.
2382 # In fact, this is what we assume.
2384 $output_trailer .= $comment . $spacing . $_;
2385 $comment = $spacing = '';
2392 $output_trailer .= $comment;
2395 ################################################################
2397 sub initialize_global_constants
2399 # Associative array of standard directory names. Entry is TRUE if
2400 # corresponding directory should be installed during
2401 # 'install-exec' phase.
2419 # Helper text for dealing with man pages.
2420 $install_man_format =
2421 ' @sect=@SECTION@; \\
2422 inst=`echo "@MANBASE@" | sed \'$(transform)\'`.@FULLSECT@; \\
2423 echo installing @MAN@ as $(mandir)/man$$sect/$$inst; \\
2424 $(INSTALL_DATA) $(srcdir)/@MAN@ $(mandir)/man$$sect/$$inst
2427 $uninstall_man_format =
2428 ' inst=`echo "@MANBASE@" | sed \'$(transform)\'`.@FULLSECT@; \\
2429 rm -f $(mandir)/man@SECTION@/$$inst
2432 # Commonly found files we look for and automatically include in
2436 "README", "THANKS", "TODO", "NEWS", "COPYING", "COPYING.LIB",
2437 "INSTALL", "ABOUT-NLS", "ChangeLog", "configure", "configure.in",
2438 "config.guess", "config.sub", "AUTHORS", "BACKLOG", "ABOUT-GNU",
2439 "libversion.in", "mdate-sh", "mkinstalldirs", "install-sh"
2442 # Commonly used files we auto-include, but only sometimes.
2445 "version.texi", "aclocal.m4", "acconfig.h", "config.h.top",
2446 "config.h.bot", "stamp-h.in", "ansi2knr.c",
2447 "ansi2knr.1", 'stamp-vti'
2451 --amdir=DIR directory storing config files
2452 --foreign same as --strictness=foreign
2453 --gnits same as --strictness=gnits
2454 --gnu same as --strictness=gnu
2455 --help print this help, then exit
2456 -i, --include-deps include generated dependencies in Makefile.in
2457 -a, --add-missing add missing standard files to package
2458 -o DIR, --output-dir=DIR
2459 put generated Makefile.in's into DIR
2460 -s LEVEL, --strictness=LEVEL
2461 set strictness level. LEVEL is foreign, gnu, gnits
2462 -v, --verbose verbosely list files processed
2463 --version print version number, then exit\n";
2465 # Copyright on generated Makefile.ins.
2467 # Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
2468 # This Makefile.in is free software; the Free Software Foundation
2469 # gives unlimited permission to copy, distribute and modify it.
2473 # (Re)-Initialize per-Makefile.am variables.
2474 sub initialize_per_input
2476 # These two variables are used when generating each Makefile.in.
2477 # They hold the Makefile.in until it is ready to be printed.
2480 $output_trailer = '';
2482 # Suffixes found during a run.
2485 # This holds the contents of a Makefile.am, as parsed by
2489 # This holds the names which are targets. These also appear in
2493 # This holds the line numbers at which various elements of
2494 # %contents are defined.
2495 %content_lines = ();
2497 # This holds the "relative directory" of the current Makefile.in.
2498 # Eg for src/Makefile.in, this is "src".
2501 # This holds a list of files that are included in the
2505 # List of dependencies for the obvious targets.
2520 # These are pretty obvious, too. They are used to define the
2521 # SOURCES and OBJECTS variables.
2525 # TRUE if current directory holds any C source files. (Actually
2526 # holds object extension, but this information is encapsulated in
2527 # the function get_object_extension).
2528 $dir_holds_sources = '';
2530 # TRUE if install targets should work recursively.
2531 $recursive_install = 0;
2536 # Strictness levels.
2537 $strictness = $default_strictness;
2538 $strictness_name = $default_strictness_name;
2540 # Options from AUTOMAKE_OPTIONS.
2543 # Whether or not dependencies are handled. Can be further changed
2544 # in handle_options.
2545 $use_dependencies = $cmdline_use_dependencies;
2548 $local_maint_charset = $maint_charset;
2552 ################################################################
2554 # Return contents of a file from $am_dir, automatically skipping
2555 # macros or rules which are already known. Runs command on each line
2556 # as it is read; this command can modify $_.
2557 sub file_contents_with_transform
2559 local ($command, $basename) = @_;
2560 local ($file) = $am_dir . '/' . $basename . '.am';
2562 open (FC_FILE, $file)
2563 || die "automake: installation error: cannot open \`$file'\n";
2565 # print "automake: reading $file\n" if $verbose;
2567 local ($was_rule) = 0;
2568 local ($result_vars) = '';
2569 local ($result_rules) = '';
2570 local ($comment) = '';
2571 local ($spacing) = "\n";
2572 local ($skipping) = 0;
2576 $_ =~ s/\@MAINT\@//g
2577 unless $seen_maint_mode;
2581 if (/$IGNORE_PATTERN/o)
2583 # Merely delete comments beginning with two hashes.
2585 elsif (/$WHITE_PATTERN/o)
2587 # Stick a single white line before the incoming macro or rule.
2590 elsif (/$COMMENT_PATTERN/o)
2592 # Stick comments before the incoming macro or rule.
2593 $comment .= $spacing . $_;
2600 $result_rules .= $_ if ! $skipping;
2604 $result_vars .= $_ if ! $skipping;
2608 elsif (/$RULE_PATTERN/o)
2610 # warn "** Found rule .$1.\n";
2613 $skipping = defined $contents{$1};
2614 # warn "** Skip $skipping\n" if $skipping;
2615 $result_rules .= $comment . $spacing . $_ if ! $skipping;
2616 $comment = $spacing = '';
2619 elsif (/$MACRO_PATTERN/o)
2621 # warn "** Found macro .$1.\n";
2622 # Found a variable reference.
2624 $skipping = defined $contents{$1};
2625 # warn "** Skip $skipping\n" if $skipping;
2626 $result_vars .= $comment . $spacing . $_ if ! $skipping;
2627 $comment = $spacing = '';
2632 # This isn't an error; it is probably a continued rule.
2633 # In fact, this is what we assume.
2635 $result_rules .= $comment . $spacing . $_ if ! $skipping;
2636 $comment = $spacing = '';
2642 return $result_vars . $result_rules . $comment;
2645 # Like file_contents_with_transform, but no transform.
2648 return &file_contents_with_transform ('', @_);
2651 # Handle `where_HOW' variable magic. Does all lookups, generates
2652 # install code, and possibly generates code to define the primary
2653 # variable. The first argument is the name of the .am file to munge,
2654 # the second argument is the primary variable (eg HEADERS), and all
2655 # subsequent arguments are possible installation locations. Returns
2656 # list of all values of all _HOW targets.
2658 # FIXME this should be rewritten to be cleaner. It should be broken
2659 # up into multiple functions.
2661 # Usage is: am_install_var (OPTION..., file, HOW, where...)
2666 local ($do_all, $do_clean) = (1, 0);
2669 if ($args[0] eq '-clean')
2673 elsif ($args[0] eq '-no-all')
2677 elsif ($args[0] !~ /^-/)
2683 local ($file, $primary, @prefixes) = @args;
2686 local (@result) = ();
2688 # Now that configure substitutions are allowed in where_HOW
2689 # variables, it is an error to actually define the primary.
2690 &am_line_error ($primary, "\`$primary' is an anachronism")
2691 if &variable_defined ($primary);
2694 # Look for misspellings. It is an error to have a variable ending
2695 # in a "reserved" suffix whose prefix is unknown, eg
2696 # "bni_PROGRAMS". However, unusual prefixes are allowed if a
2697 # variable of the same name (with "dir" appended) exists. For
2698 # instance, if the variable "zardir" is defined, then
2699 # "zar_PROGRAMS" becomes valid. This is to provide a little extra
2700 # flexibility in those cases which need it. Perhaps it should be
2701 # disallowed in the Gnits case? The problem is, sometimes it is
2702 # useful to put things in a subdir of eg pkgdatadir, perhaps even
2704 local (%valid, $varname);
2705 grep ($valid{$_} = 0, @prefixes);
2706 $valid{'EXTRA'} = 0;
2707 foreach $varname (keys %contents)
2709 if ($varname =~ /^(.*)_$primary$/)
2711 if (! defined $valid{$1} && ! &variable_defined ($1 . 'dir'))
2713 &am_line_error ($varname, "invalid variable \"$varname\"");
2717 # Ensure all extended prefixes are actually used.
2723 local ($clean_file) = $file . '-clean';
2726 foreach $X (keys %valid)
2728 $one_name = $X . '_' . $primary;
2729 if (&variable_defined ($one_name))
2731 # Append actual contents of where_PRIMARY variable to
2734 foreach $rcurs (split (' ', $contents{$one_name}))
2736 # Skip configure substitutions. Possibly bogus.
2737 next if $rcurs =~ /^\@.*\@$/;
2738 push (@result, $rcurs);
2741 # "EXTRA" shouldn't be used when generating clean targets,
2742 # @all, or install targets.
2743 next if $X eq 'EXTRA';
2748 &file_contents_with_transform ('s/\@DIR\@/' . $X . '/go',
2751 push (@clean, $X . $primary);
2752 &push_phony_cleaners ($X . $primary);
2757 push (@check, '$(' . $one_name . ')');
2761 push (@used, '$(' . $one_name . ')');
2763 if ($X eq 'noinst' || $X eq 'check')
2765 # Objects which don't get installed by default.
2770 &file_contents_with_transform ('s/\@DIR\@/' . $X . '/go',
2773 push (@uninstall, 'uninstall-' . $X . $primary);
2774 push (@phony, 'uninstall-' . $X . $primary);
2775 push (@installdirs, '$(' . $X . 'dir)');
2776 if ($exec_dir_p{$X})
2778 push (@install_exec, 'install-' . $X . $primary);
2779 push (@phony, 'install-' . $X . $primary);
2783 push (@install_data, 'install-' . $X . $primary);
2784 push (@phony, 'install-' . $X . $primary);
2792 &pretty_print ($primary . ' =', '', @used);
2793 $output_vars .= "\n";
2796 # Push here because PRIMARY might be configure time determined.
2797 push (@all, '$(' . $primary . ')')
2798 if $do_all && @used;
2804 ################################################################
2806 # This variable is local to the "require file" set of functions.
2807 @require_file_paths = ();
2809 # Verify that the file must exist in the current directory. Usage:
2810 # require_file (isconfigure, line_number, strictness, file) strictness
2811 # is the strictness level at which this file becomes required. Must
2812 # set require_file_paths before calling this function.
2813 # require_file_paths is set to hold a single directory (the one in
2814 # which the first file was found) before return.
2815 sub require_file_internal
2817 local ($is_configure, $line, $mystrict, @files) = @_;
2818 local ($file, $fullfile);
2819 local ($found_it, $errfile, $errdir);
2822 foreach $file (@files)
2825 foreach $dir (@require_file_paths)
2829 $fullfile = $relative_dir . "/" . $file;
2830 $errdir = $relative_dir unless $errdir;
2834 $fullfile = $dir . "/" . $file;
2835 $errdir = $dir unless $errdir;
2838 # Use different name for "error filename". Otherwise on
2839 # an error the bad file will be reported as eg
2840 # `../../install-sh' when using the default
2842 $errfile = $errdir . '/' . $file;
2847 &push_dist_common ($file) if $dir eq $relative_dir;
2855 # Prune the path list.
2856 @require_file_paths = $save_dir;
2860 if ($strictness >= $mystrict)
2862 # Only install missing files according to our desired
2864 if ($add_missing && -f ($am_dir . '/' . $file))
2866 # Install the missing file. Symlink if we can, copy
2868 if ($symlink_exists)
2870 symlink ($am_dir . '/' . $file, $errfile);
2874 system ('cp', $am_dir . '/' . $file, $errfile);
2877 # FIXME this is a hack. Should have am_warn.
2878 local ($save) = $exit_status;
2883 "required file \"$errfile\" not found; installing");
2889 "required file \"$errfile\" not found; installing");
2891 $exit_status = $save;
2895 # Only an error if strictness constraint violated.
2899 ($line, "required file \"$errfile\" not found");
2904 ($line, "required file \"$errfile\" not found");
2912 # Like require_file_with_line, but error messages refer to
2913 # configure.in, not the current Makefile.am.
2914 sub require_file_with_conf_line
2916 @require_file_paths = '.';
2917 &require_file_internal (1, @_);
2920 sub require_file_with_line
2922 @require_file_paths = '.';
2923 &require_file_internal (0, @_);
2928 @require_file_paths = '.';
2929 &require_file_internal (0, '', @_);
2932 # Require a file that is also required by Autoconf. Looks in
2933 # configuration path, as specified by AC_CONFIG_AUX_DIR.
2934 sub require_config_file
2936 @require_file_paths = @config_aux_path;
2937 &require_file_internal (0, '', @_);
2938 local ($dir) = $require_file_paths[0];
2939 @config_aux_path = @require_file_paths;
2942 $config_aux_dir = '.';
2946 $config_aux_dir = '$(top_srcdir)/' . $dir;
2950 # Assumes that the line number is in Makefile.am.
2951 sub require_conf_file_with_line
2953 @require_file_paths = @config_aux_path;
2954 &require_file_internal (0, @_);
2955 local ($dir) = $require_file_paths[0];
2956 @config_aux_path = @require_file_paths;
2959 $config_aux_dir = '.';
2963 $config_aux_dir = '$(top_srcdir)/' . $dir;
2967 # Assumes that the line number is in Makefile.am.
2968 sub require_conf_file_with_conf_line
2970 @require_file_paths = @config_aux_path;
2971 &require_file_internal (1, @_);
2972 local ($dir) = $require_file_paths[0];
2973 @config_aux_path = @require_file_paths;
2976 $config_aux_dir = '.';
2980 $config_aux_dir = '$(top_srcdir)/' . $dir;
2984 ################################################################
2986 # Push a list of files onto dist_common.
2987 sub push_dist_common
2989 local (@files) = @_;
2992 foreach $file (@files)
2994 $dist_common{$file} = 1;
2998 # Push a list of clean targets onto phony.
2999 sub push_phony_cleaners
3003 foreach $target ('mostly', 'dist', '', 'maintainer-')
3005 push (@phony, $target . 'clean-' . $base);
3012 $strictness_name = $_[0];
3013 if ($strictness_name eq 'gnu')
3017 elsif ($strictness_name eq 'gnits')
3019 $strictness = $GNITS;
3021 elsif ($strictness_name eq 'foreign')
3023 $strictness = $FOREIGN;
3027 die "automake: level \`$strictness_name' not recognized\n";
3032 ################################################################
3034 # Return directory name of file.
3040 ($sub = $file) =~ s,/+[^/]+$,,g;
3041 $sub = '.' if $sub eq $file;
3048 local ($dirname) = @_;
3049 system ("mkdir", $dirname);
3052 ################################################################
3054 # Print an error message and set exit status.
3057 warn "automake: ${am_file}.am: ", join (' ', @_), "\n";
3063 local ($symbol, @args) = @_;
3067 # If SYMBOL not already a line number, look it up in Makefile.am.
3068 $symbol = $content_lines{$symbol} unless $symbol =~ /^\d+$/;
3069 $symbol .= ': ' if $symbol;
3070 warn "${am_file}.am:", $symbol, join (' ', @args), "\n";
3079 # Like am_error, but while scanning configure.in.
3082 # FIXME can run in subdirs.
3083 warn "automake: configure.in: ", join (' ', @_), "\n";
3087 # Error message with line number referring to configure.in.
3088 sub am_conf_line_error
3090 local ($line, @args) = @_;
3094 warn "configure.in: $line: ", join (' ', @args), "\n";
3099 &am_conf_error (@args);
3103 # Tell user where our aclocal.m4 is, but only once.
3104 sub keyed_aclocal_warning
3107 warn "automake: macro \`$key' can be found in ${am_dir}/aclocal.m4\n";
3110 # Print usage information.
3113 print "Usage: automake [OPTION] ... [Makefile]...\n";
3115 print "\nFiles which are automatically distributed, if found:\n";
3116 $~ = "USAGE_FORMAT";
3117 local (@lcomm) = sort ((@common_files, @common_sometimes));
3118 local ($one, $two, $three, $four);
3121 $one = shift @lcomm;
3122 $two = @lcomm ? shift @lcomm : '';
3123 $three = @lcomm ? shift @lcomm : '';
3124 $four = @lcomm ? shift @lcomm : '';
3131 format USAGE_FORMAT =
3132 @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<
3133 $one, $two, $three, $four