view prepaper/Makefile @ 10:2ba2fa18fc7e

ADD chapter7
author soto <soto@cr.ie.u-ryukyu.ac.jp>
date Sun, 14 Feb 2021 21:23:12 +0900
parents 3dba680da508
children
line wrap: on
line source

# Created by Daichi Toma on Nov 16, 2011

TARGET=mid_thesis

LATEX=lualatex
BIBTEX=pbibtex
#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 .pdf

.tex:
	$(LATEX) $<
	#$(BIBTEX) $(TARGET)
	$(LATEX) $<
	$(LATEX) $<

.pdf:
	$(DVIPDF) $(DVIPDF_OPT) $<


all: $(TARGET).pdf
	open $(TARGET).pdf

pdf: $(TARGET).pdf


clean:
	rm -f *.dvi *.aux *.log  *.ps *.gz *.bbl *.blg *.toc *~ *.core