mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
synthesis.sh: keep executable extension in a variable.
So that the script can be tested in e.g. a native Linux environment. git-svn-id: https://svn.eduke32.com/eduke32@4003 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
662438c6a5
commit
aaf57051df
1 changed files with 14 additions and 11 deletions
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# The extension for executables.
|
||||||
|
exe=.exe
|
||||||
|
|
||||||
# some paths
|
# some paths
|
||||||
top=/var/www/synthesis/eduke32
|
top=/var/www/synthesis/eduke32
|
||||||
lockfile=$top/synthesis_building
|
lockfile=$top/synthesis_building
|
||||||
|
@ -9,7 +12,7 @@ make=( make PLATFORM=WINDOWS CC='wine gcc' CXX='wine g++' AS='wine nasm' RC='win
|
||||||
clean=veryclean
|
clean=veryclean
|
||||||
|
|
||||||
# the following file paths are relative to $source
|
# the following file paths are relative to $source
|
||||||
targets=( eduke32.exe mapster32.exe )
|
targets=( eduke32$exe mapster32$exe )
|
||||||
package=package
|
package=package
|
||||||
not_src_packaged=( psd $package/ebacktrace1.dll $package/ebacktrace1-64.dll )
|
not_src_packaged=( psd $package/ebacktrace1.dll $package/ebacktrace1-64.dll )
|
||||||
|
|
||||||
|
@ -93,10 +96,10 @@ then
|
||||||
done
|
done
|
||||||
|
|
||||||
# move the targets to $package
|
# move the targets to $package
|
||||||
echo mv -f eduke32.exe "$package/eduke32.debug.exe"
|
echo mv -f eduke32$exe "$package/eduke32.debug$exe"
|
||||||
mv -f eduke32.exe "$package/eduke32.debug.exe"
|
mv -f eduke32$exe "$package/eduke32.debug$exe"
|
||||||
echo mv -f mapster32.exe "$package/mapster32.debug.exe"
|
echo mv -f mapster32$exe "$package/mapster32.debug$exe"
|
||||||
mv -f mapster32.exe "$package/mapster32.debug.exe"
|
mv -f mapster32$exe "$package/mapster32.debug$exe"
|
||||||
|
|
||||||
if [ -n "`echo $headlog | grep BUILD_LUNATIC`" ]; then
|
if [ -n "`echo $headlog | grep BUILD_LUNATIC`" ]; then
|
||||||
# clean the tree and build Lunatic (pre-)release next
|
# clean the tree and build Lunatic (pre-)release next
|
||||||
|
@ -114,8 +117,8 @@ then
|
||||||
done
|
done
|
||||||
|
|
||||||
# move the targets to $package
|
# move the targets to $package
|
||||||
echo mv -f eduke32.exe "$package/leduke32_PREVIEW.exe"
|
echo mv -f eduke32$exe "$package/leduke32_PREVIEW$exe"
|
||||||
mv -f eduke32.exe "$package/leduke32_PREVIEW.exe"
|
mv -f eduke32$exe "$package/leduke32_PREVIEW$exe"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# clean the tree and build release
|
# clean the tree and build release
|
||||||
|
@ -133,10 +136,10 @@ then
|
||||||
done
|
done
|
||||||
|
|
||||||
# move the targets to $package
|
# move the targets to $package
|
||||||
echo mv -f eduke32.exe "$package/eduke32.exe"
|
echo mv -f eduke32$exe "$package/eduke32$exe"
|
||||||
mv -f eduke32.exe "$package/eduke32.exe"
|
mv -f eduke32$exe "$package/eduke32$exe"
|
||||||
echo mv -f mapster32.exe "$package/mapster32.exe"
|
echo mv -f mapster32$exe "$package/mapster32$exe"
|
||||||
mv -f mapster32.exe "$package/mapster32.exe"
|
mv -f mapster32$exe "$package/mapster32$exe"
|
||||||
|
|
||||||
# get the date in the YYYYMMDD format (ex: 20091001)
|
# get the date in the YYYYMMDD format (ex: 20091001)
|
||||||
date=`date +%Y%m%d`
|
date=`date +%Y%m%d`
|
||||||
|
|
Loading…
Reference in a new issue