diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
commit | dadc34655c3ab961b0b0b94a10eaaba710f0b5e8 (patch) | |
tree | 99e72842fe687baea16376a147619b6048d7e441 /kmymoney2/plugins/ofximport/Makefile.am | |
download | kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.tar.gz kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.zip |
Added kmymoney
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239792 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmymoney2/plugins/ofximport/Makefile.am')
-rw-r--r-- | kmymoney2/plugins/ofximport/Makefile.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/kmymoney2/plugins/ofximport/Makefile.am b/kmymoney2/plugins/ofximport/Makefile.am new file mode 100644 index 0000000..d4729f4 --- /dev/null +++ b/kmymoney2/plugins/ofximport/Makefile.am @@ -0,0 +1,33 @@ +KDE_OPTIONS = noautodist + +INCLUDES = $(all_includes) -I.. -I. -I${srcdir}/dialogs -Idialogs +METASOURCES = AUTO + +# Install this plugin in the KDE modules directory +kde_module_LTLIBRARIES = kmm_ofximport.la + +# Srcs for the plugin +kmm_ofximport_la_SOURCES = ofximporterplugin.cpp ofxpartner.cpp +#nodeparser.cpp + +# Libs needed by the plugin +kmm_ofximport_la_LIBADD = @OFX_LIBS@ dialogs/libdialogs.la ../libkmm_plugin.la ../libkmm_plugin.la $(top_builddir)/kmymoney2/mymoney/libkmm_mymoney.la + +# LD flags for the plugin +# -module says: this is a module, i.e. something you're going to dlopen +# so e.g. it has no version number like a normal shared lib would have. +kmm_ofximport_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) $(LIB_KHTML) $(LIB_KDECORE) $(LIB_KDEUI) $(LIB_QT) -L../.libs + +# rc file containing the GUI for the plugin +pluginsdir = $(kde_datadir)/kmm_ofximport +plugins_DATA = kmm_ofximport.rc + +# Install the desktop file needed to detect the plugin +kde_services_DATA = kmm_ofximport.desktop + +noinst_HEADERS = ofximporterplugin.h ofxpartner.h +# nodeparser.h + +EXTRA_DIST = kmm_ofximport.desktop kmm_ofximport.rc + +SUBDIRS = dialogs |