source: titan/libeplayer3/Makefile.am.arm @ 41421

Last change on this file since 41421 was 40363, checked in by obi, 7 years ago

cleanup

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