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

12 lines
140 B
Makefile

.PHONY: build tests
build:
meson setup build
meson compile -C build
test: build
build/wongotest
install: test
meson install -C build