diff options
| author | Benedict <benedict@0xb8000.de> | 2016-08-04 19:24:17 +0200 |
|---|---|---|
| committer | Benedict <benedict@0xb8000.de> | 2017-02-21 13:00:25 +0100 |
| commit | 4e0e29f48f797206a21aa5ba7855ffde72e85cf9 (patch) | |
| tree | 951795c82c357aa9560f7b529f5b93e51554ed86 /set3/Makefile | |
| parent | 11b2ff584c67cf85ebe2405f6a74ab2799736927 (diff) | |
completed set3, challenge 20
Diffstat (limited to 'set3/Makefile')
| -rw-r--r-- | set3/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/set3/Makefile b/set3/Makefile index d3b3f03..a6ed5fc 100644 --- a/set3/Makefile +++ b/set3/Makefile @@ -3,12 +3,16 @@ CC=gcc CFLAGS := -g $(CFLAGS) CLIBS=`pkg-config --cflags --libs libcrypto` -all: task17 task18 +all: task17 task18 task19 task20 task17: $(CC) $(CFLAGS) task17.c $(LIB) $(CLIBS) -o task17 task18: $(CC) $(CFLAGS) task18.c $(LIB) $(CLIBS) -o task18 +task19: + $(CC) $(CFLAGS) task19.c $(LIB) $(CLIBS) -o task19 +task20: + $(CC) $(CFLAGS) task20.c $(LIB) $(CLIBS) -o task20 clean: - rm task17 task18 + rm task17 task18 task19 task20 |
