Rev 3 | Go to most recent revision | 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 | OSLIB=$(BASE)/oslib |
9 | |||
2 | pj | 10 | include $(BASE)/config/config.mk |
11 | |||
12 | LIBRARY = fs |
||
13 | |||
14 | OBJS_PATH = $(BASE)/fs/msdos |
||
15 | |||
16 | OBJS= msdos_i.o \ |
||
17 | msdos_f.o \ |
||
18 | msdos_s.o \ |
||
19 | msdos_d.o |
||
20 | |||
21 | #C_DEF += -D_PARANOIA |
||
22 | C_DEF += -D_PARANOIA -DNDEBUG |
||
23 | |||
24 | C_MAC += -imacros $(BASE)/include/fs/fsconf.h |
||
25 | C_INC += -I.. |
||
26 | |||
27 | include $(BASE)/config/sublib.mk |