From aea87ffd1e19553eca72148f32de3dd914c1be96 Mon Sep 17 00:00:00 2001 From: Ian Jauslin Date: Thu, 11 Oct 2018 17:56:55 +0000 Subject: As presented at Yale University on 2018-10-11 --- figs/dimer_example.fig/Makefile | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 figs/dimer_example.fig/Makefile (limited to 'figs/dimer_example.fig/Makefile') diff --git a/figs/dimer_example.fig/Makefile b/figs/dimer_example.fig/Makefile new file mode 100644 index 0000000..f4dcf58 --- /dev/null +++ b/figs/dimer_example.fig/Makefile @@ -0,0 +1,32 @@ +PROJECTNAME=grid dimers interaction boundary dimer_contour +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 -- cgit v1.2.3-54-g00ecf