blob: 9da0145ce98b0613c16c1d1a4b7a355c11470d1f (
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
39
40
41
|
# splay-yaf - Makefile.am
INCLUDES = -I../../include $(all_includes)
EXTRA_DIST =
noinst_PROGRAMS = splay mp3framing
splay_SOURCES = splay.cpp
mp3framing_SOURCES = mp3framing.cpp
noinst_HEADERS =
splay_LDFLAGS = $(all_libraries) $(LIB_QT)
splay_LDADD = ../../lib/libmpeg.la \
$(THIS_LIB_LIBS)
mp3framing_LDFLAGS = $(all_libraries) $(LIB_QT)
mp3framing_LDADD = ../../lib/libmpeg.la \
$(THIS_LIB_LIBS)
|