diff options
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..b37d0a7 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,19 @@ +INCLUDES = $(all_includes) +METASOURCES = AUTO + +# Install this plugin in the KDE modules directory +kde_module_LTLIBRARIES = kcm_ldap.la + +kcm_ldap_la_SOURCES = ldap.cpp +kcm_ldap_la_LIBADD = -lkio $(LIB_TDEUI) +kcm_ldap_la_LDFLAGS = -avoid-version -module -no-undefined \ + $(all_libraries) + + +xdg_apps_DATA = ldap.desktop + + +messages: rc.cpp + $(EXTRACTRC) `find -name \*.ui -o -name \*.rc` > rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/kcmldap.pot + |