NOTDIRS := CVS scripts
SUBDIRS := $(filter-out $(NOTDIRS),$(shell find * -type d -maxdepth 0))

.PHONY: all run start $(SUBDIRS)

all: $(SUBDIRS)

run: start $(SUBDIRS)

start:
	$(SCT_DAQ_ROOT)/SystemTests/scripts/start.sh

$(SUBDIRS):
	$(MAKE) -C $@ $(MAKECMDGOALS)

