INCLUDES = -I$(top_srcdir)/interfaces $(all_includes) METASOURCES = AUTO # Install this plugin in the KDE modules directory kde_module_LTLIBRARIES = plugindemo_capitalize.la # Srcs for the plugin plugindemo_capitalize_la_SOURCES = capitalizeplugin.cpp # Libs needed by the plugin plugindemo_capitalize_la_LIBADD = $(LIB_KPARTS) $(top_builddir)/interfaces/plugindemo/libplugindemointerfaces.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. plugindemo_capitalize_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) # rc file containing the GUI for the plugin pluginsdir = $(kde_datadir)/plugindemo_capitalize plugins_DATA = plugindemo_capitalizeui.rc # Install the desktop file needed to detect the plugin kde_services_DATA = plugindemo_capitalize.desktop # i18n translation messages messages: rc.cpp $(XGETTEXT) *.cpp *.h -o $(podir)/plugindemo_capitalize.pot