comparison paper/Makefile @ 145:0e0b389d2ee4

add Makefile
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Sat, 06 Jan 2018 18:57:26 +0900
parents 40ae32725e55
children a2aaf1d0bf01
comparison
equal deleted inserted replaced
144:060202b21724 145:0e0b389d2ee4
1 # Settings 1 # Settings
2 TARGET=atton-master 2 TARGET=nozomi-master
3 BIBTEX=pbibtex 3 BIBTEX=pbibtex
4 BB=extractbb 4 BB=extractbb
5 5
6 vpath pdf fig 6 vpath pdf fig
7 FIGURES=$(wildcard fig/*.pdf) 7 FIGURES=$(wildcard fig/*.pdf)
15 $(TARGET).pdf : $(TARGET).dvi 15 $(TARGET).pdf : $(TARGET).dvi
16 dvipdfmx $< 16 dvipdfmx $<
17 17
18 $(TARGET).dvi : $(wildcard *.tex) $(FIGURES_FOR_TEX) $(SOURCES_FOR_TEX) 18 $(TARGET).dvi : $(wildcard *.tex) $(FIGURES_FOR_TEX) $(SOURCES_FOR_TEX)
19 platex $(TARGET).tex 19 platex $(TARGET).tex
20 $(BIBTEX) $(TARGET) 20 #$(BIBTEX) $(TARGET)
21 platex $(TARGET).tex 21 platex $(TARGET).tex
22 platex $(TARGET).tex 22 platex $(TARGET).tex
23 23
24 %.xbb: %.pdf 24 %.xbb: %.pdf
25 $(BB) $< 25 $(BB) $<
26
27 %.agda.replaced: %.agda
28 ruby escape_agda.rb $<
29 26
30 27
31 # commands 28 # commands
32 .PHONY : clean all open remake 29 .PHONY : clean all open remake
33 30