Subversion Repositories shark

Rev

Go to most recent revision | Details | 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       = mpeg
13
 
14
OBJS_PATH     = $(BASE)/ports/mpeg
15
 
16
DECODER_SRC   = util.c 		\
17
		video.c		\
18
		parseblock.c 	\
19
		motionvector.c 	\
20
		decoders.c 	\
21
		jrevdct.c 	\
22
		wrapper.c 	\
23
		gdith.c 	\
24
		gdithmni.c 	\
25
		readfile.c 	\
26
		16bit.c
27
 
28
DITHER_SRC    = fs2.c 		\
29
		fs2fast.c 	\
30
		fs4.c		\
31
		hybrid.c 	\
32
		hybriderr.c 	\
33
		2x2.c		\
34
		gray.c 		\
35
		mono.c 		\
36
		ordered.c 	\
37
		ordered2.c 	\
38
		mb_ordered.c
39
 
40
SRCS= $(DECODER_SRC) $(DITHER_SRC)
41
 
42
OBJS=	$(patsubst %.c,%.o,$(SRCS))
43
 
44
C_WARN += -Wno-unused -Wno-uninitialized -Wno-implicit-function-declaration \
45
	  -Wno-switch -Wno-return-type
46
 
47
C_DEF  += -DNOCONTROLS
48
C_INC  += -I.
49
 
50
include $(BASE)/config/lib.mk
51