aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetWeb/scaling-ranger/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/CarpetWeb/scaling-ranger/Makefile')
-rw-r--r--Carpet/CarpetWeb/scaling-ranger/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Carpet/CarpetWeb/scaling-ranger/Makefile b/Carpet/CarpetWeb/scaling-ranger/Makefile
new file mode 100644
index 000000000..65890411f
--- /dev/null
+++ b/Carpet/CarpetWeb/scaling-ranger/Makefile
@@ -0,0 +1,17 @@
+FILE=results-ranger
+
+all: $(FILE).pdf $(FILE).png
+
+%.png: %.eps
+ convert $*.eps $*.png
+
+%.pdf: %.eps
+ epstopdf $*.eps
+
+%.eps: %.gnuplot
+ gnuplot < $*.gnuplot
+
+clean:
+ $(RM) $(FILE).eps $(FILE).pdf $(FILE).png
+
+.PSEUDO: all clean