diff options
| author | Roland Reichwein <mail@reichwein.it> | 2023-01-09 13:15:18 +0100 | 
|---|---|---|
| committer | Roland Reichwein <mail@reichwein.it> | 2023-01-09 13:15:18 +0100 | 
| commit | dc2e2b3e293a8374a2627982b521cc6865129c49 (patch) | |
| tree | bd34d6c13e330be5937aec29503cbe6649d0fa74 /Makefile | |
| parent | d747193e76baf689211d9f1e42335360288d43c0 (diff) | |
Separated out websocket
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 | 
1 files changed, 7 insertions, 1 deletions
@@ -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 \  | 
