#!/bin/bash set -x mk-dirs cd ../../ PR=`pwd` cd $PR/make MAJ_SSS_NO=`cat majver.txt` MIN_SSS_NO=`cat minver.txt` REV_SSS_NO=`cat revver.txt` export BLD_NO=$MAJ_SSS_NO.$MIN_SSS_NO.$REV_SSS_NO HOST_ARCH=`uname -a | grep -c x86_64` if [ $HOST_ARCH -gt 0 ] then ARCH_LIB=64 else ARCH_LIB= fi cd $PR/auth_token/PAM (make -I $PR/make -f Makefile ROOT=$PR PLAT=lux MIN_NUM=\"$MIN_SSS_NO\" PROD_NUM=\"$MAJ_SSS_NO\" BLD_VER=\"$BLD_NO\" ARC=\"$ARCH_LIB\" XTRA=ndbg XTRA_CFLAGS="-I\".\" -I\"..\" -DSSCS_LINUX_PLAT_F -02 -fmessage-length=0 -Wall -fstack-protector -Wno-format-extra-args -fno-strict-aliasing " $2 $3 $4 $5) RCODE=$? rm -f $COMMON_FILES if(test $RCODE != 0) then exit $RCODE else exit 0 fi