From 11b2ff584c67cf85ebe2405f6a74ab2799736927 Mon Sep 17 00:00:00 2001 From: Benedict Date: Thu, 4 Aug 2016 14:28:15 +0200 Subject: completed set3, task 18 --- set3/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 set3/Makefile (limited to 'set3/Makefile') diff --git a/set3/Makefile b/set3/Makefile new file mode 100644 index 0000000..d3b3f03 --- /dev/null +++ b/set3/Makefile @@ -0,0 +1,14 @@ +LIB=../lib/lib2.c ../lib/lib.c ../lib/lib3.c +CC=gcc +CFLAGS := -g $(CFLAGS) +CLIBS=`pkg-config --cflags --libs libcrypto` + +all: task17 task18 + +task17: + $(CC) $(CFLAGS) task17.c $(LIB) $(CLIBS) -o task17 + +task18: + $(CC) $(CFLAGS) task18.c $(LIB) $(CLIBS) -o task18 +clean: + rm task17 task18 -- cgit v1.2.3-70-g09d2