diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-09-24 18:43:55 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-09-24 18:43:55 -0400 |
commit | 9d675601d6b8501230a8fd773af81e75e27cf048 (patch) | |
tree | 9901d768f65ee018a4f0446769a6b4f5d4d1e3f3 /makefile | |
parent | ffa86b72d5d861626beda911d52030bbacde0f1f (diff) | |
download | PRE_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
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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} |