summaryrefslogtreecommitdiff
path: root/set2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'set2/Makefile')
-rw-r--r--set2/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/set2/Makefile b/set2/Makefile
index b0c56a2..1f8f890 100644
--- a/set2/Makefile
+++ b/set2/Makefile
@@ -3,11 +3,13 @@ CC=gcc
CFLAGS := -g $(CFLAGS)
CLIBS=`pkg-config --cflags --libs libcrypto`
-all: task9 task10
+all: task9 task10 task15
task9:
$(CC) $(CFLAGS) task9.c $(LIB) $(CLIBS) -o task9
task10:
$(CC) $(CFLAGS) task10.c $(LIB) $(CLIBS) -o task10
+task15:
+ $(CC) $(CFLAGS) task15.c $(LIB) $(CLIBS) -o task15
clean:
- rm task9 task10
+ rm task9 task10 task15