# Makefile at top of software tree

SUBFOLDERS := $(wildcard */)

.PHONY: all

all:
	for dir in $(SUBFOLDERS); do $(MAKE) -C $$dir; done

clean:
	for dir in $(SUBFOLDERS); do $(MAKE) -C $$dir clean; done
	
test:
	@echo $(SUBFOLDERS)
