FILES = ap1.PS ap2.PS bigpac.PS camera.Ps depth.PS depthcolor.PS diff.PS \
	front.PS left.PS mancyl.PS right.PS sphere.PS
#
#	General case for making PostScript files
#

all: $(FILES)

#
#	depth.ps is black and white for both
#

depth.PS: ../ray/depth.ps
	cp ../ray/depth.ps depth.PS

%.PS: ../ray/%.rle
	rletops -c 0 -h 1 -s ../ray/%.rle > %.PS

#
#	Image on front slide is 2.1inches, not 1inch like the others
#

bigpac.PS: ../ray/pacbw.rle
	rletops -c 0 -h 2.1 -s ../ray/pacbw.rle > bigpac.PS

#
#	camera.Ps is an idraw document, stored in PostScript format.
#

camera.Ps: ../ray/camera.bw.ps
	cp ../ray/camera.bw.ps camera.Ps

#
#	Clean up
#

clean:
	rm -f *.PS *.Ps *.ps *.BAK *.CKP
