This commit is contained in:
hyung-hwan 2007-12-12 07:20:02 +00:00
parent 8e928709bc
commit 2f2f4c2472

View File

@ -44,12 +44,12 @@ finalize ()
case "$i" in case "$i" in
*.h|*.c|*.cc|*.cpp|*.java|*.awk|*.in) *.h|*.c|*.cc|*.cpp|*.java|*.awk|*.in)
"$ASEAWK" -f "$BASE/rel/lic.awk" -a "$target/$file" "$full" "$ASEAWK" -explicit -noimplicit -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/'`
"$ASEAWK" -f "$BASE/rel/doc.awk" "$full" > "$SOURCE_ROOT/html/$html" "$ASEAWK" -explicit -noimplicit -f "$BASE/rel/doc.awk" "$full" > "$SOURCE_ROOT/html/$html"
"$ASEAWK" -f "$BASE/rel/doc.awk" "$full" > "$ASETGT/$html" "$ASEAWK" -explicit -f "$BASE/rel/doc.awk" "$full" > "$ASETGT/$html"
cp -f "$full" "$target/$file" cp -f "$full" "$target/$file"
;; ;;
*.css) *.css)
@ -58,10 +58,10 @@ finalize ()
cp -f "$full" "$ASETGT/$i" cp -f "$full" "$ASETGT/$i"
;; ;;
*.dsp|*.dsw|*.sln|*.vcproj|*.csproj|*.bat|*.cmd) *.dsp|*.dsw|*.sln|*.vcproj|*.csproj|*.bat|*.cmd)
"$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" "$ASEAWK" -explicit -noimplicit -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
;; ;;
descrip.mms) descrip.mms)
"$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" "$ASEAWK" -explicit -noimplicit -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
;; ;;
*.frx) *.frx)
cp -f "$full" "$target/$file" cp -f "$full" "$target/$file"
@ -69,7 +69,7 @@ finalize ()
*) *)
if [ "$dir" = "test/com" ] if [ "$dir" = "test/com" ]
then then
"$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" "$ASEAWK" -explicit -noimplicit -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
else else
cp -f "$full" "$target/$file" cp -f "$full" "$target/$file"
fi fi