2007-10-25 19:42:04 +02:00
|
|
|
# Unified Makefile for i386 and x86_64
|
|
|
|
|
2007-10-25 20:31:19 +02:00
|
|
|
# select defconfig based on actual architecture
|
|
|
|
KBUILD_DEFCONFIG := $(ARCH)_defconfig
|
|
|
|
|
|
|
|
# # No need to remake these files
|
2007-10-25 19:42:04 +02:00
|
|
|
$(srctree)/arch/x86/Makefile%: ;
|
|
|
|
|
|
|
|
ifeq ($(ARCH),i386)
|
|
|
|
include $(srctree)/arch/x86/Makefile_32
|
|
|
|
else
|
|
|
|
include $(srctree)/arch/x86/Makefile_64
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|