can call Allwmake scripts directly instead of with ( cd foo && ./Allwmake )

This commit is contained in:
Mark Olesen
2008-11-05 10:39:06 +01:00
parent 9705520e24
commit 5d0b3348c5
9 changed files with 33 additions and 26 deletions

View File

@ -5,15 +5,15 @@ set -x
# wmake is required for subsequent targets
( cd wmake/src && make )
# build ThirdParty sources
( cd $WM_THIRD_PARTY_DIR && ./Allwmake )
( cd src && ./Allwmake )
( cd applications && ./Allwmake )
src/Allwmake
applications/Allwmake
if [ "$1" = doc ]
then
( cd doc && ./Allwmake )
doc/Allwmake
fi
# ----------------------------------------------------------------- end-of-file