-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (25 loc) · 1017 Bytes
/
Makefile
File metadata and controls
33 lines (25 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
PAPER = LSST_Observing_Strategy_White_Paper.pdf
TEXFILES = *.tex */*.tex
BIBFILES = references.bib
all: pdf
metric_tables:
python metrics_table.py
clean:
-rm -f *.aux LSST*.log *.dvi *.blg *.bbl *.inx *.aut *.toc *.tod *.out
vclean: clean
-rm LSST_Observing_Strategy_White_Paper.pdf
pdf: $(PAPER)
LSST_Observing_Strategy_White_Paper.pdf: version LSST_Observing_Strategy_White_Paper.tex LSST_Observing_Strategy_White_Paper.sty $(BIBFILES) $(TEXFILES)
pdflatex LSST_Observing_Strategy_White_Paper.tex
pdflatex LSST_Observing_Strategy_White_Paper.tex
bibtex LSST_Observing_Strategy_White_Paper
pdflatex LSST_Observing_Strategy_White_Paper.tex
pdflatex LSST_Observing_Strategy_White_Paper.tex
version:
tcsh gen_version.csh --version 1.1
run: $(ARG)_standalone.tex LSST_Observing_Strategy_White_Paper.sty $(BIBFILES) $(TEXFILES)
pdflatex $(ARG)_standalone.tex
pdflatex $(ARG)_standalone.tex
bibtex LSST_Observing_Strategy_White_Paper
pdflatex $(ARG)_standalone.tex
pdflatex $(ARG)_standalone.tex