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

.PHONY: build
build:
meson setup build
meson compile -C build
install: build
meson install -C build
check:
cppcheck --language=c++ --enable=all -q \
--suppress=missingInclude \
--suppress=missingIncludeSystem \
src