linux/arch/x86/Makefile
<<
>>
Prefs
   1# Unified Makefile for i386 and x86_64
   2
   3# select defconfig based on actual architecture
   4ifeq ($(ARCH),x86)
   5        KBUILD_DEFCONFIG := i386_defconfig
   6else
   7        KBUILD_DEFCONFIG := $(ARCH)_defconfig
   8endif
   9
  10# No need to remake these files
  11$(srctree)/arch/x86/Makefile%: ;
  12
  13ifeq ($(CONFIG_X86_32),y)
  14        UTS_MACHINE := i386
  15        include $(srctree)/arch/x86/Makefile_32
  16else
  17        UTS_MACHINE := x86_64
  18        include $(srctree)/arch/x86/Makefile_64
  19endif
  20
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.