xen: disable vcpu_info placement for now
[linux-2.6/kvm.git] / arch / x86 / Makefile
blob7aa1dc6d67c88f73067ff4be2ab6bf7ee204c9c1
1 # Unified Makefile for i386 and x86_64
3 # select defconfig based on actual architecture
4 ifeq ($(ARCH),x86)
5 KBUILD_DEFCONFIG := i386_defconfig
6 else
7 KBUILD_DEFCONFIG := $(ARCH)_defconfig
8 endif
10 # No need to remake these files
11 $(srctree)/arch/x86/Makefile%: ;
13 ifeq ($(CONFIG_X86_32),y)
14 UTS_MACHINE := i386
15 include $(srctree)/arch/x86/Makefile_32
16 else
17 UTS_MACHINE := x86_64
18 include $(srctree)/arch/x86/Makefile_64
19 endif