aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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