Skip to content

Commit

Permalink
Attempt to build all
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed Sep 6, 2020
1 parent 4f0ab48 commit 00ee427
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions tools/make-all
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@ else
MAKE=make
fi

if [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
PRJMAKEFILEGENERATOR=prjMakefilesGenerator.sh
else
PRJMAKEFILEGENERATOR=prjMakefilesGenerator.bat
fi
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) PRJMAKEFILEGENERATOR=prjMakefilesGenerator.sh;;
Darwin*) PRJMAKEFILEGENERATOR=prjMakefilesGenerator.sh;;
CYGWIN*) PRJMAKEFILEGENERATOR=prjMakefilesGenerator.sh;;
//MINGW*) PRJMAKEFILEGENERATOR=prjMakefilesGenerator.sh;;
*) PRJMAKEFILEGENERATOR=prjMakefilesGenerator.bat
esac

echo PRJMAKEFILEGENERATOR=$PRJMAKEFILEGENERATOR

for PROJ in $PROJECTS; do
echo ===========================================
Expand Down

0 comments on commit 00ee427

Please sign in to comment.