mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-07 10:12:51 -06:00
Transfer: added beginnings of a type checking algorithm description.
This commit is contained in:
41
transfer/doc/Makefile
Normal file
41
transfer/doc/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user