diff options
author | Ian Jauslin <ian@jauslin.org> | 2020-01-09 22:42:09 -0800 |
---|---|---|
committer | Ian Jauslin <ian@jauslin.org> | 2020-01-09 22:42:09 -0800 |
commit | 93db722d68cbb79b7e6da359ab48d4a14881e025 (patch) | |
tree | c71a6092b4994cc29bbe0d9b6715dcd97a02f253 /figs/atoms.fig/Makefile |
Diffstat (limited to 'figs/atoms.fig/Makefile')
-rw-r--r-- | figs/atoms.fig/Makefile | 15 |
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) |