From 35ad85b09baf4fdf7b750a595732840bb9fbf038 Mon Sep 17 00:00:00 2001 From: Evgeny Voevodin Date: Tue, 16 Oct 2012 09:11:43 +0400 Subject: [PATCH] Makefile.target: Compile hax-stub.c for targets without HAX support. Signed-off-by: Evgeny Voevodin --- Makefile.target | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.target b/Makefile.target index 402eaa74bc..60d860e693 100755 --- a/Makefile.target +++ b/Makefile.target @@ -144,9 +144,11 @@ obj-$(CONFIG_NO_XEN) += xen-stub.o # HAX support ifdef CONFIG_WIN32 obj-$(CONFIG_HAX) += target-i386/hax-all.o target-i386/hax-windows.o +obj-$(CONFIG_NO_HAX) += hax-stub.o endif ifdef CONFIG_DARWIN obj-$(CONFIG_HAX) += target-i386/hax-all.o target-i386/hax-darwin.o +obj-$(CONFIG_NO_HAX) += hax-stub.o endif # Hardware support -- 2.34.1