aboutsummaryrefslogtreecommitdiff
path: root/m/Makefile
blob: 5cfbcd0b2bad8b5ef665dd6412d992b5cd958b0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*-Makefile-*-

all: WeylScal4.out
	@echo
	@echo "The Cactus thorns are up to date."
	@echo

WeylScal4.out: WeylScal4.m
	rm -rf WeylScal4
	./runmath.sh $^
	for thorn in WeylScal*; do \
		./copy-if-changed.sh $$thorn ../$$thorn; \
	done

clean:
	rm -rf WeylScal4
	rm -f WeylScal4.out WeylScal4.err

.PHONY: all clean