blob: 7bfb80cef4a8276afcb853656c136fa23c4b7b83 (
plain)
1
2
3
4
5
6
7
8
9
10
|
build:
meson setup build
.PHONY: test
test: build
meson test -C build --verbose
.PHONY: test
test-install: build
meson install -C build --destdir /var/tmp/java-config-destdir
|