aboutsummaryrefslogtreecommitdiff
path: root/m
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2011-09-23 16:38:59 -0400
committerErik Schnetter <schnetter@gmail.com>2011-09-23 16:38:59 -0400
commit5649c3e9310fe688cfb714a9d7de585bcff1b045 (patch)
treed577536559c19ad73bcbb7ebd2f900afa9ed684d /m
parent116bcea2d949439fda6ecc729ad5f7d5df458b49 (diff)
Correct Makefile
Don't use "ADM*" as glob, since this refers to ADM, ADMConstraints, and ADMQuantities. Add ADMQuantities to cleanup rule.
Diffstat (limited to 'm')
-rw-r--r--m/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/m/Makefile b/m/Makefile
index 6c6bde5..3af082a 100644
--- a/m/Makefile
+++ b/m/Makefile
@@ -6,9 +6,9 @@ all: McLachlan_ADM.out McLachlan_BSSN.out McLachlan_ADMConstraints.out McLachlan
@echo
McLachlan_ADM.out: McLachlan_ADM.m
- rm -rf ML_ADM*
+ rm -rf ML_ADM
./runmath.sh $^
- for thorn in ML_ADM*; do \
+ for thorn in ML_ADM; do \
./copy-if-changed.sh $$thorn ../$$thorn; \
done
@@ -57,7 +57,7 @@ hydro.out: hydro.m
done
clean:
- rm -rf ML_ADM* ML_BSSN* ML_ADMConstraints*
+ rm -rf ML_ADM ML_BSSN* ML_ADMConstraints* ML_ADMQuantities*
rm -rf ML_WaveToy ML_WaveToyFO
rm -rf ML_hydro
rm -f McLachlan_ADM.out McLachlan_ADM.err