view prepaper/Makefile @ 14:6d9c4f5f08bb

update abstract
author oc
date Tue, 17 Feb 2015 12:29:31 +0900
parents 8601a00a2ec1
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