https://github.com/mdolab/dafoam
Raw File
Tip revision: 374cfc7470f5921fc5a4956030be454fac870751 authored by Ping He on 02 October 2020, 02:22:29 UTC
V2.1.2 (#65)
Tip revision: 374cfc7
Allclean
#!/usr/bin/env bash

if [ -z "$WM_PROJECT" ]; then
  echo "OpenFOAM environment not found, forgot to source the OpenFOAM bashrc?"
  exit 1
fi

cd src/adjoint && ./Allclean && cd -
cd src/pyDASolvers && ./Allclean && cd -
cd src/utilities && ./Allclean && cd -
cd tests && ./Allclean && cd -
rm -rf dafoam/*.so
back to top