mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
36 lines
803 B
Bash
Executable File
36 lines
803 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
PATH=/adapco/prog/bin:/usr/vacpp/bin:$PATH:/lnxsrv/prog; export PATH
|
|
|
|
# Compile aix64_5.1-pwr4
|
|
MK_BUILDNAME=aix64_5.1-pwr4; export MK_BUILDNAME;
|
|
|
|
separator()
|
|
{
|
|
set +x
|
|
echo
|
|
echo "<<<<<<<<<<<<<<<<<<<<<<<<<<<<< separator >>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
|
|
echo "<<<<<<<<<<<<<<<<<<<<<<<<<<<<< separator >>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
|
|
echo "<<<<<<<<<<<<<<<<<<<<<<<<<<<<< separator >>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
|
|
echo "<<<<<<<<<<<<<<<<<<<<<<<<<<<<< separator >>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
|
|
echo
|
|
set -x
|
|
}
|
|
|
|
exec > make.ibm36.list 2>&1
|
|
|
|
cd $1
|
|
|
|
cvs update -r $3 -d -P
|
|
|
|
separator
|
|
make -k -f Makefile.qmake RELEASE=1 STATIC=1 all
|
|
|
|
separator
|
|
make -k -f Makefile.qmake RELEASE=1 STATIC=0 all
|
|
|
|
separator
|
|
make -f Makefile.qmake install
|
|
|
|
echo Job "finished " `date` >> $2/make.ibm36.list.batch
|