ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/fennellDissertation/Makefile
Revision: 2918
Committed: Mon Jul 3 13:55:25 2006 UTC (18 years, 2 months ago) by chrisfen
File size: 1074 byte(s)
Log Message:
Fennell Dissertation

File Contents

# User Rev Content
1 chrisfen 2918 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     dissertation.bib
21    
22     #SINFILES = \
23     SupportingInfo.tex \
24     dissertation.bib
25    
26     #
27     # standard rules:
28     #
29    
30     all:: ${PAPER_ROOT}.view
31    
32     sview:: ${SUPPORTING}.view
33    
34     ${PAPER_ROOT}.pdf: ${INFILES} #${PICTURES}
35     $(LC) ${PAPER_ROOT}
36     $(BC) ${PAPER_ROOT}
37     $(LC) ${PAPER_ROOT}
38     $(LC) ${PAPER_ROOT}
39    
40     #${SUPPORTING}.pdf: ${SINFILES}
41     # $(LC) ${SUPPORTING}
42     # $(BC) ${SUPPORTING}
43     # $(LC) ${SUPPORTING}
44     # $(LC) ${SUPPORTING}
45    
46     ${PAPER_ROOT}.view: ${PAPER_ROOT}.pdf
47     osascript "reload_preview.scpt" ${PAPER_ROOT}.pdf
48     open -a $(PDF) ${PAPER_ROOT}.pdf
49    
50     ${SUPPORTING}.view: ${SUPPORTING}.pdf
51     osascript "reload_preview.scpt" ${SUPPORTING}.pdf
52     open -a $(PDF) ${SUPPORTING}.pdf
53    
54     clean::
55     /bin/rm -f *.aux *.log *.bbl *.blg *.dvi *.tbx *.fgx *~ *.fff *.lof *.lot dissertation.pdf *.ttt *.toc
56    
57