blob: bc7b0fb7e2a8c2f08922bce7ca6f42acf1334602 (
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
|
## Makefile.am for DBSE
# this has all of the subdirectories that make will recurse into. if
# there are none, comment this out
#SUBDIRS =
# this is the program that gets installed. it's name is used for all
# of the other Makefile.am variables
kde_module_LTLIBRARIES = kbabeldict_dbsearchengine.la
# set the include path for X, qt and KDE
INCLUDES = -I$(srcdir)/../.. -I../../../common -I$(srcdir)/../../../common $(all_includes) $(DBIV_INCLUDES)
# which sources should be compiled for kbabel
kbabeldict_dbsearchengine_la_SOURCES = KDBSearchEngine.cpp preferenceswidget.cpp \
dbse_factory.cpp dbseprefwidget.ui database.cpp dbscan.cpp
#database.cpp dbscan.cpp
kbabeldict_dbsearchengine_la_LIBADD = ../../libkbabeldictplugin.la ../../../common/libkbabelcommon.la $(LIB_TDEUI) $(LIB_TDEIO) $(LIB_DBIV)
kbabeldict_dbsearchengine_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined \
$(DBIV_LDFLAGS)
# these are the headers for your project
noinst_HEADERS = KDBSearchEngine.h preferenceswidget.h dbse_factory.h \
database.h dbscan.h
# let automoc handle all of the meta source files (moc)
METASOURCES = AUTO
kde_services_DATA = dbsearchengine.desktop
EXTRA_DIST = $(kde_services_DATA)
|