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 | e9ae80694875f869892f13f4fcaf1170a00dea41 (patch) | |
tree | aa2f8d8a217e2d376224c8d46b7397b68d35de2d /kimagemapeditor/Makefile.am | |
download | tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.tar.gz tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.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/kdewebdev@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kimagemapeditor/Makefile.am')
-rw-r--r-- | kimagemapeditor/Makefile.am | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/kimagemapeditor/Makefile.am b/kimagemapeditor/Makefile.am new file mode 100644 index 00000000..3f2ed486 --- /dev/null +++ b/kimagemapeditor/Makefile.am @@ -0,0 +1,63 @@ +SUBDIRS = pics + +bin_PROGRAMS = kimagemapeditor +kde_module_LTLIBRARIES = libkimagemapeditor.la + +METASOURCES = AUTO + +noinst_LTLIBRARIES = libkimagemapeditorcommon.la + +libkimagemapeditorcommon_la_SOURCES = \ + qextfileinfo.cpp \ + areacreator.cpp \ + kimearea.cpp \ + kimecommands.cpp \ + kimedialogs.cpp \ + kimagemapeditor.cpp \ + drawzone.cpp \ + arealistview.cpp \ + imageslistview.cpp \ + mapslistview.cpp + +libkimagemapeditor_la_SOURCES = \ + dummy.cpp + +kimagemapeditor_SOURCES = \ + main.cpp \ + kimeshell.cpp + + +noinst_HEADERS = \ + qextfileinfo.h \ + areacreator.h \ + kimearea.h \ + kimecommands.h \ + kimedialogs.h \ + kimagemapeditor.h \ + drawzone.h \ + kimeshell.h + + +libkimagemapeditor_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) +libkimagemapeditor_la_LIBADD = libkimagemapeditorcommon.la $(LIB_KFILE) $(LIB_KPARTS) $(LIB_KHTML) + +kimagemapeditor_LDFLAGS = $(all_libraries) $(KDE_RPATH) +kimagemapeditor_LDADD = libkimagemapeditorcommon.la $(LIB_KFILE) $(LIB_KPARTS) $(LIB_KHTML) + +# set the include path for X, qt and KDE +INCLUDES= $(all_includes) + +xdg_apps_DATA = kimagemapeditor.desktop + +rcdir = $(kde_datadir)/kimagemapeditor +rc_DATA = kimagemapeditorui.rc \ + kimagemapeditorpartui.rc + +kde_services_DATA = kimagemapeditorpart.desktop + +messages: rc.cpp + LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name \*.cxx -o -name \*.ecpp -o -name \*.C`; \ + if test -n "$$LIST"; then \ + $(XGETTEXT) $$LIST -o $(podir)/kimagemapeditor.pot; \ + fi + |