blob: f0a0196565457fdf542920bcfca7d2c045111b4a (
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
|
# splay-yaf - Makefile.am
INCLUDES = -I../../include -I../../include/vorbis/include $(all_includes)
EXTRA_DIST =
bin_PROGRAMS = yaf-vorbis
yaf_vorbis_SOURCES = vorbis_control.cpp
noinst_HEADERS =
yaf_vorbis_LDFLAGS = $(all_libraries) $(KDE_RPATH)
yaf_vorbis_LDADD = \
../yafcore/libyafcore.la \
../yafxplayer/libyafxplayer.la \
../../../lib/libmpeg.la \
$(THIS_LIB_LIBS)
|