*** empty log message ***

This commit is contained in:
hyung-hwan 2007-02-04 13:07:15 +00:00
parent 175a7a85d1
commit 19adc99a8b
2 changed files with 13 additions and 3 deletions

View File

@ -2,7 +2,7 @@
Software License Agreement (BSD License)
Copyright (c) 2006-2007, Hyung-Hwan Chung (brian@abiyo.net)
Copyright (c) 2006-2007, Hyung-Hwan Chung
All rights reserved.
Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

View File

@ -45,13 +45,21 @@ finalize ()
case "$full" in
*.h|*.c|*.cc|*.cpp|*.java|*.awk|*.in)
"$HOME/awk" -f "$BASE/rel/lic.awk" -a "$target/$file" "$full"
"$AWK" -f "$BASE/rel/lic.awk" -a "$target/$file" "$full"
;;
*.man)
tmp=`echo $i | sed 's/.man$/.html/'`
"$AWK" -f "$BASE/rel/doc.awk" "$full" > "$root/$tmp"
cp -f "$full" "$target/$file"
;;
*.css)
cp -f "$full" "$target/$file"
cp -f "$full" "$root/$file"
;;
*)
cp -f "$full" "$target/$file"
;;
esac
#echo "$full,$BASE,$file: $BASE/xxx/$file [OK]"
fi
done
}
@ -62,6 +70,8 @@ then
#exit 1;
fi
AWK="$HOME/awk"
VER=`cat ../CVS/Tag | cut -c6- | tr '[A-Z]' '[a-z]' | sed 's/_/./g`
VER="0.1.0"