Mercurial > hg > Papers > 2018 > nozomi-master
comparison poster/modus-ponens/Makefile @ 131:ba30f7948580
Writing poster...
author | atton <atton@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 18 Feb 2017 15:43:30 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
130:80a196c82a4c | 131:ba30f7948580 |
---|---|
1 # Settings | |
2 TARGET=modus-ponens | |
3 BIBTEX=echo # pbibtex | |
4 BB=extractbb | |
5 | |
6 vpath pdf fig | |
7 FIGURES=$(wildcard fig/*.pdf) | |
8 FIGURES_FOR_TEX=$(subst .pdf,.xbb,$(FIGURES)) | |
9 | |
10 # dependencies | |
11 $(TARGET).pdf : $(TARGET).dvi | |
12 dvipdfmx $< | |
13 | |
14 $(TARGET).dvi : $(wildcard *.tex) $(FIGURES_FOR_TEX) $(SOURCES_FOR_TEX) | |
15 platex $(TARGET).tex | |
16 $(BIBTEX) $(TARGET) | |
17 platex $(TARGET).tex | |
18 platex $(TARGET).tex | |
19 | |
20 %.xbb: %.pdf | |
21 $(BB) $< | |
22 | |
23 | |
24 # commands | |
25 .PHONY : clean all open remake | |
26 | |
27 clean: | |
28 rm -f *.dvi *.aux *.log *.pdf *.ps *.gz *.bbl *.blg *.toc *~ *.core *.cpt *.lof *.lot *.lol *.bbl *.blg | |
29 | |
30 all: $(TARGET).pdf | |
31 | |
32 open: $(TARGET).pdf | |
33 open $(TARGET).pdf | |
34 | |
35 remake: | |
36 make clean | |
37 make all |