This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/Allwmake

19 lines
287 B
Bash
Executable file

#!/bin/sh
set -x
# run from this directory only
cd ${0%/*} || exit 1
# wmake is required for subsequent targets
(cd wmake/src && make)
(cd $WM_THIRD_PARTY_DIR && ./Allwmake)
(cd src && ./Allwmake)
(cd applications && ./Allwmake)
if [ "$1" = doc ]
then
(cd doc && ./Allwmake)
fi