diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bd9e6617827818fd043452c08c606f07b78014a0 (patch) | |
tree | 425bb4c3168f9c02f10150f235d2cb998dcc6108 /kapptemplate/kpartplugin/plugin-Makefile.am | |
download | tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.tar.gz tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kapptemplate/kpartplugin/plugin-Makefile.am')
-rw-r--r-- | kapptemplate/kpartplugin/plugin-Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/kapptemplate/kpartplugin/plugin-Makefile.am b/kapptemplate/kpartplugin/plugin-Makefile.am new file mode 100644 index 00000000..cdb7d510 --- /dev/null +++ b/kapptemplate/kpartplugin/plugin-Makefile.am @@ -0,0 +1,20 @@ +echo "Creating $LOCATION_ROOT/$APP_NAME_LC/Makefile.am..."; +cat << EOF > $LOCATION_ROOT/$APP_NAME_LC/Makefile.am +INCLUDES = \$(all_includes) +METASOURCES = AUTO + +KDE_ICON = ${APP_NAME_LC} + +# Install this plugin in the KDE modules directory +kde_module_LTLIBRARIES = lib${APP_NAME_LC}plugin.la + +# This is all standard. Remove the LIB_KHTML reference if you are not +# using the KHTML Part +lib${APP_NAME_LC}plugin_la_SOURCES = plugin_${APP_NAME_LC}.cpp +lib${APP_NAME_LC}plugin_la_LIBADD = \$(LIB_KPARTS) \$(LIB_KHTML) +lib${APP_NAME_LC}plugin_la_LDFLAGS = -module \$(KDE_PLUGIN) \$(all_libraries) + +# Install the .rc file in the Part's directory (in this case, the part +# is KHTMLPart) +pluginsdir = \$(kde_datadir)/khtml/kpartplugins +plugins_DATA = plugin_${APP_NAME_LC}.rc |