Make mkfiles.pl clean under 'perl -w'. Fixes one minor bug in the

output (a comment from Recipe mistakenly got into the Unix
makefile); more importantly, lets mkfiles.pl run in up-to-date Perls
(where implicit split to @_ is now obsolete).

[originally from svn r8957]
This commit is contained in:
Simon Tatham
2010-05-29 13:44:12 +00:00
parent 19fa275b6a
commit 0a4c832e9b
2 changed files with 28 additions and 21 deletions

1
Recipe
View File

@ -169,6 +169,7 @@ version2.def: FORCE
mv version2.def.new version2.def; \
fi
.PHONY: FORCE
!end
!specialobj osx version
# make install for Unix.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/env perl -w
#
# Cross-platform Makefile generator.
#
@ -49,21 +49,29 @@ $project_name = "project"; # this is a good enough default
@allobjs = (); # all object file names
readinput: while (1) {
$in = $filestack[$#filestack];
while (not defined ($_ = <$in>)) {
close $in;
close $filestack[$#filestack];
pop @filestack;
last readinput if 0 == scalar @filestack;
$in = pop @filestack;
$in = $filestack[$#filestack];
}
chomp;
split;
@_ = split;
# Skip comments (unless the comments belong, for example because
# they're part of a diversion).
next if /^\s*#/ and !defined $divert;
# If we're gathering help text, keep doing so.
if (defined $divert) {
if ((defined $_[0]) && $_[0] eq "!end") {
$divert = undef;
} else {
${$divert} .= "$_\n";
}
next;
}
# Skip comments and blank lines.
next if /^\s*#/ or scalar @_ == 0;
if ($_[0] eq "!begin" and $_[1] eq "help") { $divert = \$help; next; }
if ($_[0] eq "!end") { $divert = undef; next; }
if ($_[0] eq "!name") { $project_name = $_[1]; next; }
if ($_[0] eq "!srcdir") { push @srcdirs, $_[1]; next; }
if ($_[0] eq "!makefile" and &mfval($_[1])) { $makefiles{$_[1]}=$_[2]; next;}
@ -87,13 +95,8 @@ readinput: while (1) {
open $f, "<$file" or die "unable to open include file '$file'\n";
push @filestack, $f;
}
$in = $filestack[$#filestack];
next;
}
# If we're gathering help text, keep doing so.
if (defined $divert) { ${$divert} .= "$_\n"; next; }
# Ignore blank lines.
next if scalar @_ == 0;
# Now we have an ordinary line. See if it's an = line, a : line
# or a + line.
@ -206,7 +209,7 @@ foreach $i (@allobjs) {
foreach $i (@prognames) {
($prog, $type) = split ",", $i;
# Strip duplicate object names.
$prev = undef;
$prev = '';
@list = grep { $status = ($prev ne $_); $prev=$_; $status }
sort @{$programs{$i}};
$programs{$i} = [@list];
@ -238,7 +241,6 @@ foreach $i (@prognames) {
while (scalar @scanlist > 0) {
$file = shift @scanlist;
next if defined $further{$file}; # skip if we've already done it
$resource = ($file =~ /\.rc$/ ? 1 : 0);
$further{$file} = [];
$dirfile = &findfile($file);
open IN, "$dirfile" or die "unable to open source file $file\n";
@ -267,7 +269,7 @@ foreach $i (keys %depends) {
while (scalar @scanlist > 0) {
$file = shift @scanlist;
foreach $j (@{$further{$file}}) {
if ($dep{$j} != 1) {
if (!$dep{$j}) {
$dep{$j} = 1;
push @{$depends{$i}}, $j;
push @scanlist, $j;
@ -296,7 +298,8 @@ sub mfval($) {
sub dirpfx {
my ($path) = shift @_;
my ($sep) = shift @_;
my $ret = "", $i;
my $ret = "";
my $i;
while (($i = index $path, $sep) >= 0) {
$path = substr $path, ($i + length $sep);
$ret .= "..$sep";
@ -350,6 +353,7 @@ sub objects {
my ($prog, $otmpl, $rtmpl, $ltmpl, $prefix, $dirsep) = @_;
my @ret;
my ($i, $x, $y);
($otmpl, $rtmpl, $ltmpl) = map { defined $_ ? $_ : "" } ($otmpl, $rtmpl, $ltmpl);
@ret = ();
foreach $ii (@{$programs{$prog}}) {
$i = $objname{$ii};
@ -384,7 +388,8 @@ sub special {
sub splitline {
my ($line, $width, $splitchar) = @_;
my ($result, $len);
my $result = "";
my $len;
$len = (defined $width ? $width : 76);
$splitchar = (defined $splitchar ? $splitchar : '\\');
while (length $line > $len) {
@ -400,7 +405,8 @@ sub splitline {
sub deps {
my ($otmpl, $rtmpl, $prefix, $dirsep, $depchar, $splitchar) = @_;
my ($i, $x, $y);
my @deps, @ret;
my @deps;
my @ret;
@ret = ();
$depchar ||= ':';
foreach $ii (sort keys %depends) {
@ -572,7 +578,7 @@ if (defined $makefiles{'borland'}) {
print "\n\n";
foreach $p (&prognames("G:C")) {
($prog, $type) = split ",", $p;
$objstr = &objects($p, "X.obj", "X.res", undef);
$objstr = &objects($p, "X.obj", "X.res", undef);
print &splitline("$prog.exe: " . $objstr . " $prog.rsp"), "\n";
my $ap = ($type eq "G") ? "-aa" : "-ap";
print "\tilink32 $ap -Gn -L\$(BCB)\\lib \@$prog.rsp\n\n";