diff options
| author | Alex Parker <rockbox@aeparker.com> | 2011-02-20 19:56:53 +0000 |
|---|---|---|
| committer | Alex Parker <rockbox@aeparker.com> | 2011-02-20 19:56:53 +0000 |
| commit | 745406a9f034b4314a8a482a904335916b70ea79 (patch) | |
| tree | 8fb5215cfd579044543fab783e5aee8cca2483f8 /tools/root.make | |
| parent | bf7276d1d0668006f14c68b8aaffb2855ce36665 (diff) | |
| download | rockbox-745406a9f034b4314a8a482a904335916b70ea79.zip rockbox-745406a9f034b4314a8a482a904335916b70ea79.tar.gz rockbox-745406a9f034b4314a8a482a904335916b70ea79.tar.bz2 rockbox-745406a9f034b4314a8a482a904335916b70ea79.tar.xz | |
Add "elfzip" target to make which creates a zip of all elf files, as mapzip does for map files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29360 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/root.make')
| -rw-r--r-- | tools/root.make | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/root.make b/tools/root.make index 73ccf3a..d9e1996 100644 --- a/tools/root.make +++ b/tools/root.make @@ -259,6 +259,9 @@ zip: mapzip: $(SILENT)find . -name "*.map" | xargs zip rockbox-maps.zip +elfzip: + $(SILENT)find . -name "*.elf" | xargs zip rockbox-elfs.zip + fullzip: $(SILENT)$(TOOLSDIR)/buildzip.pl $(VERBOSEOPT) -m \"$(MODELNAME)\" -i \"$(TARGET_ID)\" -r "$(ROOTDIR)" --rbdir="$(RBDIR)" -f 2 -o rockbox-full.zip $(TARGET) $(BINARY) |