modified remaining Allwmake scripts to run from anywhere

This commit is contained in:
Mark Olesen
2008-09-19 14:47:06 +02:00
parent ae0581dfcb
commit f73739c79e
20 changed files with 50 additions and 4 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
wmake libso dummy
@ -18,3 +19,4 @@ GAMMA)
;;
esac
# ----------------------------------------------------------------- end-of-file

View File

@ -1,4 +1,7 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
wmake libso
# ----------------------------------------------------------------- end-of-file

View File

@ -1,4 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
wmake libso decompositionMethods

View File

@ -1,4 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
wmake libso basic
@ -8,3 +9,4 @@ wmake libso dieselSpray
(cd molecularDynamics && wmake libso potential)
(cd molecularDynamics && wmake libso molecule)
# ----------------------------------------------------------------- end-of-file

View File

@ -1,4 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
wmake libo postCalc
@ -6,4 +7,4 @@ wmake libso forces
wmake libso fieldAverage
wmake libso foamCalcFunctions
# ----------------------------------------------------------------- end-of-file

View File

@ -1,4 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
wmake libso specie
@ -16,3 +17,4 @@ wmake libso pdfs
wmake libso radiation
wmake libso barotropicCompressibilityModel
# ----------------------------------------------------------------- end-of-file

View File

@ -1,6 +1,9 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
wmake libso incompressible
wmake libso interfaceProperties
#wmake libso compressible
# wmake libso compressible
# ----------------------------------------------------------------- end-of-file

View File

@ -1,5 +1,8 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
( cd RAS && ./Allwmake )
( cd LES && ./Allwmake )
# ----------------------------------------------------------------- end-of-file

View File

@ -1,4 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
wmake libso LESfilters
@ -6,3 +7,5 @@ wmakeLnInclude incompressible
wmake libso LESdeltas
wmake libso incompressible
wmake libso compressible
# ----------------------------------------------------------------- end-of-file

View File

@ -1,5 +1,8 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
wmake libso incompressible
wmake libso compressible
# ----------------------------------------------------------------- end-of-file