| 1 |
LC = pdflatex |
| 2 |
BC = bibtex |
| 3 |
PDF = Preview |
| 4 |
|
| 5 |
.SUFFIXES: $(SUFFIXES) .dvi .ps .bib .tex .bbl .pdf |
| 6 |
|
| 7 |
PAPER_ROOT = dissertation |
| 8 |
|
| 9 |
#PICTURES = \ |
| 10 |
increasedDamping.pdf \ |
| 11 |
spectraSquare.pdf \ |
| 12 |
dualLinear.pdf \ |
| 13 |
delEplot.pdf \ |
| 14 |
frcMagplot.pdf \ |
| 15 |
frcTrqAngplot.pdf \ |
| 16 |
trqMagplot.pdf |
| 17 |
|
| 18 |
INFILES = \ |
| 19 |
dissertation.tex \ |
| 20 |
Introduction.tex \ |
| 21 |
Electrostatics.tex \ |
| 22 |
Water.tex \ |
| 23 |
Ice.tex \ |
| 24 |
Conclusion.tex \ |
| 25 |
IndividualSystems.tex \ |
| 26 |
SHAMS.tex \ |
| 27 |
dissertation.bib |
| 28 |
|
| 29 |
#SINFILES = \ |
| 30 |
SupportingInfo.tex \ |
| 31 |
dissertation.bib |
| 32 |
|
| 33 |
# |
| 34 |
# standard rules: |
| 35 |
# |
| 36 |
|
| 37 |
all:: ${PAPER_ROOT}.view |
| 38 |
|
| 39 |
#sview:: ${SUPPORTING}.view |
| 40 |
|
| 41 |
${PAPER_ROOT}.pdf: ${INFILES} #${PICTURES} |
| 42 |
$(LC) ${PAPER_ROOT} |
| 43 |
$(BC) ${PAPER_ROOT} |
| 44 |
$(LC) ${PAPER_ROOT} |
| 45 |
$(LC) ${PAPER_ROOT} |
| 46 |
$(LC) ${PAPER_ROOT} |
| 47 |
|
| 48 |
#${SUPPORTING}.pdf: ${SINFILES} |
| 49 |
# $(LC) ${SUPPORTING} |
| 50 |
# $(BC) ${SUPPORTING} |
| 51 |
# $(LC) ${SUPPORTING} |
| 52 |
# $(LC) ${SUPPORTING} |
| 53 |
|
| 54 |
${PAPER_ROOT}.view: ${PAPER_ROOT}.pdf |
| 55 |
osascript "reload_preview.scpt" ${PAPER_ROOT}.pdf |
| 56 |
open -a $(PDF) ${PAPER_ROOT}.pdf |
| 57 |
|
| 58 |
#${SUPPORTING}.view: ${SUPPORTING}.pdf |
| 59 |
# osascript "reload_preview.scpt" ${SUPPORTING}.pdf |
| 60 |
# open -a $(PDF) ${SUPPORTING}.pdf |
| 61 |
|
| 62 |
clean:: |
| 63 |
/bin/rm -f *.aux *.log *.bbl *.blg *.dvi *.tbx *.fgx *~ *.fff *.lof *.lot dissertation.pdf *.ttt *.toc |
| 64 |
|
| 65 |
|