view preprint/Makefile @ 34:97acef4f6207 default tip

update presentation and paper
author oc
date Thu, 19 Feb 2015 18:45:51 +0900
parents 583b83ff748c
children
line wrap: on
line source

TARGET=2015_final_pre
TEX=platex
DVIPDF=dvipdfmx

.SUFFIXES: .tex .dvi

all: pdf# $(TARGET).ps
	open $(TARGET).pdf

dvi:
	$(TEX) $(TARGET)

pdf: dvi
	$(DVIPDF) $(TARGET)


clean:
	rm -f $(TARGET).dvi $(TARGET).aux $(TARGET).log