blob: 3fa3986cee5c63ebf618dc641be9fddfe0fb6ef8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
INCLUDES = -I$(top_srcdir)/kabc -I$(top_builddir)/kabc $(all_includes)
# these are the headers for your project
noinst_HEADERS = resourcesql.h resourcesqlconfig.h
kde_module_LTLIBRARIES = kabc_sql.la
kabc_sql_la_SOURCES = resourcesql.cpp resourcesqlconfig.cpp
kabc_sql_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
kabc_sql_la_LIBADD = ../../libkabc.la ../../../tdeui/libtdeui.la
METASOURCES = AUTO
messages: rc.cpp
$(XGETTEXT) *.cpp -o $(podir)/kabc_sql.pot
linkdir = $(kde_datadir)/tderesources/contact
link_DATA = sql.desktop
EXTRA_DIST = $(link_DATA)
|