blob: fb386b8db5c6edfd4d7937f27ba7dd6ebd12b711 (
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
38
39
40
|
METASOURCES = AUTO
SUBDIRS = icons libkirc ui
AM_CPPFLAGS = -I$(srcdir)/ui $(KOPETE_INCLUDES) \
-I./ui \
-I$(srcdir)/libkirc \
$(all_includes)
kde_module_LTLIBRARIES = kopete_irc.la
kopete_irc_la_SOURCES = \
ircaccount.cpp \
ircaddcontactpage.cpp \
ircchannelcontact.cpp \
irccontact.cpp \
ircguiclient.cpp \
ircprotocol.cpp \
ircservercontact.cpp \
ircsignalhandler.cpp \
irctransferhandler.cpp \
ircusercontact.cpp \
irccontactmanager.cpp \
kcodecaction.cpp \
ksparser.cpp
kopete_irc_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor $(LIB_TDEHTML)
kopete_irc_la_LIBADD = ../../libkopete/libkopete.la \
./ui/libkopeteircui.la \
./libkirc/libkirc.la \
$(LIB_TDEIO)
service_DATA = kopete_irc.desktop irc.protocol
servicedir = $(kde_servicesdir)
xmldata_DATA = ircnetworks.xml
xmldatadir = $(kde_datadir)/kopete
EXTRA_DIST = $(xmldata_DATA)
mydatadir = $(kde_datadir)/kopete
mydata_DATA = ircchatui.rc
|