add recursive Makefile
This commit is contained in:
parent
6fc356d5f5
commit
7bafc2bbab
12
c_sequential/Makefile
Normal file
12
c_sequential/Makefile
Normal 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
|
||||
|
Loading…
Reference in New Issue
Block a user