18 lines
281 B
Bash
Executable File
18 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
set -x
|
|
|
|
case $WM_ARCH in
|
|
linux*)
|
|
CMD="wmake libso"
|
|
;;
|
|
*)
|
|
CMD="wmake lib"
|
|
esac
|
|
|
|
(cd FoamXServer; $CMD)
|
|
(cd FoamXLib; $CMD)
|
|
(cd FoamXHostBrowser ; wmake)
|
|
(cd FoamXCaseBrowser ; wmake)
|
|
(cd FoamXCaseServer ; wmake)
|
|
#(cd FoamXCasePostServer ; wmake)
|