diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-12-13 10:58:07 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-12-13 10:58:07 +0000 |
| commit | 6dd24bfbcc893d05ebba9412158ff54313252fd8 (patch) | |
| tree | fdb99c62428905fb477ea13157290f5b4b03fd41 /tools | |
| parent | 5f242ad0822e0ce08197c2bd94c6b4fa33dfa4c6 (diff) | |
| download | rockbox-6dd24bfbcc893d05ebba9412158ff54313252fd8.zip rockbox-6dd24bfbcc893d05ebba9412158ff54313252fd8.tar.gz rockbox-6dd24bfbcc893d05ebba9412158ff54313252fd8.tar.bz2 rockbox-6dd24bfbcc893d05ebba9412158ff54313252fd8.tar.xz | |
First shot at a '7zip' target that uses the 7za tool to produce a rockbox.7a
package with the exact same contents that a make zip would produce.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8230 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 0935bbb..5830f89 100755 --- a/tools/configure +++ b/tools/configure @@ -951,7 +951,10 @@ tags: \$(MAKE) -C \$(APPSDIR)/plugins/lib tags zip: - \$(TOOLSDIR)/buildzip.pl -r "\$(ROOTDIR)" \$(TARGET) \$(BINARY) + @\$(TOOLSDIR)/buildzip.pl -r "\$(ROOTDIR)" \$(TARGET) \$(BINARY) + +7zip: + @\$(TOOLSDIR)/buildzip.pl -o "rockbox.7z" -z "7za a" -r "\$(ROOTDIR)" \$(TARGET) \$(BINARY) EOF if [ "yes" = "$simulator" ]; then |