12 lines
295 B
Bash
Executable File
12 lines
295 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
set -x
|
|
|
|
# deal with client/server vs combined plugins
|
|
rm -f $FOAM_LIBBIN/libPV3FoamReader* 2>/dev/null
|
|
|
|
rm -rf PV3FoamReader/Make
|
|
wclean libso vtkPV3Foam
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|