Subversion Repositories shark

Rev

Rev 45 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
#
2
# The stdlib 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/stdlib
14
 
15
SRCS=  strcasecmp.c
16
 
17
OBJS=	$(patsubst %.c,%.o,$(SRCS))
18
 
19
C_DEF += -D_THREAD_SAFE -Di386
20
 
21
include $(BASE)/config/sublib.mk