This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
|
.PHONY: build tests
|
|
|
|
build:
|
|
meson setup build
|
|
meson compile -C build
|
|
|
|
test: build
|
|
build/wongotest
|
|
|
|
install: test
|
|
meson install -C build
|