working commit

This commit is contained in:
Олег Бородин
2026-05-06 15:10:19 +02:00
parent eda9b8986b
commit 9540ac05d4
17 changed files with 849 additions and 228 deletions
+12 -5
View File
@@ -5,15 +5,22 @@ CXXFLAGS = -std=c++23 -Wall -I. -pthread -D_GNU_SOURCE=1 -MMD -MP
LDFLAGS = -pthread
LIBS = -Wl,--as-need -lprotobuf
sbin_PROGRAMS = helmetd
sbin_PROGRAMS = helmetsrv helmetcli
helmetd_SOURCES = helmetd.cpp $(helmet_SOURCES)
helmetsrv_SOURCES = helmetsrv.cpp \
tservice.cpp tservice.hpp \
sockhand.cpp dockhand.hpp \
$(helmet_SOURCES)
helmetcli_SOURCES = helmetcli.cpp \
uxclient.cpp uxclient.hpp \
$(helmet_SOURCES)
helmet_SOURCES = \
uxlogger.cpp uxlogger.hpp \
tservice.cpp tservice.hpp \
sockhand.cpp dockhand.hpp \
msgheader.cpp msgheader.hpp
msgheader.cpp msgheader.hpp \
interface.cpp interface.hpp \
uxcontrol.pb.cc uxcontrol.pb.h
ASTYLE_OPTS = --indent=spaces=8 --style=java
format: