Transfer: added beginnings of a type checking algorithm description.

This commit is contained in:
bringert
2006-03-03 10:37:59 +00:00
parent 61898554b5
commit dd0d26c022
3 changed files with 636 additions and 0 deletions

41
transfer/doc/Makefile Normal file
View File

@@ -0,0 +1,41 @@
FIGURES=
NAME=typesystem
default: pdf
ps: $(NAME).ps
pdf: $(NAME).pdf
%.ps: %.dvi
dvips -f $^ > $@
#%.pdf: %.ps
# ps2pdf $^
%.pdf: %.dvi
dvipdfm $^
%.dvi: %.tex # %.bib
latex $*
# bibtex $*
# latex $*
# latex $*
%.ps: %.dot
dot -Tps -o $@ $^
%.eps: %.ps
ps2epsi $^ $@
$(NAME).dvi: $(FIGURES)
clean:
-rm -f *.aux *.dvi *.log *.blg *.bbl *.toc
psclean: clean
-rm -f *.pdf *.ps
show: $(NAME).dvi
xdvi $(NAME).dvi