forked from luck/tmp_suning_uos_patched
74b469f2e6
Moving the ARCH specific Makefiles for i386 and x86_64 required a litle bit tweaking in the top-lvel Makefile. SRCARCH is now set in the top-level Makefile because we need this info to include the correct arch Makefile. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
14 lines
236 B
Makefile
14 lines
236 B
Makefile
# Unified Makefile for i386 and x86_64
|
|
|
|
# No need to remake these files
|
|
$(srctree)/arch/x86/Makefile%: ;
|
|
|
|
ifeq ($(ARCH),i386)
|
|
include $(srctree)/arch/x86/Makefile_32
|
|
else
|
|
include $(srctree)/arch/x86/Makefile_64
|
|
endif
|
|
|
|
|
|
|