Mercurial > hg > Papers > 2014 > oc
view Makefile @ 5:3275b58829c7
update
author | oc |
---|---|
date | Wed, 29 Oct 2014 18:17:25 +0900 |
parents | b43c850d62c2 |
children |
line wrap: on
line source
# Created by Daichi Toma on Nov 16, 2011 TARGET=report LATEX=platex BIBTEX=pbibtex DVIPDF=dvipdfmx #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