aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-05-18 13:12:46 +0200
committercbdev <cb@cbcdn.com>2019-05-18 13:12:46 +0200
commitff94e4518d417d88f2fabdfca7025e68ce21849b (patch)
tree22232e7187cf5e7e9b03be84691a2b4f12de0645 /makefile
parentd28b5eb2960e80d80e967a3f01ce70e1fa457808 (diff)
downloadwebsocksy-ff94e4518d417d88f2fabdfca7025e68ce21849b.tar.gz
websocksy-ff94e4518d417d88f2fabdfca7025e68ce21849b.tar.bz2
websocksy-ff94e4518d417d88f2fabdfca7025e68ce21849b.zip
Complete WS connection establishment
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
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