|
|
| File: [Development] / linux-2.6-xfs / arch / x86 / Makefile (download)
Revision 1.2, Mon Jan 7 15:11:45 2008 UTC (9 years, 9 months ago) by lachlan.longdrop.melbourne.sgi.com
Merge up to 2.6.24-rc6 Merge of 2.6.x-xfs-melb:linux:30301a by kenmcd. |
# Unified Makefile for i386 and x86_64
# select defconfig based on actual architecture
ifeq ($(ARCH),x86)
KBUILD_DEFCONFIG := i386_defconfig
else
KBUILD_DEFCONFIG := $(ARCH)_defconfig
endif
# No need to remake these files
$(srctree)/arch/x86/Makefile%: ;
ifeq ($(CONFIG_X86_32),y)
UTS_MACHINE := i386
include $(srctree)/arch/x86/Makefile_32
else
UTS_MACHINE := x86_64
include $(srctree)/arch/x86/Makefile_64
endif