13 lines
171 B
Makefile
13 lines
171 B
Makefile
|
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
|
||
|
|