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