comparison build_release @ 977:4cbc349a82a9

Inclue menu.bin in release directories. Added a Windows RC file and icon
author Michael Pavone <pavone@retrodev.com>
date Sat, 23 Apr 2016 17:34:01 -0700
parents 574495372d1c
children 22b4297a5913
comparison
equal deleted inserted replaced
976:8cdd4ddedd9a 977:4cbc349a82a9
24 make clean all 24 make clean all
25 cd .. 25 cd ..
26 fi 26 fi
27 27
28 make PORTABLE=1 clean all 28 make PORTABLE=1 clean all
29 make menu.bin
29 if [ $OS = "Windows" ]; then 30 if [ $OS = "Windows" ]; then
30 binaries="dis.exe zdis.exe stateview.exe vgmplay.exe blastem.exe SDL2.dll" 31 binaries="dis.exe zdis.exe stateview.exe vgmplay.exe blastem.exe SDL2.dll"
31 cmd="wine blastem.exe" 32 cmd="wine blastem.exe"
32 txt=".txt" 33 txt=".txt"
33 else 34 else
35 binaries="dis zdis stateview vgmplay blastem termhelper"
34 if [ $OS = "Darwin" ]; then 36 if [ $OS = "Darwin" ]; then
35 binaries="dis zdis stateview vgmplay blastem termhelper Frameworks" 37 binaries="$binaries Frameworks"
36 else 38 else
37 binaries="dis zdis stateview vgmplay blastem termhelper lib" 39 binaries="$binaries lib"
38 fi 40 fi
39 cmd="./blastem" 41 cmd="./blastem"
40 txt="" 42 txt=""
41 fi 43 fi
44 binaries="$binaries menu.bin"
42 ver=`$cmd -v | awk '/blastem/ { gsub(/\r/, "", $2); print $2 }'` 45 ver=`$cmd -v | awk '/blastem/ { gsub(/\r/, "", $2); print $2 }'`
43 if [ $OS = "Windows" ]; then 46 if [ $OS = "Windows" ]; then
44 suffix='-win32' 47 suffix='-win32'
45 elif [ $OS = "Darwin" ]; then 48 elif [ $OS = "Darwin" ]; then
46 suffix='-osx' 49 suffix='-osx'