DINGUX: Add dingux.mk with specific 'dist' targets

svn-id: r52632
This commit is contained in:
Fabio Battaglia 2010-09-08 08:26:20 +00:00
parent 58139baf37
commit 690fea2933
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,27 @@
DINGUX_EXE_STRIPPED := scummvm_stripped$(EXEEXT)
bundle_name = dingux-dist/scummvm
all: $(DINGUX_EXE_STRIPPED)
$(DINGUX_EXE_STRIPPED): $(EXECUTABLE)
$(STRIP) $< -o $@
dingux-distclean:
rm -rf $(bundle_name)
rm $(DINGUX_EXE_STRIPPED)
dingux-dist: all
$(MKDIR) $(bundle_name)
$(MKDIR) $(bundle_name)/saves
$(STRIP) $(EXECUTABLE) -o $(bundle_name)/scummvm.elf
$(CP) $(DIST_FILES_THEMES) $(bundle_name)/
$(CP) $(DIST_FILES_ENGINEDATA) $(bundle_name)/
$(CP) $(DIST_FILES_DOCS) $(bundle_name)/
ifdef DYNAMIC_MODULES
$(MKDIR) $(bundle_name)/plugins
$(CP) $(PLUGINS) $(bundle_name)/plugins
$(STRIP) $(bundle_name)/plugins/*
endif
$(CP) $(srcdir)/backends/vkeybd/packs/vkeybd_default.zip $(bundle_name)/

1
configure vendored
View File

@ -1593,6 +1593,7 @@ if test -n "$_host"; then
_vorbis=no
# Force disable seq on dingux, no way to use it and it would get enabled by default with configure
_seq_midi=no
_port_mk="backends/platform/dingux/dingux.mk"
;;
dreamcast)
DEFINES="$DEFINES -DDISABLE_DEFAULT_SAVEFILEMANAGER -DDISABLE_TEXT_CONSOLE -DDISABLE_COMMAND_LINE"