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