summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5e5d683
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+LIB=lib.c
+CC=gcc
+
+all: task4 task5 task6
+
+task4:
+ $(CC) task4.c $(LIB) -o task4
+
+task5:
+ $(CC) task5.c $(LIB) -o task5
+
+task6:
+ $(CC) task6.c $(LIB) -o task6
+
+clean:
+ rm task4 task5 task6