Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
267 giacomo 1
#
2
# The stdlib sub-library
3
#
4
 
5
ifndef BASE
6
BASE=../..
7
endif
8
 
9
include $(BASE)/config/config.mk
10
 
11
LIBRARY       = c
12
 
13
OBJS_PATH     = $(BASE)/libc/stdlib
14
 
15
SRCS=  getopt.c getopt1.c
16
 
17
OBJS=	$(patsubst %.c,%.o,$(SRCS))
18
 
19
C_DEF += -D_THREAD_SAFE -Di386
20
 
21
include $(BASE)/config/sublib.mk