# Arisa Getting Started Guide Makefile
# This File is released under the same
# license as the rest of arisa's code.
# Copyright Jason Straw 2004
GV=gv -media letter
FILE=gettingstarted

pdf: $(FILE).ps
	ps2pdf $(FILE).ps
show: $(FILE).ps
	$(GV) $(FILE).ps
clean: $(FILE).tex
	rm $(FILE).dvi $(FILE).ps $(FILE).aux $(FILE).log $(FILE).pdf


$(FILE).aux:
	latex $(FILE).tex
	latex $(FILE).tex

$(FILE).dvi: $(FILE).tex $(FILE).aux
	latex $(FILE).tex
	latex $(FILE).tex

$(FILE).ps: $(FILE).dvi
	dvips -o $(FILE).ps $(FILE).dvi
