diff options
| author | Benedict <benedict@0xb8000.de> | 2016-03-19 22:44:50 +0100 |
|---|---|---|
| committer | Benedict <benedict@0xb8000.de> | 2017-02-21 13:00:25 +0100 |
| commit | 95b1e82c4fca864600108d4e36ceadbb290a76f3 (patch) | |
| tree | bb5595e557c90323d5383379143636cf18e01a21 /set1/Makefile | |
| parent | 2930ba4f32680e245c1dae66197153abdf6502a6 (diff) | |
set1, challenge 8 completed
Diffstat (limited to 'set1/Makefile')
| -rw-r--r-- | set1/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/set1/Makefile b/set1/Makefile index 6c0f149..0d08451 100644 --- a/set1/Makefile +++ b/set1/Makefile @@ -2,7 +2,7 @@ LIB=../lib/lib.c CC=gcc CFLAGS := -g -Wall $(CFLAGS) -all: task1 task2 task4 task5 task6 task7 +all: task1 task2 task4 task5 task6 task7 task8 task1: $(CC) $(CFLAGS) task1.c $(LIB) -o task1 @@ -21,5 +21,7 @@ task6: task7: $(CC) $(CFLAGS) task7.c `pkg-config --cflags --libs libcrypto` -o task7 +task8: + $(CC) $(CFLAGS) task8.c $(LIB) -o task8 clean: - rm task1 task2 task4 task5 task6 task7 + rm task1 task2 task4 task5 task6 task7 task8 |
