mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
12 lines
463 B
Makefile
12 lines
463 B
Makefile
# Special target to create an AndroidSDL snapshot
|
|
androidsdl:
|
|
$(MKDIR) release
|
|
$(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(DIST_FILES_ENGINEDATA) release
|
|
$(INSTALL) -c -m 644 $(DIST_FILES_DOCS) release
|
|
$(CP) $(srcdir)/backends/vkeybd/packs/vkeybd_default.zip release
|
|
zip -j scummvm_2_1_0-git-appdata.zip release/*
|
|
split -d -b 1000000 scummvm_2_1_0-git-appdata.zip scummvm_2_1_0-git-appdata.zip0
|
|
$(RM) -r scummvm_2_1_0-git-appdata.zip
|
|
|
|
.PHONY: androidsdl
|