Initial commit

This commit is contained in:
Martino Ferrari
2026-02-21 00:58:56 +01:00
commit 5ef0efe7d6
26 changed files with 7999 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
all: build
build:
mkdir -p Build && cd Build && . ../env.sh && cmake -DCMAKE_BUILD_TYPE=Debug .. && make
ln -sf libmarte_dev.so Build/DebugService.so
clean:
rm -rf Build
.PHONY: all build clean