Rev 107 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
99 | giacomo | 1 | # The Frame Buffer Device |
2 | |||
3 | ifndef BASE |
||
4 | BASE=../.. |
||
5 | endif |
||
6 | |||
7 | include $(BASE)/config/config.mk |
||
8 | |||
9 | LIBRARY = png |
||
10 | |||
11 | OBJS_PATH = $(BASE)/ports/png |
||
12 | |||
107 | pj | 13 | PNG = png.o pngerror.o pnggccrd.o pngget.o pngmem.o\ |
99 | giacomo | 14 | pngread.o pngpread.o pngrio.o pngrtran.o pngrutil.o\ |
15 | pngset.o pngtest.o pngtrans.o pngvcrd.o pngwio.o\ |
||
107 | pj | 16 | pngwrite.o pngwtran.o pngwutil.o |
99 | giacomo | 17 | |
18 | OBJS = $(PNG) |
||
19 | |||
706 | giacomo | 20 | C_OPT += -I../../../drivers/linuxc26/include -I./include -I. -I../zlib/include |
99 | giacomo | 21 | |
22 | include $(BASE)/config/lib.mk |
||
23 |