ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/oopsePaper/Makefile
Revision: 716
Committed: Sun Aug 24 04:00:44 2003 UTC (20 years, 10 months ago) by mmeineke
File size: 1341 byte(s)
Log Message:
added the lipid figure, and did some work on DUFF.

File Contents

# Content
1 LBIN =/usr/local/teTeX/bin
2 LC = $(LBIN)/latex
3 BC = $(LBIN)/bibtex
4 D2PS = $(LBIN)/dvips
5 D2PDF = dvipdf
6 XDVI = $(LBIN)/xdvi
7
8 .SUFFIXES: $(SUFFIXES) .dvi .ps .bib .tex .bbl .pdf
9
10 PAPER_ROOT = oopse
11 PICTURES = lipidModel.epsi \
12 dynamicPropsMem.eps
13
14 # list section files in order of inclusion
15 INFILES = preamble.tex \
16 titleAbstract.tex \
17 DUFF.tex \
18 analysis.tex \
19 acknowledgements.tex \
20 bibEnd.tex
21
22 #
23 # A very cool hack to "do the right thing":
24 PSVIEWER = ghostview
25 #
26 #
27 # standard rules:
28 #
29 .dvi.ps:
30 touch $*.ps
31 /bin/rm $*.ps
32 @echo "compiling $*"
33 $(D2PS) -o $*.ps $<
34
35 .dvi.pdf:
36 touch $*.pdf
37 /bin/rm $*.pdf
38 @echo "compiling $*"
39 $(D2PDF) $< $*.pdf
40
41 all:: ${PAPER_ROOT}.psview
42
43 current:: current.psview
44
45 outline:: ${OUTLINE}.view
46
47 gs:: ${PAPER_ROOT}.psview
48
49 print: ${PAPER_ROOT}.ps ${PAPER_ROOT}.pdf
50
51 ${PAPER_ROOT}.dvi: ${INFILES} ${PAPER_ROOT}.bib ${PICTURES}
52 /bin/rm -rf ${PAPER_ROOT}.tex
53 for i in ${INFILES}; \
54 do cat $$i >> ${PAPER_ROOT}.tex; \
55 done;
56 $(LC) ${PAPER_ROOT}
57 $(BC) ${PAPER_ROOT}
58 $(LC) ${PAPER_ROOT}
59 $(LC) ${PAPER_ROOT}
60
61 current.psview: current.ps
62 ${PSVIEWER} current.ps
63
64 ${PAPER_ROOT}.psview: ${PAPER_ROOT}.ps
65 ${PSVIEWER} ${PAPER_ROOT}.ps
66
67 ${PAPER_ROOT}.view: ${PAPER_ROOT}.dvi
68 $(XDVI) -fg black ${PAPER_ROOT}
69
70 clean::
71 /bin/rm -f *.aux *.log *.bbl *.blg *.dvi *.tbx *.fgx *~ *.fff *.lof
72
73