diff options
author | Ian Jauslin <jauslin@ias.edu> | 2018-04-04 06:21:21 +0000 |
---|---|---|
committer | Ian Jauslin <jauslin@ias.edu> | 2018-04-04 06:21:21 +0000 |
commit | f950c74e38d120e42637983d504f85843a63e95d (patch) | |
tree | eb2ded33fc156da7adaf096c3816432b4262c8d4 /figs/nematic.fig/Makefile |
Diffstat (limited to 'figs/nematic.fig/Makefile')
-rw-r--r-- | figs/nematic.fig/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/figs/nematic.fig/Makefile b/figs/nematic.fig/Makefile new file mode 100644 index 0000000..8e8462f --- /dev/null +++ b/figs/nematic.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) |