summaryrefslogtreecommitdiff
path: root/set2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'set2/Makefile')
-rw-r--r--set2/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/set2/Makefile b/set2/Makefile
new file mode 100644
index 0000000..abbacc0
--- /dev/null
+++ b/set2/Makefile
@@ -0,0 +1,10 @@
+LIB=../lib/lib2.c
+CC=gcc
+CFLAGS := -g -Wall $(CFLAGS)
+
+all: task9
+
+task9:
+ $(CC) $(CFLAGS) task9.c $(LIB) -o task9
+clean:
+ rm task9