summaryrefslogtreecommitdiff
path: root/set6
diff options
context:
space:
mode:
Diffstat (limited to 'set6')
-rw-r--r--set6/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/set6/Makefile b/set6/Makefile
new file mode 100644
index 0000000..8b0ffbd
--- /dev/null
+++ b/set6/Makefile
@@ -0,0 +1,9 @@
+include ../.Makefile.common
+COBJS=$(shell find . -type f -name "task*.c" | sed "s/\(.*\)\.c/\1.o/g")
+TARGETS=$(shell find . -type f -name "task*.c" | sed "s/\(.*\)\.c/\1/g")
+
+all: $(TARGETS)
+
+clean:
+ @echo -e "\tDEL\t$(TARGETS)"
+ @rm $(TARGETS)