test/vsock: add install target
authorPeng Fan <peng.fan@nxp.com>
Wed, 10 Jul 2024 12:27:28 +0000 (20:27 +0800)
committerJakub Kicinski <kuba@kernel.org>
Sat, 13 Jul 2024 22:17:35 +0000 (15:17 -0700)
Add install target for vsock to make Yocto easy to install the images.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Link: https://patch.msgid.link/20240710122728.45044-1-peng.fan@oss.nxp.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
tools/testing/vsock/Makefile

index a7f56a09ca9f0f80527abbefc708cd42a93b5982..6e0b4e95e230500f99bb9c74350701a037ecd198 100644 (file)
@@ -13,3 +13,16 @@ CFLAGS += -g -O2 -Werror -Wall -I. -I../../include -I../../../usr/include -Wno-p
 clean:
        ${RM} *.o *.d vsock_test vsock_diag_test vsock_perf vsock_uring_test
 -include *.d
+
+VSOCK_INSTALL_PATH ?=
+
+install: all
+ifdef VSOCK_INSTALL_PATH
+       mkdir -p $(VSOCK_INSTALL_PATH)
+       install -m 744 vsock_test $(VSOCK_INSTALL_PATH)
+       install -m 744 vsock_perf $(VSOCK_INSTALL_PATH)
+       install -m 744 vsock_diag_test $(VSOCK_INSTALL_PATH)
+       install -m 744 vsock_uring_test $(VSOCK_INSTALL_PATH)
+else
+       $(error Error: set VSOCK_INSTALL_PATH to use install)
+endif