add recursive Makefile

This commit is contained in:
Jörg Thalheim 2015-04-27 11:19:52 +02:00
parent 6fc356d5f5
commit 7bafc2bbab
1 changed files with 12 additions and 0 deletions

12
c_sequential/Makefile Normal file
View File

@ -0,0 +1,12 @@
DIRS = 3sat bucketsort friendly haar knapsack
.PHONY: $(DIRS) clean
$(DIRS):
$(MAKE) -C $@
all: $(DIRS)
clean:
-for d in $(DIRS); do (cd $$d; $(MAKE) clean ); done