diff options
author | Ian Jauslin <jauslin@ias.edu> | 2017-12-17 04:17:26 +0000 |
---|---|---|
committer | Ian Jauslin <jauslin@ias.edu> | 2017-12-17 04:17:26 +0000 |
commit | a270f72c71b7b7f71e47516ccac1737bd8b98903 (patch) | |
tree | c94a691a98cdb0f125752bc8eae178a31b620582 /figs/dimer_example.fig/Makefile |
As presented at the 118th Statistical Mechanics Meeting at Rutgers University on 2017-12-17HEADv1.0master
Diffstat (limited to 'figs/dimer_example.fig/Makefile')
-rw-r--r-- | figs/dimer_example.fig/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/figs/dimer_example.fig/Makefile b/figs/dimer_example.fig/Makefile new file mode 100644 index 0000000..386ecd1 --- /dev/null +++ b/figs/dimer_example.fig/Makefile @@ -0,0 +1,32 @@ +PROJECTNAME=grid dimers interaction +LIBS=$(notdir $(wildcard libs/*)) + +PDFS=$(addsuffix .pdf, $(PROJECTNAME)) +SOURCES=$(addsuffix .tikz.tex, $(PROJECTNAME)) + +all: $(PDFS) + +$(PDFS): $(SOURCES) $(LIBS) + echo $(LIBS) + pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@) + +$(SOURCES): + python3 dimer_conf.py + +$(LIBS): + ln -fs libs/$@ ./ + +clean-libs: + rm -f $(LIBS) + +clean-aux: + rm -f $(addsuffix .aux, $(PROJECTNAME)) + rm -f $(addsuffix .log, $(PROJECTNAME)) + +clean-tex: + rm -f $(PDFS) + +clean-sources: + rm -f $(SOURCES) + +clean: clean-libs clean-aux clean-tex clean-sources |