Initial commit

This commit is contained in:
Ian Jauslin
2018-05-05 23:18:02 +00:00
commit 618f6b678a
19 changed files with 1714 additions and 0 deletions

15
figs/atoms.fig/Makefile Normal file
View File

@ -0,0 +1,15 @@
PROJECTNAME=nematic liquid crystal 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)