Subversion Repositories shark

Rev

Rev 2 | 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 mpeg library
3
#
4
 
5
# (see sources for copyrights)
6
 
7
ifndef BASE
8
BASE=../..
9
endif
10
include $(BASE)/config/config.mk
11
 
12
LIBRARY       = mp3
13
 
14
OBJS_PATH     = $(BASE)/ports/mpg123
15
 
16
OBJS= decode.o dct64.o common.o decode_2to1.o decode_4to1.o \
17
		tabinit.o layer1.o layer2.o layer3.o
18
 
19
#mpg123.o httpget.o xfermem.o
20
#buffer.o getlopt.o
21
 
22
 
23
#OBJS=	$(patsubst %.c,%.o,$(SRCS))
24
 
25
#C_WARN += -Wno-unused -Wno-uninitialized -Wno-implicit-function-declaration \
26
#	  -Wno-switch -Wno-return-type
27
 
28
#C_DEF  += -DNOCONTROLS
29
C_INC  += -I.
30
 
31
include $(BASE)/config/lib.mk
32