aboutsummaryrefslogtreecommitdiff
path: root/m/Makefile
diff options
context:
space:
mode:
authorPeter Diener <diener@diener-3.lsu.edu>2008-05-15 14:38:28 -0500
committerPeter Diener <diener@diener-3.lsu.edu>2008-05-15 14:38:28 -0500
commit37b913a6a08192d34de0d8a0525c6e3c87b40b72 (patch)
tree16c9a3535b8586261ceac20140a44e0ceda6dcb3 /m/Makefile
parent2e4c705cde6f79047c68b485a77eb177bb1c332b (diff)
6th order version, upwinding version and upwinding, W-method version.
6th order version, upwinding version and upwinding, W-method version. Signed-off-by: Peter Diener <diener@diener-3.lsu.edu>
Diffstat (limited to 'm/Makefile')
-rw-r--r--m/Makefile18
1 files changed, 17 insertions, 1 deletions
diff --git a/m/Makefile b/m/Makefile
index eca8484..284c61d 100644
--- a/m/Makefile
+++ b/m/Makefile
@@ -1,6 +1,6 @@
# -*-Makefile-*-
-all: McLachlan.out WaveToy.out
+all: McLachlan.out McLachlanW.out WaveToy.out
@echo
@echo "The Cactus thorns are up to date."
@echo
@@ -10,6 +10,21 @@ McLachlan.out: McLachlan.m
./runmath.sh $^
for thorn in ML_ADM ML_BSSN; do ./copy-if-changed.sh $$thorn ../$$thorn; done
+McLachlanW.out: McLachlanW.m
+ rm -rf ML_BSSNW
+ ./runmath.sh $^
+ for thorn in ML_BSSNW; do ./copy-if-changed.sh $$thorn ../$$thorn; done
+
+McLachlanUp.out: McLachlanUp.m
+ rm -rf ML_BSSNUp
+ ./runmath.sh $^
+ for thorn in ML_BSSNUp; do ./copy-if-changed.sh $$thorn ../$$thorn; done
+
+McLachlan6.out: McLachlan6.m
+ rm -rf ML_BSSN6
+ ./runmath.sh $^
+ for thorn in ML_BSSN6; do ./copy-if-changed.sh $$thorn ../$$thorn; done
+
WaveToy.out: WaveToy.m
rm -rf ML_WaveToy ML_FOWaveToy
./runmath.sh $^
@@ -17,6 +32,7 @@ WaveToy.out: WaveToy.m
clean:
rm -rf McLachlan.out McLachlan.err ML_ADM ML_BSSN
+ rm -rf McLachlanW.out McLachlanW.err ML_BSSNW
rm -rf WaveToy.out WaveToy.err ML_WaveToy ML_FOWaveToy
.PHONY: all clean