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 b02db18316 Use a4 not letterSize.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1842 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2007-03-12 13:07:20 +00:00

24 lines
403 B
Makefile

FILE=iclp07
all: $(FILE).dvi $(FILE).ps $(FILE).pdf
$(FILE).dvi: force
./latexmk $(FILE)
$(FILE).ps: $(FILE).dvi
dvips -t a4 -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