aboutsummaryrefslogtreecommitdiff
path: root/m/Makefile
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2007-11-30 20:34:36 -0600
committerErik Schnetter <schnetter@cct.lsu.edu>2007-11-30 20:34:36 -0600
commitade7255aa26dbf98ad1e528d55d10d16de3b359f (patch)
tree437aa64296b9ccae5004561156e8f89a5826bb46 /m/Makefile
parent448082538b5e2a5154f7543bcb157bc57d439dac (diff)
Add first-order WaveToy. Use makefile to run Kranc
Diffstat (limited to 'm/Makefile')
-rw-r--r--m/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/m/Makefile b/m/Makefile
new file mode 100644
index 0000000..16eb997
--- /dev/null
+++ b/m/Makefile
@@ -0,0 +1,22 @@
+# -*-Makefile-*-
+
+all: McLachlan.out WaveToy.out
+ @echo
+ @echo "The Cactus thorns are up to date."
+ @echo
+
+McLachlan.out: McLachlan.m
+ rm -rf ML_ADM ML_BSSN
+ ./runmath.sh $^
+ for thorn in ML_ADM ML_BSSN; do ./copy-if-changed.sh $$thorn ../$$thorn; done
+
+WaveToy.out: WaveToy.m
+ rm -rf ML_WaveToy MLFO_Wavetoy
+ ./runmath.sh $^
+ for thorn in ML_WaveToy MLFO_Wavetoy; do ./copy-if-changed.sh $$thorn ../$$thorn; done
+
+clean:
+ rm -rf McLachlan.out McLachlan.err ML_ADM ML_BSSN
+ rm -rf Wavetoy.out Wavetoy.err ML_WaveToy MLFO_Wavetoy
+
+.PHONY: all clean