diff options
author | Ian Jauslin <ian@jauslin.org> | 2022-10-17 20:59:01 -0400 |
---|---|---|
committer | Ian Jauslin <ian@jauslin.org> | 2022-10-17 20:59:01 -0400 |
commit | bdf817efec1cfdd67cc6176a6664442fd98173ae (patch) | |
tree | 93d0abe475c342b2c0cac0dfdb16e2fa018bf4e6 /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..50559fa --- /dev/null +++ b/figs/atoms.fig/Makefile @@ -0,0 +1,15 @@ +PROJECTNAME=crystal liquid 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) |