blob: 2383a4fbde0e41a9596b293ee1fde476735fc234 (
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
|
INCLUDES = -I$(top_srcdir)/kontact/interfaces \
-I$(top_srcdir)/libkdepim \
-I$(top_srcdir) \
-I$(top_srcdir)/kpilot/lib \
-I$(top_srcdir)/kpilot/kpilot \
$(PISOCK_INCLUDE) $(all_includes)
kde_module_LTLIBRARIES = libkontact_kpilotplugin.la
libkontact_kpilotplugin_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
libkontact_kpilotplugin_la_LIBADD = $(top_builddir)/kontact/interfaces/libkpinterfaces.la \
$(LIB_KPARTS) \
$(top_builddir)/libkdepim/libkdepim.la \
$(top_builddir)/kpilot/lib/libkpilot.la
libkontact_kpilotplugin_la_SOURCES = kpilot_plugin.cpp summarywidget.cpp \
summarywidget.skel pilotDaemonDCOP.stub
pilotDaemonDCOP_DIR = $(top_srcdir)/kpilot/kpilot
pilotDaemonDCOP_DCOPIDLNG = true
METASOURCES = AUTO
servicedir = $(kde_servicesdir)/kontact
service_DATA = kpilotplugin.desktop
|