From ff94e4518d417d88f2fabdfca7025e68ce21849b Mon Sep 17 00:00:00 2001 From: cbdev Date: Sat, 18 May 2019 13:12:46 +0200 Subject: Complete WS connection establishment --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 90716a0..2d23909 100644 --- a/makefile +++ b/makefile @@ -1,9 +1,10 @@ CFLAGS=-g -Wall -Wpedantic +LDLIBS=-lnettle all: websocksy websocksy: websocksy.c websocksy.h ws_proto.c - $(CC) $(CFLAGS) $< -o $@ + $(CC) $(CFLAGS) $(LDLIBS) $< -o $@ clean: rm websocksy -- cgit v1.2.3