mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-02 23:26:44 +00:00
Add win32 dist
svn-id: r13349
This commit is contained in:
parent
472ca9c689
commit
2cd3ba0f84
13
Makefile
13
Makefile
@ -10,6 +10,7 @@ RM := rm -f
|
||||
RM_REC := $(RM) -r
|
||||
ZIP := zip -q
|
||||
CP := cp
|
||||
WIN32PATH=C:/scummvm
|
||||
|
||||
#######################################################################
|
||||
# Default compilation parameters. Normally don't edit these #
|
||||
@ -107,4 +108,16 @@ scummvm-static: $(OBJS)
|
||||
/sw/lib/libFLAC.a \
|
||||
-lz
|
||||
|
||||
# Special target to create a win32 snapshot binary
|
||||
win32dist: scummvm
|
||||
mkdir -p $(WIN32PATH)
|
||||
strip scummvm.exe -o $(WIN32PATH)/scummvm.exe
|
||||
cp COPYING $(WIN32PATH)/copying.txt
|
||||
cp README $(WIN32PATH)/readme.txt
|
||||
cp NEWS $(WIN32PATH)/news.txt
|
||||
cp SDL/README-SDL.txt $(WIN32PATH)
|
||||
cp SDL/lib/SDL.dll $(WIN32PATH)
|
||||
u2d $(WIN32PATH)/*.txt
|
||||
|
||||
|
||||
.PHONY: deb bundle test
|
||||
|
Loading…
Reference in New Issue
Block a user