mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
36 lines
812 B
Bash
Executable File
36 lines
812 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
PATH=/adapco/prog/bin:$PATH:/lnxsrv/prog; export PATH
|
|
|
|
# Compile linux_2.2-x86-glibc_2.2.0
|
|
MK_BUILDNAME=linux_2.2-x86-glibc_2.2.0; export MK_BUILDNAME;
|
|
|
|
separator()
|
|
{
|
|
set +x
|
|
echo
|
|
echo "<<<<<<<<<<<<<<<<<<<<<<<<<<<<< separator >>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
|
|
echo "<<<<<<<<<<<<<<<<<<<<<<<<<<<<< separator >>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
|
|
echo "<<<<<<<<<<<<<<<<<<<<<<<<<<<<< separator >>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
|
|
echo "<<<<<<<<<<<<<<<<<<<<<<<<<<<<< separator >>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
|
|
echo
|
|
set -x
|
|
}
|
|
|
|
exec > make.linux1.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.linux1.list.batch
|