blob: a0ef668d6dc14268b59e479348b9faad38c5965e (
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
|
INCLUDES = $(all_includes)
METASOURCES = AUTO
# Install this plugin in the KDE modules directory
kde_module_LTLIBRARIES = libakregatorkonqplugin.la libakregatorkonqfeedicon.la
libakregatorkonqplugin_la_SOURCES = akregatorplugin.cpp pluginbase.cpp
libakregatorkonqplugin_la_LIBADD = -lkonq $(LIB_TDEHTML)
libakregatorkonqplugin_la_LDFLAGS = -module $(KDE_PLUGIN) -avoid-version -no-undefined $(all_libraries)
libakregatorkonqfeedicon_la_SOURCES = konqfeedicon.cpp feeddetector.cpp pluginbase.cpp
libakregatorkonqfeedicon_la_LIBADD = -lkonq $(LIB_TDEHTML)
libakregatorkonqfeedicon_la_LDFLAGS = -module $(KDE_PLUGIN) -avoid-version -no-undefined $(all_libraries)
konqplugindir = $(kde_servicesdir)
konqplugin_DATA = akregator_konqplugin.desktop
konqfeedicondir = $(kde_datadir)/tdehtml/kpartplugins
konqfeedicon_DATA = akregator_konqfeedicon.desktop akregator_konqfeedicon.rc
rssicondir = $(kde_datadir)/akregator/pics
rssicon_DATA = rss.png
messages: rc.cpp
$(XGETTEXT) *.cpp *.h -o $(podir)/akregator_konqplugin.pot
|