summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-09 13:15:18 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-09 13:15:18 +0100
commitdc2e2b3e293a8374a2627982b521cc6865129c49 (patch)
treebd34d6c13e330be5937aec29503cbe6649d0fa74 /Makefile
parentd747193e76baf689211d9f1e42335360288d43c0 (diff)
Separated out websocket
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 862fa51..2803d05 100644
--- a/Makefile
+++ b/Makefile
@@ -38,6 +38,7 @@ LDFLAGS+=-pie
PROGSRC=\
auth.cpp \
config.cpp \
+ error.cpp \
http.cpp \
https.cpp \
plugin.cpp \
@@ -45,7 +46,8 @@ PROGSRC=\
response.cpp \
statistics.cpp \
server.cpp \
- webserver.cpp
+ webserver.cpp \
+ websocket.cpp
SRC=$(PROGSRC) main.cpp
@@ -148,6 +150,8 @@ DISTFILES= \
debian/webserver.install \
debian/webserver.manpages \
debian/webserver.service \
+ error.cpp \
+ error.h \
http.cpp \
http.h \
https.cpp \
@@ -217,6 +221,8 @@ DISTFILES= \
tests/test-server.cpp \
tests/test-statistics.cpp \
tests/test-webserver.cpp \
+ websocket.cpp \
+ websocket.h \
webserver.1 \
webserver.conf \
webserver.cpp \