17 lines
399 B
Text
17 lines
399 B
Text
|
#!/bin/bash
|
||
|
cd ${0%/*} || exit 1 # run from this directory
|
||
|
|
||
|
# Clean compilation in Fluid-Structure Interaction package
|
||
|
cd FluidStructureInteraction/src/
|
||
|
./Allwclean
|
||
|
cd -
|
||
|
|
||
|
# Clean compilation in cfMesh mesh generation package
|
||
|
cd cfMesh-v1.0/
|
||
|
wclean libso meshLibrary
|
||
|
wclean all executables
|
||
|
wclean all utilities
|
||
|
cd -
|
||
|
|
||
|
# ----------------------------------------------------------------- end-of-file
|