ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdRipple/Makefile
Revision: 3147
Committed: Mon Jun 25 21:16:17 2007 UTC (17 years ago) by xsun
File size: 603 byte(s)
Log Message:
create mdRipple

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 = 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