blob: 811e3d9a37770a96d44c4891e37cd0cb4e1afcc1 (
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
|
# mpegplay-yaf - Makefile.am
INCLUDES = -I../../include $(all_includes)
EXTRA_DIST = stresstest
bin_PROGRAMS = yaf-mpgplay
yaf_mpgplay_SOURCES = mpg_control.cpp
noinst_HEADERS =
yaf_mpgplay_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT)
yaf_mpgplay_LDADD = ../yafcore/libyafcore.la \
../yafxplayer/libyafxplayer.la \
../../../lib/libmpeg.la \
$(THIS_LIB_LIBS)
|