summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-10-16 09:31:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-10-16 09:31:17 +0000
commit55d1675ada5273a815966057b811605462e1f7bd (patch)
treeb00d50c9cee5d868598f5a11386c09b5f32d55cf
parent2161407c6ed96f2bea892b89b2b86c9cf7a465ae (diff)
downloadrockbox-55d1675ada5273a815966057b811605462e1f7bd.tar.gz
rockbox-55d1675ada5273a815966057b811605462e1f7bd.zip
make mapzip creates a dedicated zip file with all the .map files from a build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11236 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 16fb39cb32..b7932be13f 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1512,6 +1512,9 @@ fontzip:
1512zip: 1512zip:
1513 \$(SILENT)\$(TOOLSDIR)/buildzip.pl \$(VERBOSEOPT) -t \"\$(ARCHOS)\" -r "\$(ROOTDIR)" \$(TARGET) \$(BINARY) 1513 \$(SILENT)\$(TOOLSDIR)/buildzip.pl \$(VERBOSEOPT) -t \"\$(ARCHOS)\" -r "\$(ROOTDIR)" \$(TARGET) \$(BINARY)
1514 1514
1515mapzip:
1516 \$(SILENT)find . -name "*.map" | xargs zip rockbox-maps.zip
1517
1515fullzip: 1518fullzip:
1516 \$(SILENT)\$(TOOLSDIR)/buildzip.pl \$(VERBOSEOPT) -t \"\$(ARCHOS)\" -r "\$(ROOTDIR)" -f 2 -o rockbox-full.zip \$(TARGET) \$(BINARY) 1519 \$(SILENT)\$(TOOLSDIR)/buildzip.pl \$(VERBOSEOPT) -t \"\$(ARCHOS)\" -r "\$(ROOTDIR)" -f 2 -o rockbox-full.zip \$(TARGET) \$(BINARY)
1517 1520
@@ -1554,6 +1557,7 @@ help:
1554 @echo "bzip2 - creates a rockbox.tar.bz2 of your build (no fonts)" 1557 @echo "bzip2 - creates a rockbox.tar.bz2 of your build (no fonts)"
1555 @echo "7zip - creates a rockbox.7z of your build (no fonts)" 1558 @echo "7zip - creates a rockbox.7z of your build (no fonts)"
1556 @echo "fontzip - creates rockbox-fonts.zip" 1559 @echo "fontzip - creates rockbox-fonts.zip"
1560 @echo "mapzip - creates rockbox-maps.zip with all .map files"
1557 @echo "tools - builds the tools only" 1561 @echo "tools - builds the tools only"
1558 @echo "install - installs your build (for simulator builds only)" 1562 @echo "install - installs your build (for simulator builds only)"
1559 1563