aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPekka Enberg <penberg@kernel.org>2011-06-06 22:47:05 +0300
committerWill Deacon <will.deacon@arm.com>2015-06-01 16:39:44 +0100
commitb6f60a8557900d51ec7c9920f2fd964e50dd9023 (patch)
tree22dda2bafc54b94dc9c545f5db091cc6c00d93c5 /Makefile
parent96feb58927c757b8742d9bc38656d4d66a6de454 (diff)
downloadkvmtool-b6f60a8557900d51ec7c9920f2fd964e50dd9023.tar.gz
kvm tools: Kill libvnc dependency from hw/i8042.c
This patch kills the libvnc dependency from hw/i8042.c so we can use the same hardware driver for SDL UI. Cc: Cyrill Gorcunov <gorcunov@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: John Floren <john@jfloren.net> Cc: Sasha Levin <levinsasha928@gmail.com> Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 55949aa4..6dca3c5f 100644
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,7 @@ OBJS += util/rbtree-interval.o
OBJS += util/strbuf.o
OBJS += virtio/9p.o
OBJS += hw/vesa.o
-
+OBJS += hw/i8042.o
FLAGS_BFD=$(CFLAGS) -lbfd
has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD))
@@ -67,7 +67,6 @@ has_vncserver := $(call try-cc,$(SOURCE_VNCSERVER),$(FLAGS_VNCSERVER))
ifeq ($(has_vncserver),y)
OBJS += ui/vnc.o
CFLAGS += -DCONFIG_HAS_VNCSERVER
- OBJS += hw/i8042.o
LIBS += -lvncserver
endif