Build system updates.

This commit is contained in:
Steve 2018-04-15 18:52:13 +01:00
parent 852e7ca93e
commit e140c525e2
3 changed files with 2 additions and 6 deletions

View File

@ -1,11 +1,10 @@
#!/bin/bash -e
VERSION=`egrep 'VERSION = ([0-9.+])' ../common.mk | awk '{print $3}'`
REVISION=`git rev-list HEAD --count`
mkdir -p ../dist
rm -rf ../dist/*
linux/build.sh $VERSION $REVISION
linux/build.sh $VERSION
win32/build.sh $VERSION $REVISION
win32/build.sh $VERSION

View File

@ -7,8 +7,6 @@ BUILDROOT="build/linux"
cd ../..
VERSION=$1
REVISION=$2
SIZE=0
make clean
make src-dist

View File

@ -7,7 +7,6 @@ BUILDROOT="build/win32"
cd ../..
VERSION=$1
REVISION=$2
FOLDER="blobWarsAttrition-$1"
OUT="$BUILDROOT/$FOLDER"