diff options
author | David-John Willis | 2011-04-11 18:22:58 +0100 |
---|---|---|
committer | David-John Willis | 2011-04-11 18:22:58 +0100 |
commit | 6f1c7cf30ac3c36d6ececdadc77ff5cfac3dce66 (patch) | |
tree | b9e2eb02ba30f9bb0eda77dc7618eb0c88049d29 /backends/platform/gp2x | |
parent | bb6bc31813e77b5547b365dc401c0b239952d7c3 (diff) | |
download | scummvm-rg350-6f1c7cf30ac3c36d6ececdadc77ff5cfac3dce66.tar.gz scummvm-rg350-6f1c7cf30ac3c36d6ececdadc77ff5cfac3dce66.tar.bz2 scummvm-rg350-6f1c7cf30ac3c36d6ececdadc77ff5cfac3dce66.zip |
GPH: Change backend to mask backend code to GPH_DEVICE.
* This is mainly to make it easy to drop the old GP2X into the
same codebase (I really have no desire to manage 2 sets of 99.9%
identical code ;)).
* Code paths for just one of the supported devices can be runtime
worked out or just defined for that device.
mount.sh: Fixed some small errors# ../../../../scummvm.gph
Diffstat (limited to 'backends/platform/gp2x')
-rwxr-xr-x | backends/platform/gp2x/gp2x-bundle.mk | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/backends/platform/gp2x/gp2x-bundle.mk b/backends/platform/gp2x/gp2x-bundle.mk deleted file mode 100755 index 67d22d1889..0000000000 --- a/backends/platform/gp2x/gp2x-bundle.mk +++ /dev/null @@ -1,60 +0,0 @@ -# Special target to create bundles for the GP2X. - -bundle_name = release/scummvm-gp2x - -gp2x-bundle: $(EXECUTABLE) - $(MKDIR) "$(bundle_name)" - $(MKDIR) "$(bundle_name)/saves" - $(MKDIR) "$(bundle_name)/engine-data" - - echo "Please put your save games in this dir" >> "$(bundle_name)/saves/PUT_SAVES_IN_THIS_DIR" - - $(CP) $(srcdir)/backends/platform/gp2x/build/scummvm.gpe $(bundle_name)/ - $(CP) $(srcdir)/backends/platform/gp2x/build/scummvm.png $(bundle_name)/ - $(CP) $(srcdir)/backends/platform/gp2x/build/README-GP2X $(bundle_name)/ - $(CP) $(srcdir)/backends/platform/gp2x/build/mmuhack.o $(bundle_name)/ - - $(INSTALL) -c -m 644 $(DIST_FILES_DOCS) $(bundle_name)/ - $(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(bundle_name)/ - $(INSTALL) -c -m 644 $(DIST_FILES_ENGINEDATA) $(bundle_name)/engine-data - $(CP) $(srcdir)/backends/vkeybd/packs/vkeybd_default.zip $(bundle_name)/ - - $(STRIP) $(EXECUTABLE) -o $(bundle_name)/$(EXECUTABLE) - -ifdef DYNAMIC_MODULES - $(INSTALL) -d "$(bundle_name)/plugins" - $(INSTALL) -c -m 644 $(PLUGINS) "$(bundle_name)/plugins" - $(STRIP) $(bundle_name)/plugins/* -endif - - tar -C $(bundle_name) -cvjf $(bundle_name).tar.bz2 . - rm -R ./$(bundle_name) - -gp2x-bundle-debug: $(EXECUTABLE) - $(MKDIR) "$(bundle_name)" - $(MKDIR) "$(bundle_name)/saves" - $(MKDIR) "$(bundle_name)/engine-data" - - echo "Please put your save games in this dir" >> "$(bundle_name)/saves/PUT_SAVES_IN_THIS_DIR" - - $(CP) $(srcdir)/backends/platform/gp2x/build/scummvm.gpe $(bundle_name)/ - $(CP) $(srcdir)/backends/platform/gp2x/build/scummvm.png $(bundle_name)/ - $(CP) $(srcdir)/backends/platform/gp2x/build/README-GP2X $(bundle_name)/ - $(CP) $(srcdir)/backends/platform/gp2x/build/mmuhack.o $(bundle_name)/ - - $(INSTALL) -c -m 644 $(DIST_FILES_DOCS) $(bundle_name)/ - $(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(bundle_name)/ - $(INSTALL) -c -m 644 $(DIST_FILES_ENGINEDATA) $(bundle_name)/engine-data - $(CP) $(srcdir)/backends/vkeybd/packs/vkeybd_default.zip $(bundle_name)/ - - $(INSTALL) -c -m 777 $(srcdir)/$(EXECUTABLE) $(bundle_name)/$(EXECUTABLE) - -ifdef DYNAMIC_MODULES - $(INSTALL) -d "$(bundle_name)/scummvm/plugins" - $(INSTALL) -c -m 644 $(PLUGINS) "$(bundle_name)/scummvm/plugins" -endif - - tar -C $(bundle_name) -cvjf $(bundle_name)-debug.tar.bz2 . - rm -R ./$(bundle_name) - -.PHONY: gp2x-bundle gp2x-bundle-debug |