Subversion Repositories shark

Rev

Rev 64 | Go to most recent revision | Details | Compare with Previous | 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
64 pj 8
 
2 pj 9
include $(BASE)/config/config.mk
10
 
11
LIBRARY       = c
12
 
13
OBJS_PATH     = $(BASE)/libc/quad
14
 
15
SRCS=	adddi3.c	\
16
	anddi3.c	\
17
	ashldi3.c	\
18
	ashrdi3.c	\
19
	cmpdi2.c	\
20
	divdi3.c	\
21
	fixdfdi.c	\
22
	fixsfdi.c	\
23
	fixunsdf.c	\
24
	fixunssf.c	\
25
	floatdid.c	\
26
	floatdis.c	\
27
	floatuns.c	\
28
	iordi3.c	\
29
	lshldi3.c	\
30
	lshrdi3.c	\
31
	moddi3.c	\
32
	muldi3.c	\
33
	negdi2.c	\
34
	notdi2.c	\
35
	qdivrem.c	\
36
	subdi3.c	\
37
	ucmpdi2.c	\
38
	udivdi3.c	\
39
	umoddi3.c	\
40
	xordi3.c
41
 
42
OBJS=	$(patsubst %.c,%.o,$(SRCS))
43
 
44
C_DEF += -D_THREAD_SAFE
45
 
46
include $(BASE)/config/sublib.mk
47