Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jauslin <ian@jauslin.org>2022-10-17 20:11:41 -0400
committerIan Jauslin <ian@jauslin.org>2022-10-17 20:11:41 -0400
commitedce6eb1bb92a2c9531ab9fb346a50da527ccc2a (patch)
treeaa09a61cfa6e52cbefde13dccfe17cf8a8e0baf0 /figs/atoms.fig/Makefile
As presented at Rutgers university on 2022-08-26HEADv1.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..49923c0
--- /dev/null
+++ b/figs/atoms.fig/Makefile
@@ -0,0 +1,15 @@
+PROJECTNAME=crystal gas nematic smectic gas-rods
+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)