view Paper/Makefile @ 0:08708e1a2e64

first commit
author Daichi Toma <toma@cr.ie.u-ryukyu.ac.jp>
date Wed, 16 Nov 2011 18:11:15 +0900
parents
children 2522f70375d5
line wrap: on
line source

# Created by Daichi Toma on Nov 16, 2011

TARGET=prosym

LATEX=platex
DVIPDF=dvipdfmx
#You need setting "-l" option if You think You get a landscape PDF
#DVIPDF_OPT=-l

.SUFFIXES: .tex .dvi .pdf

.tex.dvi:
	$(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 *~ *.core