diff options
| author | Benedict <benedict@0xb8000.de> | 2016-08-01 15:24:33 +0200 |
|---|---|---|
| committer | Benedict <benedict@0xb8000.de> | 2017-02-21 13:00:25 +0100 |
| commit | bd40b9cd4f6436df1b249b0904845a404b903ffd (patch) | |
| tree | 2814821d5fdc88a9a0d3a5babf352b5999043fcd /set2/Makefile | |
| parent | 8c6d8449d8f9fed6f009f38878a80f17fcc778f2 (diff) | |
compledted set2, challenge 16
Diffstat (limited to 'set2/Makefile')
| -rw-r--r-- | set2/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/set2/Makefile b/set2/Makefile index a2d66d4..914471a 100644 --- a/set2/Makefile +++ b/set2/Makefile @@ -3,7 +3,7 @@ CC=gcc CFLAGS := -g $(CFLAGS) CLIBS=`pkg-config --cflags --libs libcrypto` -all: task9 task10 task11 task12 task13 task15 +all: task9 task10 task11 task12 task13 task15 task16 task9: $(CC) $(CFLAGS) task9.c $(LIB) $(CLIBS) -o task9 @@ -17,5 +17,7 @@ task13: $(CC) $(CFLAGS) task13.c $(LIB) $(CLIBS) -o task13 task15: $(CC) $(CFLAGS) task15.c $(LIB) $(CLIBS) -o task15 +task16: + $(CC) $(CFLAGS) task16.c $(LIB) $(CLIBS) -o task16 clean: - rm task9 task10 task11 task12 task13 task15 + rm task9 task10 task11 task12 task13 task15 task16 |
