Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jauslin <jauslin@ias.edu>2018-04-07 07:16:28 +0000
committerIan Jauslin <jauslin@ias.edu>2018-04-07 07:16:28 +0000
commitf2af89a0b6f2dbab0b3ebe8a02200e4b97aa19aa (patch)
treebf0c59f78245abb305c97ecac8baeb23fd689a32 /figs/atoms.fig/Makefile
Initial commitHEADv1.0master
Diffstat (limited to 'figs/atoms.fig/Makefile')
-rw-r--r--figs/atoms.fig/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/figs/atoms.fig/Makefile b/figs/atoms.fig/Makefile
new file mode 100644
index 0000000..a4b610f
--- /dev/null
+++ b/figs/atoms.fig/Makefile
@@ -0,0 +1,15 @@
+PROJECTNAME=crystal liquid gas nematic chiral
+PNGS=$(addsuffix .png, $(PROJECTNAME))
+
+all: $(PNGS)
+
+$(PNGS):
+ cp $(patsubst %.png, %, $@)-base.gp $(patsubst %.png, %, $@).gp
+ python $(patsubst %.png, %, $@).py >> $(patsubst %.png, %, $@).gp
+ gnuplot $(patsubst %.png, %, $@).gp > $@
+
+clean-aux:
+ rm -f $(addsuffix .gp, $(PROJECTNAME))
+
+clean: clean-aux
+ rm -f $(PNGS)