Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | pj | 1 | # |
2 | # The quad (64bits integer aritmetics) sub-library |
||
3 | # |
||
4 | |||
5 | ifndef BASE |
||
6 | BASE=../.. |
||
7 | endif |
||
8 | include $(BASE)/config/config.mk |
||
9 | |||
10 | LIBRARY = c |
||
11 | |||
12 | OBJS_PATH = $(BASE)/libc/quad |
||
13 | |||
14 | SRCS= adddi3.c \ |
||
15 | anddi3.c \ |
||
16 | ashldi3.c \ |
||
17 | ashrdi3.c \ |
||
18 | cmpdi2.c \ |
||
19 | divdi3.c \ |
||
20 | fixdfdi.c \ |
||
21 | fixsfdi.c \ |
||
22 | fixunsdf.c \ |
||
23 | fixunssf.c \ |
||
24 | floatdid.c \ |
||
25 | floatdis.c \ |
||
26 | floatuns.c \ |
||
27 | iordi3.c \ |
||
28 | lshldi3.c \ |
||
29 | lshrdi3.c \ |
||
30 | moddi3.c \ |
||
31 | muldi3.c \ |
||
32 | negdi2.c \ |
||
33 | notdi2.c \ |
||
34 | qdivrem.c \ |
||
35 | subdi3.c \ |
||
36 | ucmpdi2.c \ |
||
37 | udivdi3.c \ |
||
38 | umoddi3.c \ |
||
39 | xordi3.c |
||
40 | |||
41 | OBJS= $(patsubst %.c,%.o,$(SRCS)) |
||
42 | |||
43 | C_DEF += -D_THREAD_SAFE |
||
44 | |||
45 | include $(BASE)/config/sublib.mk |
||
46 |