ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/langevin/Makefile
Revision: 3000
Committed: Mon Sep 4 16:36:51 2006 UTC (17 years, 9 months ago) by gezelter
File size: 660 byte(s)
Log Message:
Converting to pdflatex, changing eps figures to pdf, adding Makefile
and applescript previewer

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 = langevin
8
9 PICTURES = \
10 roughShell.eps \
11 temperature.eps \
12 twoBanana.eps \
13 uacf.eps \
14 vacf.eps
15
16 INFILES = \
17 langevin.tex \
18 langevin.bib
19
20 #
21 # standard rules:
22 #
23
24 all:: ${PAPER_ROOT}.view
25
26 ${PAPER_ROOT}.pdf: ${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}.pdf
33 osascript "reload_preview.scpt" ${PAPER_ROOT}.pdf
34 open -a $(PDF) ${PAPER_ROOT}.pdf
35
36 clean::
37 /bin/rm -f *.aux *.log *.bbl *.blg *.dvi *.tbx *.fgx *~ *.fff *.lof *.lot langevin.pdf *.ttt
38
39