view paper/Makefile @ 19:94748a412295 default tip

moved CSDS.graffle
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Sat, 05 Nov 2011 16:03:29 +0900
parents 7701e53b128a
children
line wrap: on
line source

TARGET=kazz-jssst
EPS=$(shell ls ./fig/*.eps)
PDF=$(EPS:%.eps=%.pdf)

.SUFFIXES: .eps .pdf

all: $(TARGET).pdf

$(TARGET).pdf: $(TARGET).dvi
	dvipdfmx $(TARGET).dvi
	open $(TARGET).pdf

$(TARGET).dvi: $(TARGET).tex $(PDF)
	platex $(TARGET).tex

.eps.pdf:
	epspdf $<

clean:
	rm *.{log,aux,dvi,pdf}