ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/ripple2/Makefile
Revision: 3098
Committed: Thu Dec 28 21:55:59 2006 UTC (17 years, 6 months ago) by gezelter
File size: 668 byte(s)
Log Message:
Getting ready for publication

File Contents

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