diff mbox series

[v4,08/14] hvf: add compilation rules to Makefile.objs

Message ID 20170913090522.4022-9-Sergio.G.DelReal@gmail.com
State New
Headers show
Series add support for Hypervisor.framework in QEMU | expand

Commit Message

Sergio Andres Gomez Del Real Sept. 13, 2017, 9:05 a.m. UTC
This patch adds to target/i386/Makefile.objs the necessary rules so
that the new files for hvf are compiled by the build system.

Signed-off-by: Sergio Andres Gomez Del Real <Sergio.G.DelReal@gmail.com>
---
 target/i386/Makefile.objs | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/target/i386/Makefile.objs b/target/i386/Makefile.objs
index 6a26e9d9f0..0bef89c099 100644
--- a/target/i386/Makefile.objs
+++ b/target/i386/Makefile.objs
@@ -12,4 +12,5 @@  obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-windows.o
 endif
 ifdef CONFIG_DARWIN
 obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-darwin.o
+obj-$(CONFIG_HVF) += hvf-utils/ hvf-all.o
 endif