commit 251c538ad174eded09f0ebe626d7b1ac8b7bda14 parent b8860177ba3e052baecac785e033a80ddf9ba636 Author: deurzen <max@deurzen.net> Date: Fri, 3 Jun 2022 09:20:45 +0200 adds build targets Diffstat:
A | Makefile | | | 21 | +++++++++++++++++++++ |
1 file changed, 21 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,21 @@ +all: caps2esclogo4alt + +caps2esclogo4alt: + cmake -S . -B build + make -C build + +release: + cmake -DCMAKE_BUILD_TYPE=Release -S . -B build + make -C build + +install: + make -C build install + +test: caps2esclogo4alt + ctest --verbose --test-dir build + +.PHONY: clean +clean: + @rm -rf ./tags + @rm -rf ./build + @rm -f ./include/protocols/*