Rev 43 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | pj | 1 | # |
2 | # The mpeg library |
||
3 | # |
||
4 | |||
5 | # (see sources for copyrights) |
||
6 | |||
7 | ifndef BASE |
||
8 | BASE=../.. |
||
9 | endif |
||
64 | pj | 10 | |
2 | pj | 11 | include $(BASE)/config/config.mk |
12 | |||
13 | LIBRARY = mp3 |
||
14 | |||
15 | OBJS_PATH = $(BASE)/ports/mpg123 |
||
16 | |||
17 | OBJS= decode.o dct64.o common.o decode_2to1.o decode_4to1.o \ |
||
18 | tabinit.o layer1.o layer2.o layer3.o |
||
19 | |||
20 | #mpg123.o httpget.o xfermem.o |
||
21 | #buffer.o getlopt.o |
||
22 | |||
23 | |||
24 | #OBJS= $(patsubst %.c,%.o,$(SRCS)) |
||
25 | |||
26 | #C_WARN += -Wno-unused -Wno-uninitialized -Wno-implicit-function-declaration \ |
||
27 | # -Wno-switch -Wno-return-type |
||
28 | |||
29 | #C_DEF += -DNOCONTROLS |
||
30 | C_INC += -I. |
||
31 | |||
32 | include $(BASE)/config/lib.mk |
||
33 |