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 | c90c389a8a8d9d8661e9772ec4144c5cf2039f23 (patch) | |
tree | 6d8391395bce9eaea4ad78958617edb20c6a7573 /ktuberling/Makefile.am | |
download | tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.tar.gz tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.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/kdegames@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktuberling/Makefile.am')
-rw-r--r-- | ktuberling/Makefile.am | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/ktuberling/Makefile.am b/ktuberling/Makefile.am new file mode 100644 index 00000000..55ed363e --- /dev/null +++ b/ktuberling/Makefile.am @@ -0,0 +1,38 @@ +# this 10 paths are KDE specific. Use them: +# kde_htmldir Where your docs should go to. (contains lang subdirs) +# kde_appsdir Where your application file (.desktop) should go to. +# kde_icondir Where your icon should go to. +# kde_sounddir Where system sounds should go to. +# kde_datadir Where you install application data. (Use a subdir) +# kde_locale Where translation files should go to.(contains lang subdirs) +# kde_cgidir Where cgi-bin executables should go to. +# kde_confdir Where config files should go to. +# kde_mimedir Where mimetypes should go to. +# kde_toolbardir Where general toolbar icons should go to. +# kde_wallpaperdir Where general wallpapers should go to. + +INCLUDES= -I$(top_srcdir)/libkdegames $(all_includes) +SUBDIRS = . museum sounds pics + +bin_PROGRAMS = ktuberling + +ktuberling_SOURCES = action.cpp main.cpp toplevel.cpp playground.cpp todraw.cpp soundfactory.cpp + +ktuberling_METASOURCES = AUTO +ktuberling_LDFLAGS = $(all_libraries) $(KDE_RPATH) +ktuberling_LDADD = $(LIB_KDEGAMES) $(LIB_KFILE) -lkdeprint +ktuberling_DEPENDENCIES = $(LIB_KDEGAMES_DEP) + +KDE_ICON = ktuberling + +xdg_apps_DATA = ktuberling.desktop + +mimetypeapplicationdata_DATA = x-tuberling.desktop +mimetypeapplicationdatadir = $(kde_mimedir)/application + +appsrc_DATA = ktuberlingui.rc +appsrcdir = $(kde_datadir)/ktuberling + +messages: rc.cpp + $(XGETTEXT) rc.cpp $(ktuberling_SOURCES) pics/layout.i18n -o $(podir)/ktuberling.pot + |