Details | 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 |
||
8 | include $(BASE)/config/config.mk |
||
9 | |||
10 | LIBRARY = c |
||
11 | |||
12 | OBJS_PATH = $(BASE)/libc/stdlib |
||
13 | |||
14 | SRCS= strcasecmp.c |
||
15 | |||
16 | OBJS= $(patsubst %.c,%.o,$(SRCS)) |
||
17 | |||
18 | C_DEF += -D_THREAD_SAFE -Di386 |
||
19 | |||
20 | include $(BASE)/config/sublib.mk |