blob: 5721a3a9e2bea6c68c732a7e549274ef9896839d (
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
|
# Include paths. INCLUDES is maintained by KDevelop, AM_CPPFLAGS is the preferred variable,
# so keep them synchronized.
INCLUDES = \
-I$(top_srcdir)/kttsd/libkttsd -I$(top_builddir)/kttsd/libkttsd \
$(KTTS_KSPEECH_INCLUDE) \
$(all_includes)
# Let automoc handle all of the metsource files (moc).
METASOURCES = AUTO
#########################################################################
# KPART SECTION
#########################################################################
# This is the kpart that gets installed. It's name is used for all
# of the other Makefile.am variables.
kde_module_LTLIBRARIES = libkttsjobmgrpart.la
kspeech_DIR = $(KTTS_KSPEECH_DIR)
kspeechsink_DIR = $(KTTS_KSPEECH_DIR)
# The source, library search path, and link libraries.
libkttsjobmgrpart_la_SOURCES = \
kspeech.stub kspeechsink.skel \
kttsjobmgr.cpp
libkttsjobmgrpart_la_LDFLAGS = -avoid-version -module -no-undefined $(all_libraries) $(KDE_PLUGIN)
libkttsjobmgrpart_la_LIBADD = \
$(top_builddir)/kttsd/libkttsd/libkttsd.la \
$(LIB_TDEFILE) $(LIBVM) $(LIB_TDEPARTS) -lDCOP
# Header files not to be installed.
noinst_HEADERS =
# Install desktop file to standard services directory.
kde_services_DATA = kttsjobmgr.desktop
# This rc file should never have been installed.
# createGUI not supported within a TDECModule.
install-data-local:
rm -f $(DESTDIR)$(kde_datadir)/kttsjobmgr/kttsjobmgrui.rc
|