aboutsummaryrefslogtreecommitdiff
path: root/m/Makefile
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2009-04-27 11:12:03 -0500
committerErik Schnetter <schnetter@cct.lsu.edu>2009-04-27 11:12:03 -0500
commit2ca9b048d3710cab763737790679bcc68a3bf122 (patch)
tree31ab457975edae5c73e31641f27f99f7a7e93b9f /m/Makefile
parentd23f291536fe9aeb728bfda19931a8e4961a1406 (diff)
parent8e0b4a3127e6b19307297fbc4c27f776363fd55e (diff)
Merge branch 'master' of ssh://relativity.phys.lsu.edu/home/perturbed/gitroot/McLachlan
Conflicts: m/Makefile m/McLachlan_BSSN.m
Diffstat (limited to 'm/Makefile')
-rw-r--r--m/Makefile31
1 files changed, 27 insertions, 4 deletions
diff --git a/m/Makefile b/m/Makefile
index 15fee8b..08e4f70 100644
--- a/m/Makefile
+++ b/m/Makefile
@@ -1,20 +1,40 @@
# -*-Makefile-*-
-all: McLachlan_ADM.out McLachlan_BSSN.out WaveToy.out hydro.out
+all: McLachlan_ADM.out McLachlan_BSSN.out McLachlanW.out WaveToy.out hydro.out
@echo
@echo "The Cactus thorns are up to date."
@echo
McLachlan_ADM.out: McLachlan_ADM.m
-# rm -rf ML_ADM*
-# ./runmath.sh $^
-# for thorn in ML_ADM*; do ./copy-if-changed.sh $$thorn ../$$thorn; done
+ rm -rf ML_ADM*
+ ./runmath.sh $^
+ for thorn in ML_ADM*; do ./copy-if-changed.sh $$thorn ../$$thorn; done
McLachlan_BSSN.out: McLachlan_BSSN.m
rm -rf ML_BSSN*
./runmath.sh $^
for thorn in 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
+
+McLachlan_Psilon.out: McLachlan_Psilon.m
+ rm -rf ML_Psilon*
+ ./runmath.sh $^
+ for thorn in ML_Psilon*; do ./copy-if-changed.sh $$thorn ../$$thorn; done
+
WaveToy.out: WaveToy.m
rm -rf ML_WaveToy ML_FOWaveToy
./runmath.sh $^
@@ -28,6 +48,9 @@ hydro.out: hydro.m
clean:
rm -rf McLachlan_ADM.out McLachlan_ADM.err ML_ADM*
rm -rf McLachlan_BSSN.out McLachlan_BSSN.err ML_BSSN*
+ rm -rf McLachlanW.out McLachlanW.err
+ rm -rf McLachlanUp.out McLachlanUp.err
+ rm -rf McLachlan6.out McLachlan6.err
rm -rf WaveToy.out WaveToy.err ML_WaveToy ML_FOWaveToy
.PHONY: all clean