20 lines
351 B
Makefile
20 lines
351 B
Makefile
.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
|