Mercurial > hg > Papers > 2011 > yuu-thesis
annotate Makefile @ 0:16380f303b92
create repository
author | Yu Taninari <you@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 17 Nov 2011 04:11:37 +0900 |
parents | |
children |
rev | line source |
---|---|
0 | 1 TARGET=yuu-preliminary |
2 EPS=$(shell ls ./fig/*.eps) | |
3 PDF=$(EPS:%.eps=%.pdf) | |
4 | |
5 .SUFFIXES: .eps .pdf | |
6 | |
7 all: $(TARGET).pdf | |
8 | |
9 $(TARGET).pdf: $(TARGET).dvi | |
10 dvipdfmx $(TARGET).dvi | |
11 open $(TARGET).pdf | |
12 | |
13 $(TARGET).dvi: $(TARGET).tex | |
14 platex $(TARGET).tex | |
15 | |
16 .eps.pdf: | |
17 epspdf $< | |
18 | |
19 clean: | |
20 rm *.{log,aux,dvi,pdf} |