view preprint/Makefile @ 29:ad8beccc487b

update chapter 3
author oc
date Wed, 18 Feb 2015 06:34:10 +0900
parents 583b83ff748c
children
line wrap: on
line source

TARGET=2015_final_pre
TEX=platex
DVIPDF=dvipdfmx

.SUFFIXES: .tex .dvi

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

dvi:
	$(TEX) $(TARGET)

pdf: dvi
	$(DVIPDF) $(TARGET)


clean:
	rm -f $(TARGET).dvi $(TARGET).aux $(TARGET).log