diff --git a/c_sequential/Makefile b/c_sequential/Makefile new file mode 100644 index 0000000..c069530 --- /dev/null +++ b/c_sequential/Makefile @@ -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 +