*** empty log message ***

This commit is contained in:
hyung-hwan 2007-02-09 14:25:46 +00:00
parent 2d42e7ddf1
commit 1094ada17a

View File

@ -45,12 +45,12 @@ finalize ()
case "$i" in case "$i" in
*.h|*.c|*.cc|*.cpp|*.java|*.awk|*.in) *.h|*.c|*.cc|*.cpp|*.java|*.awk|*.in)
"$AWK" -f "$BASE/rel/lic.awk" -a "$target/$file" "$full" "$ASEAWK" -f "$BASE/rel/lic.awk" -a "$target/$file" "$full"
;; ;;
*.man) *.man)
html=`echo $i | sed 's/.man$/.html/'` html=`echo $i | sed 's/.man$/.html/'`
"$AWK" -f "$BASE/rel/doc.awk" "$full" > "$SOURCE_ROOT/html/$html" "$ASEAWK" -f "$BASE/rel/doc.awk" "$full" > "$SOURCE_ROOT/html/$html"
"$AWK" -f "$BASE/rel/doc.awk" "$full" > "$DEPLOY_ROOT/$html" "$ASEAWK" -f "$BASE/rel/doc.awk" "$full" > "$DEPLOY_ROOT/$html"
cp -f "$full" "$target/$file" cp -f "$full" "$target/$file"
;; ;;
*.css) *.css)
@ -71,21 +71,23 @@ finalize ()
# BEGINNING OF THE PROGRAM # # BEGINNING OF THE PROGRAM #
############################ ############################
AWK="$HOME/awk" if [ $# -ne 2 ]
then
echo "Usage: $0 awk version"
echo "where awk := full path to aseawk"
echo " version := any string"
exit 1
fi
ASEAWK="$1"
ASEVER="$2"
CURDIR=`pwd` CURDIR=`pwd`
cd ".." cd ".."
BASE=`pwd` BASE=`pwd`
if [ ! -f "$BASE/CVS/Tag" ]
then
echo "Error: $BASE/CVS/Tag not found"
exit 1;
fi
VERSION=`cat "$BASE/CVS/Tag" | cut -c6- | tr '[A-Z]' '[a-z]' | sed 's/_/./g`
DEPLOY_ROOT="$BASE/web.out" DEPLOY_ROOT="$BASE/web.out"
SOURCE_ROOT="$DEPLOY_ROOT/ase-$VERSION" SOURCE_ROOT="$DEPLOY_ROOT/ase-$ASEVER"
rm -rf "$DEPLOY_ROOT" rm -rf "$DEPLOY_ROOT"
mkdir -p "$DEPLOY_ROOT" mkdir -p "$DEPLOY_ROOT"
@ -95,9 +97,9 @@ mkdir -p "$SOURCE_ROOT/html"
finalize "" "" finalize "" ""
cd "$DEPLOY_ROOT" cd "$DEPLOY_ROOT"
tar -cvf "ase-$VERSION.tar" "ase-$VERSION" tar -cvf "ase-$ASEVER.tar" "ase-$ASEVER"
gzip "ase-$VERSION.tar" gzip "ase-$ASEVER.tar"
rm -rf "ase-$VERSION" rm -rf "ase-$ASEVER"
cd "$CURDIR" cd "$CURDIR"
exit 0 exit 0