summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2017-11-06 20:57:20 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2017-11-06 20:57:20 -0500
commit74da6e178889df2264486e762f088c7635704652 (patch)
tree2daced8a37c706129fb76206cf8149a7c16b83a6 /makefile
parent0cb41564021b0315e95965010b502620b045b9c3 (diff)
downloadPRE_98_063306-74da6e178889df2264486e762f088c7635704652.tar.gz
PRE_98_063306-74da6e178889df2264486e762f088c7635704652.tar.bz2
PRE_98_063306-74da6e178889df2264486e762f088c7635704652.zip
added makefile, new figure, bibliography
Diffstat (limited to 'makefile')
-rw-r--r--makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..2a9a11a
--- /dev/null
+++ b/makefile
@@ -0,0 +1,20 @@
+
+DOC=monte-carlo
+FIGS=fig_correlation_collapse-hL fig_correlation
+DATA=fig_correlation_data_collapse-hL
+
+all: ${DOC}.pdf
+
+%.tex: figs/%.gplot ${DATA:%=data/%.dat} ${FUNCS:%=figs/%.dat}
+ gnuplot $< > $@
+
+${DOC}.pdf: ${DOC}.tex ${DOC}.bib ${FIGS:%=%.tex}
+ rubber $(DOC).tex
+ dvipdf $(DOC).dvi
+
+clean:
+ rubber --clean $(DOC)
+ rm -f $(DOC).pdf
+ rm -f $(DOC)Notes.bib
+ rm -f ${FIGS:%=%.tex}
+