Mercurial > hg > Papers > 2015 > atton-thesis
view Makefile @ 9:324111203070
Add example used delta
author | Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 07 Feb 2015 19:30:09 +0900 |
parents | ff369fd176ff |
children | 11015b94a5cd |
line wrap: on
line source
# target name TARGET=main # dependencies $(TARGET).pdf : $(TARGET).dvi dvipdfmx $< $(TARGET).dvi : $(wildcard *.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