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 | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /kresources/featureplan/Makefile.am | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.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/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/featureplan/Makefile.am')
-rw-r--r-- | kresources/featureplan/Makefile.am | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/kresources/featureplan/Makefile.am b/kresources/featureplan/Makefile.am new file mode 100644 index 000000000..3d36b3f9f --- /dev/null +++ b/kresources/featureplan/Makefile.am @@ -0,0 +1,61 @@ +INCLUDES = -I$(top_srcdir) $(all_includes) + +lib_LTLIBRARIES = libkcal_resourcefeatureplan.la + +noinst_LTLIBRARIES = libfeatureplancommon.la +libfeatureplancommon_la_SOURCES = kde-features.cpp kde-features_parser.cpp \ + prefs.kcfgc + +libkcal_resourcefeatureplan_la_SOURCES = kcal_resourcefeatureplan.cpp \ + kcal_resourcefeatureplanconfig.cpp +libkcal_resourcefeatureplan_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) \ + -version-info 1:0:0 -no-undefined +libkcal_resourcefeatureplan_la_LIBADD = libfeatureplancommon.la \ + $(top_builddir)/libkcal/libkcal.la \ + $(top_builddir)/libkdepim/libkdepim.la +libkcal_resourcefeatureplan_la_COMPILE_FIRST = kde-features.h prefs.h + + +kde_module_LTLIBRARIES = kcal_resourcefeatureplan.la + +kcal_resourcefeatureplan_la_SOURCES = kcal_resourcefeatureplanplugin.cpp +kcal_resourcefeatureplan_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) +kcal_resourcefeatureplan_la_LIBADD = libkcal_resourcefeatureplan.la +kcal_resourcefeatureplan_la_COMPILE_FIRST = kde-features.h prefs.h + +kcal_servicedir = $(kde_servicesdir)/kresources/kcal +kcal_service_DATA = kcal_resourcefeatureplan.desktop + +check_PROGRAMS = dumpfeaturelist benchmarkfeaturelist + +dumpfeaturelist_LDFLAGS = $(all_libraries) $(KDE_RPATH) +dumpfeaturelist_LDADD = libfeatureplancommon.la $(LIB_KDECORE) +dumpfeaturelist_SOURCES = dumpfeaturelist.cpp +dumpfeaturelist_COMPILE_FIRST = kde-features.h + +benchmarkfeaturelist_LDFLAGS = $(all_libraries) $(KDE_RPATH) +benchmarkfeaturelist_LDADD = libfeatureplancommon.la $(LIB_KDECORE) +benchmarkfeaturelist_SOURCES = benchmarkfeaturelist.cpp +benchmarkfeaturelist_COMPILE_FIRST = kde-features.h + +kde-features.cpp: kde-features.h +kde-features_parser.h kde-features_parser.cpp: kde-features.h + +kde-features.h kde-features.cpp kde-features_parser.h kde-features_parser.cpp: $(srcdir)/kde-features.rng \ + $(top_builddir)/kode/kxml_compiler/kxml_compiler + $(top_builddir)/kode/kxml_compiler/kxml_compiler \ + --custom-parser $(srcdir)/kde-features.rng + +METASOURCES = AUTO +DISTCLEANFILES = kde-features.h kde-features.cpp \ + kde-features_parser.h kde-features_parser.cpp \ + kde-features.h.backup kde-features.cpp.backup \ + kde-features_parser.h.backup kde-features_parser.cpp.backup + +messages: rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/kres_featureplan.pot + +kcal_resourcefeatureplan.lo: kde-features_parser.h +kde-features.lo: kde-features.h +kde-features_parser.lo: kde-features_parser.h kde-features.h + |