ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/electrostaticMethodsPaper/Makefile
Revision: 2619
Committed: Wed Mar 15 00:21:39 2006 UTC (19 years, 4 months ago) by chrisfen
File size: 758 byte(s)
Log Message:
Updated some plots and captions.  Added a Makefile.

File Contents

# Content
1 LC = pdflatex
2 BC = bibtex
3 PDF = preview
4
5 .SUFFIXES: $(SUFFIXES) .dvi .ps .bib .tex .bbl .pdf
6
7 PAPER_ROOT = electrostaticMethods
8
9 PICTURES = \
10 comboSquare.pdf \
11 spectraSquare.pdf \
12 dualLinear.pdf \
13 slice.pdf \
14 delEplot.pdf \
15 frcMagplot.pdf \
16 frcTrqAngplot.pdf \
17 gaussFit.pdf \
18 trqMagplot.pdf
19
20
21 INFILES = \
22 electrostaticMethods.tex \
23 electrostaticMethods.bib
24
25 #
26 # standard rules:
27 #
28
29 all:: ${PAPER_ROOT}.view
30
31 ${PAPER_ROOT}.pdf: ${INFILES} ${PICTURES}
32 $(LC) ${PAPER_ROOT}
33 $(BC) ${PAPER_ROOT}
34 $(LC) ${PAPER_ROOT}
35 $(LC) ${PAPER_ROOT}
36
37 ${PAPER_ROOT}.view: ${PAPER_ROOT}.pdf
38 open -a $(PDF) ${PAPER_ROOT}.pdf
39
40 clean::
41 /bin/rm -f *.aux *.log *.bbl *.blg *.dvi *.tbx *.fgx *~ *.fff *.lof *.lot electrostaticMethods.pdf SupportingInfo.pdf *.ttt
42
43