Files
marte-debug/Makefile
Martino Ferrari 5ef0efe7d6 Initial commit
2026-02-21 00:58:56 +01:00

11 lines
200 B
Makefile

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