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