From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Jones Subject: [kvm-unit-tests PATCH 8/9] Makefile: change 'make install' to install standalone tests Date: Fri, 10 Jul 2015 18:45:02 +0200 Message-ID: <1436546703-12258-9-git-send-email-drjones@redhat.com> References: <1436546703-12258-1-git-send-email-drjones@redhat.com> Cc: pbonzini@redhat.com, mtosatti@redhat.com, jen@redhat.com To: kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:44663 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932601AbbGJQpT (ORCPT ); Fri, 10 Jul 2015 12:45:19 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 14A3C2E6DC8 for ; Fri, 10 Jul 2015 16:45:19 +0000 (UTC) In-Reply-To: <1436546703-12258-1-git-send-email-drjones@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: make install wasn't very useful without also installing scripts for the qemu command lines. I suspect 'make install' was never used. Installing standalone tests could be useful though, so let's do that instead. Signed-off-by: Andrew Jones --- Makefile | 6 +++--- config/config-arm-common.mak | 2 -- config/config-x86-common.mak | 2 -- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 7b1986b9133ad..def8ea25372e9 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ endif include config.mak -DESTDIR := $(PREFIX)/share/qemu/tests +DESTDIR := $(PREFIX)/share/kvm-unit-tests/tests .PHONY: arch_clean clean distclean cscope @@ -67,9 +67,9 @@ $(LIBFDT_archive): $(addprefix $(LIBFDT_objdir)/,$(LIBFDT_OBJS)) standalone: all @scripts/mkallstandalone.sh -install: +install: standalone mkdir -p $(DESTDIR) - install $(tests_and_config) $(DESTDIR) + install tests/* $(DESTDIR) clean: arch_clean $(RM) lib/.*.d $(libcflat) $(cflatobjs) diff --git a/config/config-arm-common.mak b/config/config-arm-common.mak index 0674daaa476d7..698555d6a676f 100644 --- a/config/config-arm-common.mak +++ b/config/config-arm-common.mak @@ -64,8 +64,6 @@ arm_clean: libfdt_clean asm_offsets_clean ################################################################## -tests_and_config = $(TEST_DIR)/*.flat $(TEST_DIR)/unittests.cfg - generated_files = $(asm-offsets) test_cases: $(generated_files) $(tests-common) $(tests) diff --git a/config/config-x86-common.mak b/config/config-x86-common.mak index d45c9a8e454d8..2ee7b7724bbaf 100644 --- a/config/config-x86-common.mak +++ b/config/config-x86-common.mak @@ -43,8 +43,6 @@ tests-common += api/dirty-log tests-common += api/dirty-log-perf endif -tests_and_config = $(TEST_DIR)/*.flat $(TEST_DIR)/unittests.cfg - test_cases: $(tests-common) $(tests) $(TEST_DIR)/%.o: CFLAGS += -std=gnu99 -ffreestanding -I lib -I lib/x86 -- 2.4.3