Commit ee2dd3be by Tobias Langer

Added Makefile to build all experiments.

parent 3f987d79
NON_DIRS=experiments/ template/
DIRS=$(patsubst %/,%/,$(sort $(dir $(filter-out $(NON_DIRS),$(wildcard */)))))
MAKE=make
.PHONY: all clean $(DIRS) run
all: $(DIRS)
$(DIRS):
@echo Entering $@
$(MAKE) -C $@
@echo Leaving $@
clean: $(CLEAN)
@echo Cleaning up...
@for i in $(DIRS); do ($(MAKE) -C $$i/ clean); done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment