diff options
-rw-r--r-- | arch/i386/lib/Makefile | 16 | ||||
-rw-r--r-- | arch/i386/lib/Makefile_32 | 11 |
2 files changed, 16 insertions, 11 deletions
diff --git a/arch/i386/lib/Makefile b/arch/i386/lib/Makefile index 98d1f1e2e2ef..2b1547e0ac6b 100644 --- a/arch/i386/lib/Makefile +++ b/arch/i386/lib/Makefile | |||
@@ -1,11 +1,5 @@ | |||
1 | # | 1 | ifeq ($(CONFIG_X86_32),y) |
2 | # Makefile for i386-specific library files.. | 2 | include ${srctree}/arch/i386/lib/Makefile_32 |
3 | # | 3 | else |
4 | 4 | include ${srctree}/arch/x86_64/lib/Makefile_64 | |
5 | 5 | endif | |
6 | lib-y = checksum_32.o delay_32.o usercopy_32.o getuser_32.o putuser_32.o memcpy_32.o strstr_32.o \ | ||
7 | bitops_32.o semaphore_32.o string_32.o | ||
8 | |||
9 | lib-$(CONFIG_X86_USE_3DNOW) += mmx_32.o | ||
10 | |||
11 | obj-$(CONFIG_SMP) += msr-on-cpu.o | ||
diff --git a/arch/i386/lib/Makefile_32 b/arch/i386/lib/Makefile_32 new file mode 100644 index 000000000000..98d1f1e2e2ef --- /dev/null +++ b/arch/i386/lib/Makefile_32 | |||
@@ -0,0 +1,11 @@ | |||
1 | # | ||
2 | # Makefile for i386-specific library files.. | ||
3 | # | ||
4 | |||
5 | |||
6 | lib-y = checksum_32.o delay_32.o usercopy_32.o getuser_32.o putuser_32.o memcpy_32.o strstr_32.o \ | ||
7 | bitops_32.o semaphore_32.o string_32.o | ||
8 | |||
9 | lib-$(CONFIG_X86_USE_3DNOW) += mmx_32.o | ||
10 | |||
11 | obj-$(CONFIG_SMP) += msr-on-cpu.o | ||