Ian Jauslin
summaryrefslogtreecommitdiff
blob: a4b610fd98c45aedff4c0bd20f92b42eca26d306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)