Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | pj | 1 | # |
2 | # The unistd 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/unistd |
||
13 | |||
14 | SRCS= fpathcon.c \ |
||
15 | pathconf.c \ |
||
16 | sysconf.c |
||
17 | |||
18 | OBJS= $(patsubst %.c,%.o,$(SRCS)) |
||
19 | |||
20 | include $(BASE)/config/sublib.mk |