diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/widget/Makefile.am | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/widget/Makefile.am')
-rw-r--r-- | kexi/widget/Makefile.am | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/kexi/widget/Makefile.am b/kexi/widget/Makefile.am new file mode 100644 index 00000000..95dc30dd --- /dev/null +++ b/kexi/widget/Makefile.am @@ -0,0 +1,51 @@ +include $(top_srcdir)/kexi/Makefile.global + +lib_LTLIBRARIES = libkexiextendedwidgets.la +libkexiextendedwidgets_la_SOURCES = kexidataawareview.cpp \ + kexibrowser.cpp kexibrowseritem.cpp \ + kexidatatable.cpp kexiquerydesignersqleditor.cpp kexiqueryparameters.cpp \ + kexisectionheader.cpp pixmapcollection.cpp \ + kexiscrollview.cpp kexidbconnectionwidgetbase.ui kexidbconnectionwidget.cpp \ + kexidbconnectionwidgetdetailsbase.ui kexidbdrivercombobox.cpp \ + kexieditor.cpp \ + kexifieldlistview.cpp kexifieldcombobox.cpp kexidatasourcecombobox.cpp \ + kexipropertyeditorview.cpp kexismalltoolbutton.cpp \ + kexicustompropertyfactory.cpp kexicustompropertyfactory_p.cpp \ + kexicharencodingcombobox.cpp \ + kexiprjtypeselectorbase.ui kexiprjtypeselector.cpp + +libkexiextendedwidgets_la_LDFLAGS = $(all_libraries) $(VER_INFO) -Wnounresolved +libkexiextendedwidgets_la_LIBADD = $(LIB_KDEUI) ./utils/libkexiguiutils.la tableview/libkexidatatable.la ../core/libkexicore.la -lktexteditor + +SUBDIRS = utils tableview . relations + +# kde_appsdir Where your application's menu entry (.desktop) should go to. +# kde_icondir Where your icon should go to - better use KDE_ICON. +# kde_sounddir Where your sounds should go to. +# kde_htmldir Where your docs should go to. (contains lang subdirs) +# kde_datadir Where you install application data. (Use a subdir) +# kde_locale Where translation files should go to. (contains lang subdirs) +# kde_cgidir Where cgi-bin executables should go to. +# kde_confdir Where config files should go to (system-wide ones with default values). +# kde_mimedir Where mimetypes .desktop files should go to. +# kde_servicesdir Where services .desktop files should go to. +# kde_servicetypesdir Where servicetypes .desktop files should go to. +# kde_toolbardir Where general toolbar icons should go to (deprecated, use KDE_ICON). +# kde_wallpaperdir Where general wallpapers should go to. +# kde_templatesdir Where templates for the "New" menu (Konqueror/KDesktop) should go to. +# kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. +# kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. +# kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. +# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). +# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). + +# set the include path for X, qt and KDE - all_includes must remain last! +INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/widget/tableview \ + $(LIB_KEXI_KMDI_INCLUDES) \ + -I$(top_srcdir)/kexi/core \ + -I$(top_srcdir)/lib/kofficecore -I$(top_srcdir)/lib $(all_includes) + +noinst_HEADERS = kexibrowseritem.h kexibrowser_p.h + +METASOURCES = AUTO + |