You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
# Include paths.
|
|
INCLUDES = $(all_includes)
|
|
|
|
# Let automoc handle all of the metsource files (moc).
|
|
METASOURCES = AUTO
|
|
|
|
#########################################################################
|
|
# LIBRARY SECTION
|
|
#########################################################################
|
|
# This is the library that gets installed. It's name is used for all
|
|
# of the other Makefile.am variables.
|
|
lib_LTLIBRARIES = libkttsd.la
|
|
|
|
# The source, library search path, and link libraries.
|
|
libkttsd_la_SOURCES = \
|
|
pluginproc.cpp \
|
|
pluginconf.cpp \
|
|
testplayer.cpp \
|
|
stretcher.cpp \
|
|
talkercode.cpp \
|
|
filterproc.cpp \
|
|
filterconf.cpp \
|
|
utils.cpp \
|
|
selecttalkerdlg.cpp \
|
|
selecttalkerwidget.ui \
|
|
notify.cpp
|
|
|
|
libkttsd_la_LDFLAGS = -version-info 1:0:0 $(all_libraries) -no-undefined
|
|
libkttsd_la_LIBADD = $(LIB_KIO)
|
|
|
|
# Header files that should not be installed.
|
|
noinst_HEADERS = \
|
|
pluginproc.h \
|
|
pluginconf.h \
|
|
player.h \
|
|
testplayer.h \
|
|
stretcher.h \
|
|
talkercode.h \
|
|
utils.h \
|
|
kdeexportfix.h \
|
|
selecttalkerdlg.h
|
|
|
|
# This library is installed as a service.
|
|
servicetypes_DATA = kttsd_synthplugin.desktop
|
|
servicetypesdir = $(kde_servicetypesdir)
|