Rev 45 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | pj | 1 | # |
2 | # The MSDOS (FAT16) sub-library |
||
3 | # |
||
4 | |||
5 | ifndef BASE |
||
6 | BASE=../.. |
||
7 | endif |
||
45 | pj | 8 | |
2 | pj | 9 | include $(BASE)/config/config.mk |
10 | |||
11 | LIBRARY = fs |
||
12 | |||
13 | OBJS_PATH = $(BASE)/fs/msdos |
||
14 | |||
15 | OBJS= msdos_i.o \ |
||
16 | msdos_f.o \ |
||
17 | msdos_s.o \ |
||
18 | msdos_d.o |
||
19 | |||
20 | #C_DEF += -D_PARANOIA |
||
21 | C_DEF += -D_PARANOIA -DNDEBUG |
||
22 | |||
23 | C_MAC += -imacros $(BASE)/include/fs/fsconf.h |
||
24 | C_INC += -I.. |
||
25 | |||
26 | include $(BASE)/config/sublib.mk |