[Box Backup-commit] COMMIT r1709 - box/chris/merge/infrastructure
boxbackup-dev@fluffy.co.uk
boxbackup-dev@fluffy.co.uk
Sat, 30 Jun 2007 12:22:08 +0100
Author: chris
Date: 2007-06-30 12:22:08 +0100 (Sat, 30 Jun 2007)
New Revision: 1709
Modified:
box/chris/merge/infrastructure/makeparcels.pl.in
Log:
Improved build targets, thanks to James O'Gorman (fixes #30)
Modified: box/chris/merge/infrastructure/makeparcels.pl.in
===================================================================
--- box/chris/merge/infrastructure/makeparcels.pl.in 2007-06-28 20:54:28 UTC (rev 1708)
+++ box/chris/merge/infrastructure/makeparcels.pl.in 2007-06-30 11:22:08 UTC (rev 1709)
@@ -78,7 +78,7 @@
__E
-print MAKE "all:\t",join(' ',map {parcel_target($_)} @parcels),"\n\n";
+print MAKE "all:\t",join(' ',map {"build-".$_} @parcels),"\n\n";
print MAKE "clean:\n";
for my $parcel (@parcels)
@@ -95,6 +95,7 @@
for my $parcel (@parcels)
{
my $target = parcel_target($parcel);
+ print MAKE "build-$parcel:\t$target\n\n";
print MAKE $target,":\n";
my $dir = parcel_dir($parcel);