blob: 3c6d115ef9ad759bc0d7fe0f897ac46daf23c950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
INCLUDES= $(all_includes)
# player - Makefile.am
SUBDIRS = frame util input output decoder \
splay oggvorbis mpegplay mpgplayer tplay yuv
MMXFILES =
EXTRA_DIST = README
THIS_EXTRALIBS = mpgplayer/libmpgplayer.la \
mpegplay/libmpegplay.la \
splay/libsplay.la \
oggvorbis/liboggvorbisbase.la \
tplay/libtplay.la \
decoder/libdecoder.la \
output/liboutput.la \
input/libinput.la \
util/libutil.la \
frame/libframe.la \
yuv/libyuvPlugin.la
lib_LTLIBRARIES = libmpeg.la
libmpeg_la_SOURCES = dummy.cpp
libmpeg_la_LDFLAGS = $(all_libraries) \
-release $(THIS_LIB_VERSION)
libmpeg_la_LIBADD = $(THIS_EXTRALIBS) $(MMXFILES) \
$(THIS_LIB_LIBS)
|