1 | AUTOMAKE_OPTIONS = subdir-objects
|
---|
2 | AM_CFLAGS = -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
|
---|
3 |
|
---|
4 | CXXFLAGS = -Wall
|
---|
5 |
|
---|
6 | AM_CPPFLAGS = \
|
---|
7 | -Iinclude \
|
---|
8 | -Iexternal
|
---|
9 |
|
---|
10 | lib_LTLIBRARIES = libeplayer3.la
|
---|
11 | libeplayer3_la_SOURCES = \
|
---|
12 | container/container.c \
|
---|
13 | container/container_ffmpeg.c \
|
---|
14 | manager/manager.c \
|
---|
15 | manager/audio.c \
|
---|
16 | manager/video.c \
|
---|
17 | manager/subtitle.c \
|
---|
18 | output/linuxdvb_sh4.c \
|
---|
19 | output/output_subtitle.c \
|
---|
20 | output/output.c \
|
---|
21 | output/writer/common/pes.c \
|
---|
22 | output/writer/common/misc.c \
|
---|
23 | output/writer/sh4/writer.c \
|
---|
24 | output/writer/sh4/aac.c \
|
---|
25 | output/writer/sh4/ac3.c \
|
---|
26 | output/writer/sh4/divx2.c \
|
---|
27 | output/writer/sh4/dts.c \
|
---|
28 | output/writer/sh4/h263.c \
|
---|
29 | output/writer/sh4/h264.c \
|
---|
30 | output/writer/sh4/mp3.c \
|
---|
31 | output/writer/sh4/mpeg2.c \
|
---|
32 | output/writer/sh4/pcm.c \
|
---|
33 | output/writer/sh4/vc1.c \
|
---|
34 | output/writer/sh4/wma.c \
|
---|
35 | output/writer/sh4/wmv.c \
|
---|
36 | playback/playback.c \
|
---|
37 | external/ffmpeg/src/bitstream.c \
|
---|
38 | external/ffmpeg/src/latmenc.c \
|
---|
39 | external/ffmpeg/src/mpeg4audio.c
|
---|
40 |
|
---|
41 |
|
---|
42 | #SOURCE_FILES+=" output/writer/sh4/divx.c
|
---|
43 | #SOURCE_FILES+=" output/writer/sh4/vorbis.c
|
---|
44 |
|
---|
45 |
|
---|
46 | #libeplayer3_la_LIBADD = -lpthread -lavformat -lavcodec -lavutil -lswresample -lz -lass -lm -lpng
|
---|
47 | libeplayer3_la_LIBADD = -lpthread -lavformat -lavcodec -lavutil -lswresample
|
---|
48 |
|
---|
49 | bin_PROGRAMS = eplayer3
|
---|
50 | eplayer3_SOURCES = main/exteplayer.c
|
---|
51 | #eplayer3_LDADD = -leplayer3 -lpthread -lass -lm -lpng
|
---|
52 | eplayer3_LDADD = -leplayer3 -lpthread
|
---|
53 | eplayer3_DEPENDENCIES = libeplayer3.la
|
---|
54 |
|
---|
55 |
|
---|
56 | #bin_PROGRAMS = exteplayer
|
---|
57 | #exteplayer_SOURCES = main/exteplayer.c
|
---|
58 | #exteplayer_LDADD = -leplayer3 -lpthread -lass -lm -lpng
|
---|
59 | #exteplayer_DEPENDENCIES = libeplayer3.la
|
---|
60 |
|
---|
61 | #meta_SOURCES = tools/meta.c
|
---|
62 | #meta_LDADD = -leplayer3 -lpthread -lavformat -lavcodec -lavutil -lass -lm -lpng
|
---|
63 | #meta_DEPENDENCIES = libeplayer3.la
|
---|
64 |
|
---|