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
*.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)
html=`echo $i | sed 's/.man$/.html/'`
"$ASEAWK" -f "$BASE/rel/doc.awk" "$full" > "$SOURCE_ROOT/html/$html"
"$ASEAWK" -f "$BASE/rel/doc.awk" "$full" > "$ASETGT/$html"
"$ASEAWK" -explicit -noimplicit -f "$BASE/rel/doc.awk" "$full" > "$SOURCE_ROOT/html/$html"
"$ASEAWK" -explicit -f "$BASE/rel/doc.awk" "$full" > "$ASETGT/$html"
cp -f "$full" "$target/$file"
;;
*.css)
@ -58,10 +58,10 @@ finalize ()
cp -f "$full" "$ASETGT/$i"
;;
*.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)
"$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
"$ASEAWK" -explicit -noimplicit -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
;;
*.frx)
cp -f "$full" "$target/$file"
@ -69,7 +69,7 @@ finalize ()
*)
if [ "$dir" = "test/com" ]
then
"$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
"$ASEAWK" -explicit -noimplicit -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
else
cp -f "$full" "$target/$file"
fi