diff options
Diffstat (limited to 'arch/x86/Makefile')
-rw-r--r-- | arch/x86/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/x86/Makefile b/arch/x86/Makefile new file mode 100644 index 000000000000..65077d79c846 --- /dev/null +++ b/arch/x86/Makefile | |||
@@ -0,0 +1,13 @@ | |||
1 | # Unified Makefile for i386 and x86_64 | ||
2 | |||
3 | # No need to remake these files | ||
4 | $(srctree)/arch/x86/Makefile%: ; | ||
5 | |||
6 | ifeq ($(ARCH),i386) | ||
7 | include $(srctree)/arch/x86/Makefile_32 | ||
8 | else | ||
9 | include $(srctree)/arch/x86/Makefile_64 | ||
10 | endif | ||
11 | |||
12 | |||
13 | |||