Mercurial > hg > Papers > 2015 > tatsuki-thresis
view Makefile @ 29:5ee5d1bfce28 default tip
fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 19 Feb 2015 13:17:33 +0900 |
parents | ceeb95a12d64 |
children |
line wrap: on
line source
# target name TARGET=main # dependencies $(TARGET).pdf : $(TARGET).dvi dvipdfmx $< $(TARGET).dvi : $(wildcard **/*.tex) $(TARGET).tex platex $(TARGET).tex platex $(TARGET).tex platex $(TARGET).tex # commands .PHONY : clean all open remake clean: rm -f *.dvi *.aux *.log *.pdf *.ps *.gz *.bbl *.blg *.toc *~ *.core *.cpt all: $(TARGET).pdf open: $(TARGET).pdf open $(TARGET).pdf remake: make clean make all