summaryrefslogtreecommitdiff
path: root/meson.sh
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2018-07-11 10:04:09 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2018-10-04 15:23:08 +0200
commit5f40e617cd9c1e089f4a2d79c53a417d891e3e3c (patch)
tree144946db9b5a52f859a390320304a17eea2d104a /meson.sh
parent519003cace0c32aa226005dc7409544e26c243c2 (diff)
meson.sh: Add support for install/uninstall
This should work now. Acked-by: Petri Latvala <petri.latvala@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'meson.sh')
-rwxr-xr-xmeson.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/meson.sh b/meson.sh
index f0db2a19..7cf9d4a3 100755
--- a/meson.sh
+++ b/meson.sh
@@ -24,8 +24,11 @@ reconfigure: build/build.ninja
check distcheck dist distclean:
echo "This is the meson wrapper, not automake" && false
-install uninstall:
- echo "meson install support not yet completed" && false
+install: build/build.ninja
+ ninja -C build install
+
+uninstall: build/build.ninja
+ ninja -C build uninstall
docs:
ninja -C build igt-gpu-tools-doc