1#! /bin/csh -f
2#
3#   How to make the psfig paper (it's tricky).
4#
5set P=paper
6date
7setenv PSLIBDIR /usr/local/lib/transcript/
8if (! -e $PSLIBDIR/psdit.pro) then
9	echo You must patch psdit.pro first!
10	exit -1
11endif
12
13	# Make a real version (the little pages will be empty)
14	# *ignore* warnings about missing paper.ps.[1-8]
15
16touch $P.ms
17echo Ignore warnings.....
18make Draft=-d150 $P.ps
19getpages $P.ps
20ls -l $P.ps
21
22	# Make a super version (the little pages are level 151)
23
24touch $P.eqn
25make Draft=-d200 $P.ps
26ls -l $P.ps
27
28date
29