All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tools: Add install/uninstall targets to tests/x86_emulator
@ 2024-05-16 11:07 Alejandro Vallejo
  2024-05-16 11:16 ` Jan Beulich
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Alejandro Vallejo @ 2024-05-16 11:07 UTC (permalink / raw)
  To: Xen-devel
  Cc: Alejandro Vallejo, Jan Beulich, Andrew Cooper,
	Roger Pau Monné, Anthony PERARD

Bring test_x86_emulator in line with other tests by adding
install/uninstall rules.

Signed-off-by: Alejandro Vallejo <alejandro.vallejo@cloud.com>
---
 tools/tests/x86_emulator/Makefile | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/tools/tests/x86_emulator/Makefile b/tools/tests/x86_emulator/Makefile
index 834b2112e7fe..30edf7e0185d 100644
--- a/tools/tests/x86_emulator/Makefile
+++ b/tools/tests/x86_emulator/Makefile
@@ -269,8 +269,15 @@ clean:
 .PHONY: distclean
 distclean: clean
 
-.PHONY: install uninstall
-install uninstall:
+.PHONY: install
+install: all
+	$(INSTALL_DIR) $(DESTDIR)$(LIBEXEC_BIN)
+	$(if $(TARGET-y),$(INSTALL_PROG) $(TARGET-y) $(DESTDIR)$(LIBEXEC_BIN))
+
+.PHONY: uninstall
+uninstall:
+	$(RM) -- $(addprefix $(DESTDIR)$(LIBEXEC_BIN)/,$(TARGET-y))
+
 
 .PHONY: run32 clean32
 ifeq ($(XEN_COMPILE_ARCH),x86_64)
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2025-05-30 14:18 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-16 11:07 [PATCH] tools: Add install/uninstall targets to tests/x86_emulator Alejandro Vallejo
2024-05-16 11:16 ` Jan Beulich
2024-05-16 13:15   ` Alejandro Vallejo
2024-05-16 11:35 ` Roger Pau Monné
2024-05-16 12:29   ` Alejandro Vallejo
2024-05-16 12:37     ` Jan Beulich
2024-05-16 14:46       ` Alejandro Vallejo
2024-05-21  6:13         ` Jan Beulich
2025-05-20 21:02 ` Andrew Cooper
2025-05-20 22:48   ` Stefano Stabellini
2025-05-21  7:06   ` Jan Beulich
2025-05-30 14:18     ` Andrew Cooper
2025-05-26 15:38   ` Anthony PERARD

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.