diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/ia64/lib/Makefile |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/ia64/lib/Makefile')
-rw-r--r-- | arch/ia64/lib/Makefile | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/arch/ia64/lib/Makefile b/arch/ia64/lib/Makefile new file mode 100644 index 000000000000..1902c3c2ef92 --- /dev/null +++ b/arch/ia64/lib/Makefile | |||
@@ -0,0 +1,52 @@ | |||
1 | # | ||
2 | # Makefile for ia64-specific library routines.. | ||
3 | # | ||
4 | |||
5 | obj-y := io.o | ||
6 | |||
7 | lib-y := __divsi3.o __udivsi3.o __modsi3.o __umodsi3.o \ | ||
8 | __divdi3.o __udivdi3.o __moddi3.o __umoddi3.o \ | ||
9 | bitop.o checksum.o clear_page.o csum_partial_copy.o copy_page.o \ | ||
10 | clear_user.o strncpy_from_user.o strlen_user.o strnlen_user.o \ | ||
11 | flush.o ip_fast_csum.o do_csum.o \ | ||
12 | memset.o strlen.o swiotlb.o | ||
13 | |||
14 | lib-$(CONFIG_ITANIUM) += copy_page.o copy_user.o memcpy.o | ||
15 | lib-$(CONFIG_MCKINLEY) += copy_page_mck.o memcpy_mck.o | ||
16 | lib-$(CONFIG_PERFMON) += carta_random.o | ||
17 | lib-$(CONFIG_MD_RAID5) += xor.o | ||
18 | lib-$(CONFIG_HAVE_DEC_LOCK) += dec_and_lock.o | ||
19 | |||
20 | AFLAGS___divdi3.o = | ||
21 | AFLAGS___udivdi3.o = -DUNSIGNED | ||
22 | AFLAGS___moddi3.o = -DMODULO | ||
23 | AFLAGS___umoddi3.o = -DUNSIGNED -DMODULO | ||
24 | |||
25 | AFLAGS___divsi3.o = | ||
26 | AFLAGS___udivsi3.o = -DUNSIGNED | ||
27 | AFLAGS___modsi3.o = -DMODULO | ||
28 | AFLAGS___umodsi3.o = -DUNSIGNED -DMODULO | ||
29 | |||
30 | $(obj)/__divdi3.o: $(src)/idiv64.S FORCE | ||
31 | $(call if_changed_dep,as_o_S) | ||
32 | |||
33 | $(obj)/__udivdi3.o: $(src)/idiv64.S FORCE | ||
34 | $(call if_changed_dep,as_o_S) | ||
35 | |||
36 | $(obj)/__moddi3.o: $(src)/idiv64.S FORCE | ||
37 | $(call if_changed_dep,as_o_S) | ||
38 | |||
39 | $(obj)/__umoddi3.o: $(src)/idiv64.S FORCE | ||
40 | $(call if_changed_dep,as_o_S) | ||
41 | |||
42 | $(obj)/__divsi3.o: $(src)/idiv32.S FORCE | ||
43 | $(call if_changed_dep,as_o_S) | ||
44 | |||
45 | $(obj)/__udivsi3.o: $(src)/idiv32.S FORCE | ||
46 | $(call if_changed_dep,as_o_S) | ||
47 | |||
48 | $(obj)/__modsi3.o: $(src)/idiv32.S FORCE | ||
49 | $(call if_changed_dep,as_o_S) | ||
50 | |||
51 | $(obj)/__umodsi3.o: $(src)/idiv32.S FORCE | ||
52 | $(call if_changed_dep,as_o_S) | ||