# Unified Makefile for i386 and x86_64# select defconfig based on actual architectureKBUILD_DEFCONFIG:=$(ARCH)_defconfig
# # No need to remake these files$(srctree)/arch/x86/Makefile%:;
ifeq ($(ARCH),i386) include $(srctree)/arch/x86/Makefile_32else include $(srctree)/arch/x86/Makefile_64endif