Rev 3 | Details | Compare with Previous | 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 |
||
45 | pj | 8 | OSLIB=$(BASE)/oslib |
9 | |||
2 | pj | 10 | include $(BASE)/config/config.mk |
11 | |||
12 | LIBRARY = c |
||
13 | |||
14 | OBJS_PATH = $(BASE)/libc/unistd |
||
15 | |||
16 | SRCS= fpathcon.c \ |
||
17 | pathconf.c \ |
||
18 | sysconf.c |
||
19 | |||
20 | OBJS= $(patsubst %.c,%.o,$(SRCS)) |
||
21 | |||
22 | include $(BASE)/config/sublib.mk |