aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetWeb/hybrid-scaling/Makefile
blob: c49b5083d0575048550862cdb5da55cc130e6f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FILE=results-wavetoy-abe

all: $(FILE).pdf $(FILE).png

%.png: %.eps
	convert -rotate 90 $*.eps $*.png

%.pdf: %.eps
	epstopdf $*.eps

%.eps: %.gnuplot
	gnuplot < $*.gnuplot

clean:
	$(RM) $(FILE).eps $(FILE).pdf $(FILE).png

.PSEUDO: all clean