#
.PHONY: all test1 testAA


all: 
	@echo "To do test 1; make test1"
	@echo "To do cAAXsec.f; make testAA"
	@echo "To do testxp.f; make testxp"
	
test1:
	make -f test.mk
	rm -f /tmp/*.f
testAA:
	make -f testAA.mk
	rm -f /tmp/*.f
testxp:
	make -f testxp.mk
	rm -f /tmp/*.f
clean:
	@rm -f *.o core  *~
