Mercurial > hg > Papers > 2019 > anatofuz-prosym
comparison Makefile @ 2:a758898008e6
add tex and Makefile
author | Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 23 Oct 2018 20:02:01 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1:2661c6fdc0be | 2:a758898008e6 |
---|---|
1 # Settings | |
2 TARGET=anatofuz | |
3 BIBTEX=dvipdfmx | |
4 BB=extractbb | |
5 | |
6 vpath pdf fig | |
7 FIGURES=$(wildcard fig/*.pdf) | |
8 FIGURES_FOR_TEX=$(subst .pdf,.xbb,$(FIGURES)) | |
9 | |
10 vpath agda src | |
11 SOURCES=$(wildcard src/*agda) | |
12 SOURCES_FOR_TEX=$(subst .agda,.agda.replaced,$(SOURCES)) | |
13 | |
14 # dependencies | |
15 $(TARGET).pdf : $(TARGET).dvi | |
16 dvipdfmx $< | |
17 | |
18 $(TARGET).dvi : $(wildcard *.tex) $(FIGURES_FOR_TEX) $(SOURCES_FOR_TEX) | |
19 platex $(TARGET).tex | |
20 $(BIBTEX) $(TARGET) | |
21 platex $(TARGET).tex | |
22 platex $(TARGET).tex | |
23 | |
24 %.xbb: %.pdf | |
25 $(BB) $< | |
26 | |
27 %.agda.replaced: %.agda | |
28 ruby escape_agda.rb $< | |
29 | |
30 | |
31 # commands | |
32 .PHONY : clean all open remake | |
33 | |
34 clean: | |
35 rm -f *.dvi *.aux *.log *.pdf *.ps *.gz *.bbl *.blg *.toc *~ *.core *.cpt *.lof *.lot *.lol *.bbl *.blg *.idx src/*.replaced *.fls *.fdb_latexmk | |
36 | |
37 all: $(TARGET).pdf | |
38 | |
39 open: $(TARGET).pdf | |
40 open $(TARGET).pdf | |
41 | |
42 remake: | |
43 make clean | |
44 make all |