summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-09-24 18:43:55 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-09-24 18:43:55 -0400
commit9d675601d6b8501230a8fd773af81e75e27cf048 (patch)
tree9901d768f65ee018a4f0446769a6b4f5d4d1e3f3
parentffa86b72d5d861626beda911d52030bbacde0f1f (diff)
downloadPRE_98_063306-9d675601d6b8501230a8fd773af81e75e27cf048.tar.gz
PRE_98_063306-9d675601d6b8501230a8fd773af81e75e27cf048.tar.bz2
PRE_98_063306-9d675601d6b8501230a8fd773af81e75e27cf048.zip
Several more changes to auxiliary files.
- .gitignore now ignores several new files that latexmk generates - makefile correctly has the gnuplot figures depend on all the files in the data directory
-rw-r--r--.gitignore2
-rw-r--r--makefile2
2 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index c07fd9f..5e54a7f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,5 +6,7 @@
*Notes.bib
*.dvi
*.synctex.gz
+*.fdb_latexmk
+*.fls
fig*.tex
fig*.eps
diff --git a/makefile b/makefile
index b0b7b8b..8a25388 100644
--- a/makefile
+++ b/makefile
@@ -5,7 +5,7 @@ DATA=correlation correlation_temp metastable_raw metastable_func
all: ${DOC}.pdf
-%.tex: figs/%.gplot ${DATA:%=data/%.dat}
+%.tex: figs/%.gplot $(shell find data -type f)
gnuplot $< > $@
${DOC}.pdf: ${DOC}.tex ${DOC}.bib ${FIGS:%=%.tex}