summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2019-05-12 00:42:57 +0100
committerLuke Bratch <luke@bratch.co.uk>2019-05-12 00:42:57 +0100
commit01c0e36bb3f6c8345d4a94b157b68a0c0f4c85cf (patch)
tree6d71e15784e052380de8747430e5fb0702db73aa /Makefile
parent34d410dc82e05f4255ec23a9deaff212b7903955 (diff)
Implement TLS using OpenSSL.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5bf17a3..f297c74 100644
--- a/Makefile
+++ b/Makefile
@@ -5,4 +5,4 @@ DEPS = functions.h sockets.h config.h replay.h
$(CC) -Wall -Wextra -c -o $@ $<
blabouncer: blabouncer.o functions.o sockets.o config.o replay.o
- $(CC) -Wall -Wextra -o blabouncer blabouncer.o functions.o sockets.o config.o replay.o
+ $(CC) -Wall -Wextra -lssl -lcrypto -o blabouncer blabouncer.o functions.o sockets.o config.o replay.o