Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jauslin <jauslin@ias.edu>2018-04-04 06:21:21 +0000
committerIan Jauslin <jauslin@ias.edu>2018-04-04 06:21:21 +0000
commitf950c74e38d120e42637983d504f85843a63e95d (patch)
treeeb2ded33fc156da7adaf096c3816432b4262c8d4 /figs/ising.fig/Makefile
As presented at Princeton University on 2018-04-04HEADv1.0master
Diffstat (limited to 'figs/ising.fig/Makefile')
-rw-r--r--figs/ising.fig/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/figs/ising.fig/Makefile b/figs/ising.fig/Makefile
new file mode 100644
index 0000000..eeff491
--- /dev/null
+++ b/figs/ising.fig/Makefile
@@ -0,0 +1,38 @@
+PROJECTNAME=ising ising_blue ising_red transfer1 transfer2
+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 ising.py
+
+install: $(PDFS)
+ cp $^ $(INSTALLDIR)/
+
+install-sources: $(SOURCES)
+ cp $^ $(INSTALLDIR)/
+
+$(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