all:

CXX?=g++
FORTRAN?=gfortran


.PHONY: clean
clean:
	cd tests && $(MAKE) clean

.PHONY: distclean
distclean:
	cd tests && $(MAKE) distclean

.PHONY: test
test:
	cd tests && $(MAKE) test
