2 files changed, 2 insertions(+), 1 deletion(-)
user/Makefile | 2 ++
user/config-x86-common.mak | 1 -
$(kvmtrace_objs) is defined in config-x86-common.mak. This needs to be moved to
the common Makefile so everyone can build it. Also it is just one c file as
opposed to multiple diffrering c files as with kvmctl.
Signed-off-by: Jerone Young <[EMAIL PROTECTED]>
diff --git a/user/Makefile b/user/Makefile
--- a/user/Makefile
+++ b/user/Makefile
@@ -33,6 +33,8 @@ autodepend-flags = -MMD -MF $(dir $*).$(
LDFLAGS += -pthread -lrt
+kvmtrace_objs= kvmtrace.o
+
kvmctl: $(kvmctl_objs)
$(CC) $(LDFLAGS) $^ -o $@
diff --git a/user/config-x86-common.mak b/user/config-x86-common.mak
--- a/user/config-x86-common.mak
+++ b/user/config-x86-common.mak
@@ -3,7 +3,6 @@ all: kvmctl kvmtrace test_cases
all: kvmctl kvmtrace test_cases
kvmctl_objs= main.o iotable.o ../libkvm/libkvm.a
-kvmtrace_objs= kvmtrace.o
balloon_ctl: balloon_ctl.o
FLATLIBS = $(TEST_DIR)/libcflat.a $(libgcc)
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html