view preprint/Makefile @ 18:583b83ff748c

rename directory, update abstruct, update chapter1
author oc
date Tue, 17 Feb 2015 14:58:51 +0900
parents prepaper/Makefile@8601a00a2ec1
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