blob: 4a69fedaaa265ba6f436a51a044a9a6fad9fb074 (
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
41
|
include $(top_srcdir)/kexi/Makefile.global
lib_LTLIBRARIES = libkexicore.la
libkexicore_la_SOURCES = kexi_global.cpp kexi.cpp kexiaboutdata.cpp \
keximainwindow.cpp \
kexidbconnectionset.cpp kexiprojectset.cpp \
kexiactionproxy.cpp kexiactioncategories.cpp kexisharedactionhost.cpp \
kexiproject.cpp kexidialogbase.cpp kexiviewbase.cpp \
kexipartmanager.cpp kexipartinfo.cpp kexipartitem.cpp kexipart.cpp \
kexiprojectdata.cpp kexiinternalpart.cpp \
kexidragobjects.cpp \
kexiuseraction.cpp kexiuseractionmethod.cpp \
kexistartupdata.cpp kexiguimsghandler.cpp kexitextmsghandler.cpp \
kexidataiteminterface.cpp kexievents.cpp \
kexidbshortcutfile.cpp \
kexiblobbuffer.cpp kexistaticpart.cpp \
kexitabledesignerinterface.cpp kexisearchandreplaceiface.cpp \
kexitemplateloader.cpp
#kexipartdatasource.cpp
libkexicore_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) $(VER_INFO) -Wnounresolved -no-undefined
SUBDIRS = .
libkexicore_la_LIBADD = $(LIB_KEXI_KMDI) \
$(top_builddir)/kexi/kexiutils/libkexiutils.la \
$(top_builddir)/kexi/kexidb/libkexidb.la \
$(top_builddir)/kexi/kexidb/parser/libkexidbparser.la \
$(top_builddir)/lib/koproperty/libkoproperty.la
INCLUDES = $(LIB_KEXI_KMDI_INCLUDES) \
-I$(top_srcdir)/lib/kofficecore \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/kexi \
$(all_includes)
noinst_HEADERS = kexiactionproxy_p.h kexicontexthelp_p.h kexisharedactionhost_p.h \
kexipartinfo_p.h
METASOURCES = AUTO
|