aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-05-17 19:41:14 +0200
committercbdev <cb@cbcdn.com>2019-05-17 19:41:14 +0200
commitd28b5eb2960e80d80e967a3f01ce70e1fa457808 (patch)
treef19f22d441f9e66c9c17476477707e65d5e425cc /makefile
parent10874eb2195d3e6ceed8e8a76aaf4455e41c8683 (diff)
downloadwebsocksy-d28b5eb2960e80d80e967a3f01ce70e1fa457808.tar.gz
websocksy-d28b5eb2960e80d80e967a3f01ce70e1fa457808.tar.bz2
websocksy-d28b5eb2960e80d80e967a3f01ce70e1fa457808.zip
Split out websocket handling, HTTP header processing
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index a7a0b45..90716a0 100644
--- a/makefile
+++ b/makefile
@@ -2,7 +2,8 @@ CFLAGS=-g -Wall -Wpedantic
all: websocksy
-websocksy: websocksy.c websocksy.h
+websocksy: websocksy.c websocksy.h ws_proto.c
+ $(CC) $(CFLAGS) $< -o $@
clean:
rm websocksy