snake/Makefile

23 lines
325 B
Makefile
Raw Normal View History

2023-10-12 19:18:36 +00:00
.PHONY: build tests doc
2023-10-12 16:35:43 +00:00
build:
meson setup build
meson compile -C build
tests: build
build/snake-tests
install: tests force-install
force-install:
meson install -C build
check:
cppcheck --enable=all -q \
--language=c++ \
--suppress=missingIncludeSystem \
--suppress=missingInclude \
src tests
2023-10-12 19:18:36 +00:00
doc:
doxygen