ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/tags/start/mdRipple/Makefile
Revision: 3484
Committed: Tue Jan 13 14:39:51 2009 UTC (15 years, 6 months ago)
File size: 603 byte(s)
Log Message:
This commit was manufactured by cvs2svn to create tag 'start'.

File Contents

# User Rev Content
1 xsun 3147 LC = latex
2     BC = bibtex
3     PDF = Preview
4    
5     .SUFFIXES: $(SUFFIXES) .dvi .ps .bib .tex .bbl .pdf
6    
7     PAPER_ROOT = mdripple
8    
9     PICTURES = \
10    
11     INFILES = \
12     mdripple.tex \
13     mdripple.bib
14    
15     #
16     # standard rules:
17     #
18    
19     all:: ${PAPER_ROOT}.view
20    
21     ${PAPER_ROOT}.dvi: ${INFILES} ${PICTURES}
22     $(LC) ${PAPER_ROOT}
23     $(BC) ${PAPER_ROOT}
24     $(LC) ${PAPER_ROOT}
25     $(LC) ${PAPER_ROOT}
26    
27     ${PAPER_ROOT}.view: ${PAPER_ROOT}.dvi
28     dvipdf ${PAPER_ROOT}
29     osascript "reload_preview.scpt" ${PAPER_ROOT}.pdf
30     open -a $(PDF) ${PAPER_ROOT}.pdf
31    
32     clean::
33     /bin/rm -f *.aux *.log *.bbl *.blg *.dvi *.tbx *.fgx *~ *.fff *.lof *.lot mdripple.pdf *.ttt
34    
35