386BSD 0.1 development
[unix-history] / usr / othersrc / public / ghostscript-2.4.1 / ccgs
CommitLineData
e6b57439
WJ
1if ( test -n "$4" ) then
2 ./ansi2knr $4 _temp_$$.c
3 $1 $2 $3 -c _temp_$$.c
4 mv _temp_$$.o `basename $4 .c`.o
5 rm -f _temp_$$.c
6else
7if ( test -n "$3" ) then
8 ./ansi2knr $3 _temp_$$.c
9 $1 $2 -c _temp_$$.c
10 mv _temp_$$.o `basename $3 .c`.o
11 rm -f _temp_$$.c
12else
13 ./ansi2knr $2 _temp_$$.c
14 $1 -c _temp_$$.c
15 mv _temp_$$.o `basename $2 .c`.o
16fi
17fi
18rm -f _temp_$$.c