blob: 7ad1649549958bb89862dc1948c15e17407cca7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
include $(top_srcdir)/kexi/Makefile.global
kde_module_LTLIBRARIES = kexihandler_csv_importexport.la
kexihandler_csv_importexport_la_SOURCES = kexicsv_importexportpart.cpp kexicsvimportdialog.cpp \
kexicsvimportoptionsdlg.cpp kexicsvwidgets.cpp kexicsvexport.cpp kexicsvexportwizard.cpp
kexihandler_csv_importexport_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) $(VER_INFO) -module
kexihandler_csv_importexport_la_LIBADD = ../../../core/libkexicore.la \
../../../migration/libkeximigrate.la
INCLUDES= -I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi \
-I$(top_srcdir)/kexi/widget -I$(top_srcdir)/kexi/migration \
-I$(top_srcdir)/kexi/kexiDB $(all_includes)
METASOURCES = AUTO
servicesdir=$(kde_servicesdir)/kexi
services_DATA=kexicsv_importexporthandler.desktop
include ../../Makefile.common
|