This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
mornelune/Makefile

15 lines
228 B
Makefile
Raw Normal View History

2023-10-24 21:09:38 +00:00
.PHONY: build
build:
meson setup build
meson compile -C build
install: build
meson install -C build
2023-10-25 06:44:52 +00:00
check:
cppcheck --language=c++ --enable=all -q \
--suppress=missingInclude \
--suppress=missingIncludeSystem \
src