summaryrefslogtreecommitdiff
path: root/infrastructure/makeparcels.pl.in
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-06-30 11:22:08 +0000
committerChris Wilson <chris+github@qwirx.com>2007-06-30 11:22:08 +0000
commita03d260fe420c4fc82375f7dd6eb1db6a86a065a (patch)
tree2dd0b566ea4ef0820c9795ada5cffe7cfa3a9f35 /infrastructure/makeparcels.pl.in
parent7c581bcb685e99e37b64752b1e85330765e3be0f (diff)
Improved build targets, thanks to James O'Gorman (fixes #30)
Diffstat (limited to 'infrastructure/makeparcels.pl.in')
-rwxr-xr-xinfrastructure/makeparcels.pl.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/infrastructure/makeparcels.pl.in b/infrastructure/makeparcels.pl.in
index a8eceb8a..880246d7 100755
--- a/infrastructure/makeparcels.pl.in
+++ b/infrastructure/makeparcels.pl.in
@@ -78,7 +78,7 @@ MAKE = $make_command
__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 @@ my $release_flag = BoxPlatform::make_flag('RELEASE');
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);