Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
107 | pj | 1 | # The Frame Buffer Device |
2 | |||
3 | ifndef BASE |
||
4 | BASE=../.. |
||
5 | endif |
||
6 | |||
7 | include $(BASE)/config/config.mk |
||
8 | |||
9 | LIBRARY = zlib |
||
10 | |||
11 | OBJS_PATH = $(BASE)/ports/zlib |
||
12 | |||
13 | ZLIB = adler32.o compress.o crc32.o deflate.o gzio.o\ |
||
14 | infblock.o infcodes.o inffast.o inflate.o inftrees.o\ |
||
15 | infutil.o trees.o uncompr.o zutil.o |
||
16 | |||
17 | OBJS = $(ZLIB) |
||
18 | |||
19 | C_OPT += -I../../../drivers/linuxc24/include -I./include -I. -I.. |
||
20 | |||
21 | include $(BASE)/config/lib.mk |
||
22 |