35 lines
797 B
Plaintext
35 lines
797 B
Plaintext
|
#!/bin/bash
|
||
|
TOP=../..
|
||
|
BR=..
|
||
|
PR=../
|
||
|
set -x
|
||
|
mk-dirs
|
||
|
cd $TOP/make
|
||
|
MAJ_SSS_NO=`cat majver.txt`
|
||
|
MIN_SSS_NO=`cat minver.txt`
|
||
|
REV_SSS_NO=`cat revver.txt`
|
||
|
INT_BLD_NO=`cat ibuild.txt`
|
||
|
MAJ_BLD_NO=`cat mbuild.txt`
|
||
|
|
||
|
if [ $1 = m ]
|
||
|
then
|
||
|
let MAJ_BLD_NO=MAJ_BLD_NO+1
|
||
|
export BLD_NO=$MAJ_SSS_NO.$MIN_SSS_NO.$REV_SSS_NO.$MAJ_BLD_NO
|
||
|
else
|
||
|
let INT_BLD_NO=INT_BLD_NO+1
|
||
|
export BLD_NO=$MAJ_SSS_NO.$MIN_SSS_NO.$REV_SSS_NO.$MAJ_BLD_NO.$INT_BLD_NO
|
||
|
fi
|
||
|
|
||
|
cd $BR/c_common
|
||
|
COMMON_FILES=$(ls)
|
||
|
(ln -f $COMMON_FILES $BR/c_micasadk)
|
||
|
cd $BR/c_micasadk
|
||
|
($BR/$GNU_I/make -I $BR/make -f makefile ROOT=$PR PLAT=w32 MODULE=client BLD_VER=\"$BLD_NO\" XTRA_CFLAGS="-D\"N_PLAT_CLIENT\" -MDd -Od -Z7" XTRA=mdd $2 $3 $4 $5 $6)
|
||
|
RCODE=$?
|
||
|
rm -f $COMMON_FILES
|
||
|
if(test $RCODE != 0)
|
||
|
then
|
||
|
exit $RCODE
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|