MAKE=make
DOTPROD=dotprod
FORWARD=forward

all: dotprods forwards

dotprods: ${DOTPROD}/Makefile
	cd ${DOTPROD} && $(MAKE)

forwards: ${FORWARD}/Makefile
	cd ${FORWARD} && $(MAKE)

clean:
	rm -f -r */CIVLREP
	rm -f -r */*~
	rm -f *~

