BUGFIX: Fixed debug statement in factorial in label.C. Author: Inno Gatin. Merge...
[foam-extend-3.1.git] / Allwmake
blob7447be41ff0e0928b299da689e7266bea8e5ccf8
1 #!/bin/bash
2 cd ${0%/*} || exit 1 # run from this directory
4 if [ "$PWD" != "$WM_PROJECT_DIR" ]
5 then
6 echo "Error: Current directory is not \$WM_PROJECT_DIR"
7 echo " The environment variable are not consistent with the installation."
8 echo " Check the OpenFOAM entries in your dot-files and source them."
9 exit 1
12 # wmake is required for subsequent targets
13 ( cd wmake/src && make )
15 # build ThirdParty sources
16 # ( cd $WM_THIRD_PARTY_DIR && ./AllMake )
18 # We make sure the ThirdParty packages environment variables are up-to-date
19 # before compiling the rest of OpenFOAM
20 . $WM_PROJECT_DIR/etc/settings.sh
22 # build OpenFOAM libraries and applications
23 src/Allwmake
24 applications/Allwmake
26 if [ "$1" = doc ]
27 then
28 doc/Allwmake
31 # ----------------------------------------------------------------- end-of-file