This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/docs/index/Makefile
kostis bd5c114492 Added some files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1807 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2007-03-06 23:43:57 +00:00

24 lines
411 B
Makefile

FILE=iclp07
all: $(FILE).dvi $(FILE).ps $(FILE).pdf
$(FILE).dvi: force
./latexmk $(FILE)
$(FILE).ps: $(FILE).dvi
dvips -t letterSize -P cmz -o $(FILE).ps $(FILE).dvi
$(FILE).pdf: $(FILE).ps
ps2pdf14 $(FILE).ps
.PHONY: force
force:
.PHONY: clean
clean::
rm -f $(FILE).aux $(FILE).aux.bak $(FILE).bbl $(FILE).blg $(FILE).dvi $(FILE).log
.PHONY: realclean
realclean: clean
rm -f $(FILE).ps $(FILE).pdf