blob: e161fac3d572e2b2b9f26e53b93c9f7cdfb51a44 (
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
35
36
37
|
METASOURCES = AUTO
SUBDIRS = ui icons
AM_CPPFLAGS = $(KOPETE_INCLUDES) \
-I$(srcdir)/ui \
-I./ui \
$(all_includes) \
$(MEANWHILE_CFLAGS)
noinst_HEADERS = \
meanwhileprotocol.h \
meanwhileaddcontactpage.h \
meanwhileeditaccountwidget.h \
meanwhileaccount.h \
meanwhilecontact.h \
meanwhilesession.h \
meanwhileplugin.h
kde_module_LTLIBRARIES = kopete_meanwhile.la
kopete_meanwhile_la_SOURCES = \
meanwhileprotocol.cpp \
meanwhileaddcontactpage.cpp \
meanwhileeditaccountwidget.cpp \
meanwhileaccount.cpp \
meanwhilecontact.cpp \
meanwhilesession.cpp \
meanwhileplugin.cpp
kopete_meanwhile_la_LDFLAGS = -no-undefined -module \
$(KDE_PLUGIN) $(all_libraries)
kopete_meanwhile_la_LIBADD = $(top_builddir)/kopete/libkopete/libkopete.la \
ui/libkopetemeanwhileui.la $(MEANWHILE_LIBS)
service_DATA = kopete_meanwhile.desktop
servicedir= $(kde_servicesdir)
|