blob: eca2f0f0c92e1e6846a9ec476a3d78b015053898 (
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
|
INCLUDES= -I$(kde_includes)/arts $(all_includes)
KDE_OPTIONS = nofinal
lib_LTLIBRARIES = libnoatunarts.la
libnoatunarts_la_SOURCES = noatunarts.cc fft.c Equalizer_impl.cpp \
FFTScopes.cpp StereoEffectStack_impl.cpp \
StereoVolumeControl_impl.cpp Session_impl.cpp
libnoatunarts_la_COMPILE_FIRST = noatunarts.h
libnoatunarts_la_LDFLAGS = $(all_libraries) -avoid-version -no-undefined
libnoatunarts_la_LIBADD = -lkmedia2_idl -lsoundserver_idl -lartsflow -lmcop -lartsflow_idl
libnoatunarts_la_METASOURCES = AUTO
noatunarts.mcoptype: noatunarts.h
noatunarts.mcopclass: noatunarts.h
noatunarts.cc noatunarts.h: noatunarts.idl
$(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/noatunarts.idl
mcoptypedir = $(libdir)/mcop
mcoptype_DATA = noatunarts.mcoptype noatunarts.mcopclass
mcopclassdir = $(libdir)/mcop/Noatun
mcopclass_DATA = Equalizer.mcopclass FFTScopeStereo.mcopclass StereoEffectStack.mcopclass \
EqualizerSSE.mcopclass RawScope.mcopclass StereoVolumeControl.mcopclass \
FFTScope.mcopclass RawScopeStereo.mcopclass StereoVolumeControlSSE.mcopclass \
Session.mcopclass Listener.mcopclass
noatuninclude_HEADERS= noatunarts.h
noatunincludedir = $(includedir)/noatun
DISTCLEANFILES = noatunarts.cc noatunarts.h noatunarts.mcopclass noatunarts.mcoptype
|