Mercurial > hg > Papers > 2018 > ryokka-thesis
view final_pre/modus-ponens/Makefile @ 17:73baedb5cdfb default tip
fix
author | kono |
---|---|
date | Thu, 22 Feb 2018 12:04:21 +0900 |
parents | 28f900230c26 |
children |
line wrap: on
line source
# Settings TARGET=modus-ponens BIBTEX=echo # pbibtex BB=extractbb vpath pdf fig FIGURES=$(wildcard fig/*.pdf) FIGURES_FOR_TEX=$(subst .pdf,.xbb,$(FIGURES)) # dependencies $(TARGET).pdf : $(TARGET).dvi dvipdfmx $< $(TARGET).dvi : $(wildcard *.tex) $(FIGURES_FOR_TEX) $(SOURCES_FOR_TEX) platex $(TARGET).tex $(BIBTEX) $(TARGET) platex $(TARGET).tex platex $(TARGET).tex %.xbb: %.pdf $(BB) $< # commands .PHONY : clean all open remake clean: rm -f *.dvi *.aux *.log *.pdf *.ps *.gz *.bbl *.blg *.toc *~ *.core *.cpt *.lof *.lot *.lol *.bbl *.blg all: $(TARGET).pdf open: $(TARGET).pdf open $(TARGET).pdf remake: make clean make all