Mercurial > hg > Papers > 2018 > ryokka-thesis
view final_pre/Makefile @ 7:28f900230c26
add final_pre
author | ryokka |
---|---|
date | Mon, 19 Feb 2018 23:32:24 +0900 |
parents | |
children | a01801c32db7 |
line wrap: on
line source
# Created by Daichi Toma on Nov 16, 2011 TARGET=finalPre LATEX=platex BIBTEX=pbibtex DVIPDF=dvipdfmx -p a4 #You need setting "-l" option if You think You get a landscape PDF #DVIPDF_OPT=-l #Embed fonts #DVIPDF_OPT=-f hiraginoEmbed.map .SUFFIXES: .tex .dvi .pdf .tex.dvi: $(LATEX) $< $(BIBTEX) $(TARGET) $(LATEX) $< $(LATEX) $< .dvi.pdf: $(DVIPDF) $(DVIPDF_OPT) $< all: $(TARGET).pdf open $(TARGET).pdf dvi: $(TARGET).dvi pdf: $(TARGET).pdf clean: rm -f *.dvi *.aux *.log *.pdf *.ps *.gz *.bbl *.blg *.toc *~ *.core