diff options
author | Ian Jauslin <jauslin@ias.edu> | 2017-12-17 04:17:26 +0000 |
---|---|---|
committer | Ian Jauslin <jauslin@ias.edu> | 2017-12-17 04:17:26 +0000 |
commit | a270f72c71b7b7f71e47516ccac1737bd8b98903 (patch) | |
tree | c94a691a98cdb0f125752bc8eae178a31b620582 /figs/atoms.fig/Makefile |
As presented at the 118th Statistical Mechanics Meeting at Rutgers University on 2017-12-17HEADv1.0master
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..8e8462f --- /dev/null +++ b/figs/atoms.fig/Makefile @@ -0,0 +1,15 @@ +PROJECTNAME=nematic +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) |