11 lines
240 B
Bash
Executable File
11 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
set -x
|
|
|
|
wmake libso phaseModel
|
|
wmake libso interfacialModels
|
|
wmake libso kineticTheoryModels
|
|
wmake
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|