diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2014-03-04 04:14:43 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-03-04 04:14:43 +0100 |
commit | ba41b408739dbfd96cdcd6af860cd103ec7266b8 (patch) | |
tree | 03dc9ab40148363a39f4ac3a4bfabf7cbfb077de /kate/katesort/src/Makefile.am | |
parent | c2d830c421ddeab97bf606d707ef0e22df6d15cb (diff) | |
download | tdeaddons-ba41b408739dbfd96cdcd6af860cd103ec7266b8.tar.gz tdeaddons-ba41b408739dbfd96cdcd6af860cd103ec7266b8.zip |
Initial import of katesort 1.0
Diffstat (limited to 'kate/katesort/src/Makefile.am')
-rw-r--r-- | kate/katesort/src/Makefile.am | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/kate/katesort/src/Makefile.am b/kate/katesort/src/Makefile.am new file mode 100644 index 0000000..b58b34a --- /dev/null +++ b/kate/katesort/src/Makefile.am @@ -0,0 +1,21 @@ +INCLUDES = $(all_includes) +METASOURCES = AUTO + +KDE_ICON = AUTO + +# Install this plugin in the KDE modules directory +kde_module_LTLIBRARIES = libsortplugin.la + +libsortplugin_la_SOURCES = plugin_sort.cpp sortdialog.cpp sortdialoglayout.ui +libsortplugin_la_LIBADD = -lkateinterfaces +libsortplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) + +pluginsdir = $(kde_datadir)/kate/plugins/sort +plugins_DATA = plugin_sort.rc + + +messages: rc.cpp + $(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/katesort.pot +noinst_HEADERS = sortdialog.h sortdialoglayout.h +kde_services_DATA = katesort.desktop |