386BSD 0.1 development
[unix-history] / usr / othersrc / public / ghostscript-2.4.1 / gsaddres
CommitLineData
3420cd17
WJ
1case $1 in
2 -dev) shift
3 for d in $*; do
4 echo device_\(gs_${d}_device\) >>_temp_.dh
5 done;;
6 -include) shift
7 for d in $*; do
8 /bin/sh < ./${d}.dev
9 done;;
10 -lib) shift
11 for l in $*; do
12 /bin/sh ./echoq -l${l} >>_temp_.dlb
13 done;;
14 -obj) shift
15 for o in $*; do
16 /bin/sh ./echoq ${o} >>_temp_.dob
17 done;;
18 -oper) shift
19 for o in $*; do
20 echo oper_\(${o}_op_defs\) >>_temp_.dop
21 done;;
22 -ps) shift
23 for f in $*; do
24 echo psfile_\(\"${f}.ps\"\) >>_temp_.dps
25 done;;
26esac