Mercurial > hg > Papers > 2012 > toma-thesis
comparison Paper/Makefile @ 0:84e2f327b98d
first commit
author | Daichi TOMA <toma@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 22 Feb 2012 14:32:16 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:84e2f327b98d |
---|---|
1 # Created by Daichi Toma on Nov 16, 2011 | |
2 | |
3 TARGET=thesis | |
4 | |
5 LATEX=platex | |
6 BIBTEX=pbibtex | |
7 DVIPDF=dvipdfmx | |
8 #You need setting "-l" option if You think You get a landscape PDF | |
9 #DVIPDF_OPT=-l | |
10 | |
11 #Embed fonts | |
12 #DVIPDF_OPT=-f hiraginoEmbed.map | |
13 | |
14 .SUFFIXES: .tex .dvi .pdf | |
15 | |
16 .tex.dvi: | |
17 $(LATEX) $< | |
18 $(BIBTEX) $(TARGET) | |
19 $(LATEX) $< | |
20 $(LATEX) $< | |
21 | |
22 .dvi.pdf: | |
23 $(DVIPDF) $(DVIPDF_OPT) $< | |
24 | |
25 | |
26 all: $(TARGET).pdf | |
27 open $(TARGET).pdf | |
28 | |
29 dvi: $(TARGET).dvi | |
30 | |
31 pdf: $(TARGET).pdf | |
32 | |
33 | |
34 clean: | |
35 rm -f *.dvi *.aux *.log *.pdf *.ps *.gz *.bbl *.blg *~ *.core | |
36 |