diff options
author | Florian Schmaus <flow@gentoo.org> | 2023-11-15 10:34:47 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2023-11-16 16:52:54 +0100 |
commit | 54c5c9ebbf701f9dcd9f78da9f13ae967f922243 (patch) | |
tree | a7a3c43a8302ed18eccc909fcbd3de7093723be5 /Makefile | |
parent | update deprecated test methods for python-3.12 compatibility (diff) | |
download | java-config-54c5c9ebbf701f9dcd9f78da9f13ae967f922243.tar.gz java-config-54c5c9ebbf701f9dcd9f78da9f13ae967f922243.tar.bz2 java-config-54c5c9ebbf701f9dcd9f78da9f13ae967f922243.zip |
Use Meson as build system
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7bfb80c --- /dev/null +++ b/Makefile @@ -0,0 +1,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 |