diff options
| author | Benedict <benedict@0xb8000.de> | 2016-03-21 23:06:08 +0100 |
|---|---|---|
| committer | Benedict <benedict@0xb8000.de> | 2017-02-21 13:00:25 +0100 |
| commit | b586255b0dc1d6940c4a552a7125c9875e8adba6 (patch) | |
| tree | fef42cc9bd579b022f519f1208e80c5d84b4a5f3 /set2/Makefile | |
| parent | 27a1b8050d2170b40024fe82cb27088f3c676f26 (diff) | |
completed set2. challenge 15
wait this is not the given order. Whaaats upp? Carzy guy!
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 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 |
