blob: 9362e85164cdee2bba69a26d8f3de452720ac3d9 (
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
|
# libplayerplugin - Makefile.am
INCLUDES = $(all_includes)
noinst_LTLIBRARIES = libdecoder.la
kmpgincludedir = $(includedir)/$(THIS_LIB_NAME)/decoder
kmpginclude_HEADERS = decoderPlugin.h command.h \
commandPipe.h nukePlugin.h \
vorbisPlugin.h cddaPlugin.h \
splayPlugin.h mpegPlugin.h \
mpgPlugin.h tplayPlugin.h
libdecoder_la_SOURCES = decoderPlugin.cpp command.cpp \
commandPipe.cpp nukePlugin.cpp \
vorbisPlugin.cpp cddaPlugin.cpp \
splayPlugin.cpp mpegPlugin.cpp \
mpgPlugin.cpp tplayPlugin.cpp
|