pixtool/Makefile

16 lines
236 B
Makefile
Raw Normal View History

2023-12-26 19:22:51 +00:00
.PHONY: build tests install
2023-12-26 15:30:10 +00:00
build:
meson setup build
meson compile -C build
2023-12-26 19:22:51 +00:00
tests: build
build/pixtool-tests
install: tests
2023-12-26 15:30:10 +00:00
meson install -C build
2023-12-26 19:22:51 +00:00
check:
cppcheck --language=c++ --enable=all -q src \
--suppress=missingInclude