diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:50 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:50 -0600 |
commit | b363d2579af0a11b77e698aed2e1021c2233b644 (patch) | |
tree | f4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /tderesources/groupware/Makefile.am | |
parent | 61bddfe3a7226b18c68a76124b727c736f431688 (diff) | |
download | tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tderesources/groupware/Makefile.am')
-rw-r--r-- | tderesources/groupware/Makefile.am | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tderesources/groupware/Makefile.am b/tderesources/groupware/Makefile.am new file mode 100644 index 000000000..08c257bac --- /dev/null +++ b/tderesources/groupware/Makefile.am @@ -0,0 +1,42 @@ +INCLUDES = -I$(top_srcdir) $(all_includes) + +lib_LTLIBRARIES = libkcal_groupware.la libkabc_groupware.la + +libkcal_groupware_la_SOURCES = kcal_resourcegroupware.cpp \ + kcal_resourcegroupwareconfig.cpp \ + kcal_groupwareprefsbase.kcfgc +libkcal_groupware_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) \ + -version-info 1:0:0 -no-undefined +libkcal_groupware_la_LIBADD = \ + $(top_builddir)/libkcal/libkcal.la \ + $(top_builddir)/libtdepim/libtdepim.la + +libkabc_groupware_la_SOURCES = kabc_resourcegroupware.cpp \ + kabc_resourcegroupwareconfig.cpp \ + kabc_groupwareprefs.kcfgc +libkabc_groupware_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) \ + -version-info 1:0:0 -no-undefined +libkabc_groupware_la_LIBADD = $(top_builddir)/libkcal/libkcal.la \ + $(top_builddir)/libtdepim/libtdepim.la \ + -lkabc + +kde_module_LTLIBRARIES = kcal_groupware.la kabc_groupware.la + +kcal_groupware_la_SOURCES = kcal_resourcegroupware_plugin.cpp +kcal_groupware_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) +kcal_groupware_la_LIBADD = libkcal_groupware.la + +kabc_groupware_la_SOURCES = kabc_resourcegroupware_plugin.cpp +kabc_groupware_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) +kabc_groupware_la_LIBADD = libkabc_groupware.la + +kcal_servicedir = $(kde_servicesdir)/tderesources/kcal +kcal_service_DATA = kcal_groupware.desktop + +kabc_servicedir = $(kde_servicesdir)/tderesources/kabc +kabc_service_DATA = kabc_groupware.desktop + +METASOURCES = AUTO + +messages: rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/kres_groupware.pot |