warnings: fix compilation with old autoconf
[gnulib/ericb.git] / build-aux / prefix-gnulib-mk
blob62caca8d748397d597696e9cea0bec8bb65eec50
1 eval '(exit $?0)' && eval 'exec perl -wS "$0" "$@"'
2   & eval 'exec perl -wS "$0" $argv:q'
3     if 0;
5 use strict;
6 use IO::File;
7 use Getopt::Long;
8 use File::Basename; # for dirname
10 my $VERSION = '2012-01-21 17:13'; # UTC
11 (my $ME = $0) =~ s|.*/||;
13 my $prefix;
14 my $lib_name;
16 sub usage ($)
18   my ($exit_code) = @_;
19   my $STREAM = ($exit_code == 0 ? *STDOUT : *STDERR);
20   if ($exit_code != 0)
21     {
22       print $STREAM "Try '$ME --help' for more information.\n";
23     }
24   else
25     {
26       print $STREAM <<EOF;
27 Usage: $ME --lib-name=NAME FILE
28    or: $ME [--help|--version]
29 Rewrite a gnulib-tool-generated FILE like lib/gnulib.mk to work with
30 automake's subdir-objects.
32 OPTIONS:
34 This option must be specified:
36    --lib-name=NAME    library name, often "lib\$project"
38 The following are optional:
40    --help             display this help and exit
41    --version          output version information and exit
43 EOF
44     }
45   exit $exit_code;
48 # contents ($FILE_NAME)
49 # ---------------------
50 sub contents ($)
52   my ($file) = @_;
53   local $/;                     # Turn on slurp-mode.
54   my $f = new IO::File "< $file" or die "$file";
55   my $contents = $f->getline or die "$file";
56   $f->close;
57   return $contents;
60 # prefix_word ($WORD)
61 # -------------------
62 # Do not prefix special words such as variable dereferences.  Also,
63 # "Makefile" is really "Makefile", since precisely there is no
64 # lib/Makefile.
65 sub prefix_word ($)
67   local ($_) = @_;
68   $_ = $prefix . $_
69     unless (/^-/ || m{^\$\(\w+\)} || $_ eq "Makefile" || $_ eq '\\'
70             || $_ eq '@ALLOCA@');
71   return $_;
75 # prefix_words ($TEXT)
76 # --------------------
77 sub prefix_words ($)
79   local ($_) = @_;
80   s{(\S+)}{prefix_word($1)}gem;
81   return $_;
85 # prefix_assignment ($LHS-AND-ASSIGN-OP, $RHS)
86 # --------------------------------------------
87 sub prefix_assignment ($$)
89   my ($lhs_and_assign_op, $rhs) = @_;
90   my $res;
92   # Some variables are initialized by gnulib.mk, and we don't want
93   # that.  Change '=' to '+='.
94   if ($lhs_and_assign_op =~ /^(GPERF|V_GPERF.*) =$/)
95     {
96       # Do not change the RHS, which specifies the GPERF program.
97     }
98   elsif ($lhs_and_assign_op =~
99       /^(SUBDIRS|EXTRA_DIST|BUILT_SOURCES|SUFFIXES|MOSTLYCLEANFILES
100          |CLEANFILES|DISTCLEANFILES|MAINTAINERCLEANFILES|AM_CFLAGS
101          |AM_CPPFLAGS|AM_GNU_GETTEXT)\ =/x)
102     {
103       $lhs_and_assign_op =~ s/=/+=/;
104     }
105   # We don't want to inherit gnulib's AUTOMAKE_OPTIONS, comment them.
106   elsif ($lhs_and_assign_op =~ /^AUTOMAKE_OPTIONS =/)
107     {
108       $lhs_and_assign_op =~ s/^/# /;
109     }
110   elsif ($lhs_and_assign_op =~ /^SUFFIXES /)
111     {
112       # Elide any SUFFIXES assignment or concatenation.
113       $lhs_and_assign_op =~ s/^/# /;
114     }
115   # The words are (probably) paths to files in lib/: prefix them.
116   else
117     {
118       $rhs = prefix_words($rhs)
119     }
121   # Variables which name depend on the location: libbison_a_SOURCES =>
122   # lib_libbison_a_SOURCES.
123   $lhs_and_assign_op =~ s/($lib_name)/lib_$1/g;
125   return $lhs_and_assign_op . $rhs;
128 # prefix $CONTENTS
129 # ----------------
130 # $CONTENTS is a Makefile content.  Post-process it so that each file-name
131 # is prefixed with $prefix (e.g., "lib/").
133 # Relies heavily on the regularity of the file generated by gnulib-tool.
134 sub prefix ($)
136   # Work on $_.
137   local ($_) = @_;
139   # Prefix all the occurrence of files in rules.  If there is nothing
140   # after in the :, it's probably a phony target, or a suffix rule.
141   # Don't touch it.
142   s{^([-\w+/]+\.[-\w.]+ *: *\S.*)$}
143    {prefix_words($1)}gem;
145   # Prefix files in variables.
146   s{^([\w.]+\s*\+?=)(.*)$}
147    {prefix_assignment($1, $2)}gem;
149   # These three guys escape all the other regular rules.
150   # Require the leading white space to avoid inserting the prefix
151   # on a line like this:
152   # charset_alias = $(DESTDIR)$(libdir)/charset.alias
153   # With $(libdir), it would be erroneous.
154   s{(\s)(charset\.alias|ref-add\.sed|ref-del\.sed)}{$1$prefix$2}g;
155   # Unfortunately, as a result we sometimes have lib/lib.
156   s{($prefix){2}}{$1}g;
158   # $(srcdir)/ is actually $(top_srcdir)/$prefix/.
159   # The trailing slash is required to avoid matching this rule:
160   #   test '$(srcdir)' = . || rm -f $(top_builddir)/GNUmakefile
161   s{\$\(srcdir\)/}{\$(top_srcdir)/$prefix}g;
163   # Sometimes, t-$@ is used instead of $@-t, which, of course, does
164   # not work when we have a $@ with a directory in it.
165   s{t-\$\@}{\$\@-t}g;
167   # Some AC_SUBST patterns remain and would better be Make macros.
168   s{\@(MKDIR_P)\@}{\$($1)}g;
170   # Adjust paths in mkdir.
171   s{(\$\(MKDIR_P\))\s*(\w+)}{$1 $prefix$2}g;
173   return $_;
176 # process ($IN)
177 # -------------
178 sub process ($)
180   my ($file) = @_;
181   my ($bak) = "$file.bak";
182   rename ($file, $bak) or die "$ME: rename $file $bak failed: $!\n";
183   my $contents = contents ($bak);
184   $contents = prefix ($contents);
185   my $out = new IO::File(">$file")
186     or die "$ME: $file: failed to open for writing: $!\n";
187   print $out $contents;
191   GetOptions
192     (
193      'lib-name=s' => \$lib_name,
194      help => sub { usage 0 },
195      version => sub { print "$ME version $VERSION\n"; exit },
196     ) or usage 1;
198   my $fail = 0;
199   defined $lib_name
200     or (warn "$ME: no library name; use --lib-name=NAME\n"), $fail = 1;
202   # There must be exactly one argument.
203   @ARGV == 0
204     and (warn "$ME: missing FILE argument\n"), $fail = 1;
205   1 < @ARGV
206     and (warn "$ME: too many arguments:\n", join ("\n", @ARGV), "\n"),
207       $fail = 1;
208   $fail
209     and usage 1;
211   my $file = $ARGV[0];
212   $prefix = (dirname $file) . '/';
213   warn "prefix=$prefix\n";
215   process $file;
218 ### Setup "GNU" style for perl-mode and cperl-mode.
219 ## Local Variables:
220 ## perl-indent-level: 2
221 ## perl-continued-statement-offset: 2
222 ## perl-continued-brace-offset: 0
223 ## perl-brace-offset: 0
224 ## perl-brace-imaginary-offset: 0
225 ## perl-label-offset: -2
226 ## cperl-indent-level: 2
227 ## cperl-brace-offset: 0
228 ## cperl-continued-brace-offset: 0
229 ## cperl-label-offset: -2
230 ## cperl-extra-newline-before-brace: t
231 ## cperl-merge-trailing-else: nil
232 ## cperl-continued-statement-offset: 2
233 ## eval: (add-hook 'write-file-hooks 'time-stamp)
234 ## time-stamp-start: "my $VERSION = '"
235 ## time-stamp-format: "%:y-%02m-%02d %02H:%02M"
236 ## time-stamp-time-zone: "UTC0"
237 ## time-stamp-end: "'; # UTC"
238 ## End: