16 lines
399 B
Bash
Executable file
16 lines
399 B
Bash
Executable file
#!/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
|