diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-26 20:46:30 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-26 20:46:30 +0100 |
commit | 789e5555ab4c44a1ae779eccf6ccf8340602cf22 (patch) | |
tree | fd1c15ac38ec4d43965d8e12a149ae52a0808a73 /Makefile | |
parent | 004db5e7e4e9ab6ac5b4730873c6b8f58da92930 (diff) |
Websockets: Notify other clients of changes
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ VERSION=$(shell dpkg-parsechangelog --show-field Version) TGZNAME=$(PROJECTNAME)-$(VERSION).tar.xz INCLUDES=-I. -HEADERS=config.h qrcode.h storage.h whiteboard.h compiledsql.h +HEADERS=config.h qrcode.h storage.h whiteboard.h compiledsql.h connectionregistry.h SOURCES=$(HEADERS:.h=.cpp) OBJECTS=$(HEADERS:.h=.o) TARGETS=whiteboard @@ -21,7 +21,7 @@ TARGETS=whiteboard build: $(TARGETS) all: build - ./start.sh + ./whiteboard -c whiteboard.conf install: mkdir -p $(DESTDIR)/usr/bin |