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/branches/v3_8@29361 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Alex Parker 2011-02-20 19:57:04 +00:00
parent 2f857c6b6c
commit 4952e59f38

View file

@ -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)