comparison paper/Makefile @ 13:12cb508ee15d after-organizing

add slides for probation.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Tue, 16 Feb 2010 14:48:06 +0900
parents
children
comparison
equal deleted inserted replaced
12:0f9a0ecc6afb 13:12cb508ee15d
1 MAKE=make -f Makefile
2 LATEX=platex
3 BIBTEX=jbibtex
4 MENDEX=mendex
5 DVIPS=pdvips
6 DVI2PDF=dvipdfmx
7 DVI2PDF_OPT=-f ptex-hiragino.map
8
9 RM = rm -f
10
11 TARGET=master_paper
12 PS_SUFFIX=.ps
13 PDF_SUFFIX=.pdf
14
15 .SUFFIXES: .tex .dvi .pdf .toc
16
17 default: $(TARGET).pdf
18
19
20 .dvi.pdf:
21 $(DVI2PDF) $(DVI2PDF_OPT) $^
22
23 .tex.dvi:
24 $(LATEX) $<
25
26 bib: dvi
27 @echo "========== MAKE Bib file ($(MAIN_TARGET).dvi) =========="
28 $(BIBTEX) $(MAIN_TARGET)
29
30
31 $(TARGET).dvi: abstract.tex introduction.tex cbc.tex gcc.tex implementation.tex evaluations.tex conclusion.tex thanx.tex bibliography.tex presentations.tex appendix.tex
32
33 clean:
34 @echo "remove $(TARGET).{aux,log,toc,lof,lot,blg,bbl,ilg,idx,ind,dvi,ps,pdf,out}"
35 $(RM) $(TARGET).{aux,log,toc,lof,lot,blg,bbl,ilg,idx,ind,dvi,ps,pdf,out}
36
37 veryclean: clean
38 find ./ -name \*~ -exec rm -f {} \;