blob: 0c8a38fc1133c7fdc85b9dc204429f54c9e98c30 (
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
|
SUBDIRS = icons libgroupwise ui
AM_CPPFLAGS = $(KOPETE_INCLUDES) $(all_includes)
METASOURCES = AUTO
noinst_HEADERS = gwprotocol.h gwcontact.h gwaccount.h gwbytestream.h \
gwconnector.h gwmessagemanager.h gwcontactlist.h
kde_module_LTLIBRARIES = kopete_groupwise.la
kopete_groupwise_la_SOURCES = gwprotocol.cpp gwcontact.cpp gwaccount.cpp \
gwbytestream.cpp gwconnector.cpp gwmessagemanager.cpp gwcontactlist.cpp
kopete_groupwise_la_LDFLAGS = -module -no-undefined $(KDE_PLUGIN) \
$(all_libraries)
kopete_groupwise_la_LIBADD = ui/libkopetegroupwiseui.la \
libgroupwise/libgroupwise.la ../../libkopete/libkopete.la $(LIB_KIO)
service_DATA = kopete_groupwise.desktop
servicedir = $(kde_servicesdir)
INCLUDES = -I$(top_srcdir)/kopete/protocols/groupwise/libgroupwise/tasks \
-I$(top_srcdir)/kopete/protocols/groupwise/libgroupwise/qca/src -I$(top_srcdir)/kopete/protocols/groupwise/libgroupwise \
-I$(top_srcdir)/kopete/protocols/groupwise/ui -I$(top_builddir)/kopete/protocols/groupwise/ui
mydatadir = $(kde_datadir)/kopete_groupwise
mydata_DATA = gwchatui.rc
|