roza/Makefile

20 lines
351 B
Makefile
Raw Normal View History

2023-12-07 19:16:58 +00:00
.PHONY: build tests
build:
meson setup build
meson compile -C build
tests: build
build/roza-tests
install: build
meson install -C build
check:
@cppcheck --language=c --enable=all lib src -q \
--suppress=missingIncludeSystem
@cppcheck --language=c --enable=all tests/units -q \
--suppress=missingIncludeSystem \
--suppress=unusedFunction