blob: 40da3618f9e16a7193bb84028e65df1a214cacef (
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
|
####### General stuff
INCLUDES= -I$(srcdir) $(KOFFICE_INCLUDES) \
-I$(top_srcdir)/kchart \
-I$(top_srcdir)/kchart/kdchart \
-I$(top_srcdir)/interfaces \
-I$(top_srcdir)/filters/libdialogfilter \
-I$(top_srcdir)/filters/kchart/libimageexport \
$(all_includes)
####### Files
kde_module_LTLIBRARIES = libkchartmngexport.la
libkchartmngexport_la_SOURCES = mngexport.cpp
libkchartmngexport_la_LDFLAGS = -module $(KDE_PLUGIN) -no-undefined $(all_libraries) -ltdecore -ltdeui $(LIB_TQT) -lkjs -ltdefx -ltdeio -ltdeparts
libkchartmngexport_la_LIBADD = ../../../kchart/libkchartcommon.la ../libimageexport/libkchartimageexport.la ../../../filters/libdialogfilter/libdialogfilter.la $(KOFFICE_LIBS)
noinst_HEADERS = \
mngexport.h
METASOURCES = AUTO
service_DATA = kchart_mng_export.desktop
servicedir = $(kde_servicesdir)
|