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 /knotes/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 'knotes/Makefile.am')
-rw-r--r-- | knotes/Makefile.am | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/knotes/Makefile.am b/knotes/Makefile.am new file mode 100644 index 000000000..73f678a18 --- /dev/null +++ b/knotes/Makefile.am @@ -0,0 +1,59 @@ +INCLUDES = -I$(top_srcdir) $(all_includes) + +SUBDIRS = . pics icons + +bin_PROGRAMS = knotes + +include_HEADERS = KNotesIface.h KNotesAppIface.h +noinst_HEADERS = knotesapp.h knote.h knoteedit.h knotebutton.h \ + knoteconfigdlg.h knoteslegacy.h resourcemanager.h \ + resourcenotes.h resourcelocal.h resourcelocalconfig.h \ + knotesnetrecv.h knotesnetsend.h knotehostdlg.h \ + knotealarmdlg.h knotesalarm.h + +noinst_LTLIBRARIES = libknote.la libknoteseditor.la libknoteslegacy.la libknotesconfig.la \ + libknotesresources.la libknotesnetwork.la libknotesprinting.la + +libknoteslegacy_la_SOURCES = knoteslegacy.cpp +libknotesconfig_la_SOURCES = knoteconfig.kcfgc knotesglobalconfig.kcfgc +libknoteseditor_la_SOURCES = knoteedit.cpp +libknotesprinting_la_SOURCES = knoteprinter.cpp +libknotesnetwork_la_SOURCES = knotesnetrecv.cpp knotesnetsend.cpp +libknotesresources_la_SOURCES = resourcemanager.cpp resourcenotes.cpp \ + resourcelocal.cpp resourcelocalconfig.cpp +libknote_la_SOURCES = knote.cpp knotebutton.cpp knoteconfigdlg.cpp knotehostdlg.cpp \ + knotealarmdlg.cpp knotesalarm.cpp + +knotes_SOURCES = main.cpp knotesapp.cpp KNotesAppIface.skel +knotes_LDADD = libknote.la libknoteseditor.la libknotesnetwork.la libknotesresources.la \ + libknoteslegacy.la libknotesconfig.la libknotesprinting.la $(top_builddir)/libkcal/libkcal.la \ + $(top_builddir)/libkdepim/libkdepim.la $(LIB_KIO) -lkresources -lkdeprint -lkutils +knotes_LDFLAGS = $(all_libraries) $(KDE_RPATH) +knotes_COMPILE_FIRST = knoteconfig.h + +kde_module_LTLIBRARIES = knotes_local.la +knotes_local_la_SOURCES = resourcelocal_plugin.cpp +knotes_local_la_LDFLAGS = $(KDE_LDFLAGS) $(all_libraries) -module $(KDE_PLUGIN) +knotes_local_la_LIBADD = libknotesresources.la libknotesconfig.la libknotesprinting.la \ + $(top_builddir)/libkcal/libkcal.la -lkdeprint + +METASOURCES = AUTO + +xdg_apps_DATA = knotes.desktop +kde_kcfg_DATA = knoteconfig.kcfg knotesglobalconfig.kcfg + +ui_DATA = knotesappui.rc knotesui.rc +uidir = $(kde_datadir)/knotes + +service_DATA = local.desktop +servicedir = $(kde_servicesdir)/kresources/knotes + +manager_DATA = knotes_manager.desktop +managerdir = $(kde_servicesdir)/kresources + +KDE_OPTIONS = nofinal + +messages: rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/knotes.pot + +include $(top_srcdir)/admin/Doxyfile.am |