summaryrefslogtreecommitdiffstats
path: root/ktux/Makefile.am
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitae2a03c2941bf92573f89b88ef73f8aa842bea0a (patch)
tree3566563f3fb6ac3cb3496669d8f233062d3091bc /ktux/Makefile.am
downloadtdetoys-ae2a03c2941bf92573f89b88ef73f8aa842bea0a.tar.gz
tdetoys-ae2a03c2941bf92573f89b88ef73f8aa842bea0a.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/kdetoys@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktux/Makefile.am')
-rw-r--r--ktux/Makefile.am38
1 files changed, 38 insertions, 0 deletions
diff --git a/ktux/Makefile.am b/ktux/Makefile.am
new file mode 100644
index 0000000..8a32552
--- /dev/null
+++ b/ktux/Makefile.am
@@ -0,0 +1,38 @@
+## Makefile.am for ktux
+
+# this has all of the subdirectories that make will recurse into. if
+# there are none, comment this out
+SUBDIRS = sprites
+
+# this is the program that gets installed. it's name is used for all
+# of the other Makefile.am variables
+bin_PROGRAMS = ktux
+
+# set the include path for X, qt and KDE
+INCLUDES = $(all_includes)
+
+# the library search path.
+ktux_LDFLAGS = $(all_libraries) $(KDE_RPATH)
+
+# the libraries to link against.
+ktux_LDADD = $(LIB_KDEUI) -lkscreensaver
+
+# which sources should be compiled for ktux
+ktux_SOURCES = spriteanim.cpp spritemisc.cpp spritepm.cpp sprite.cpp
+
+# these are the headers for your project
+noinst_HEADERS = sprite.h spriteanim.h spritemisc.h spritepm.h
+
+# let automoc handle all of the meta source files (moc)
+METASOURCES = AUTO
+
+# make messages.po. Move this one to ../po/ and "make merge" in po
+# the -x is for skipping messages already translated in kdelibs
+messages:
+ $(XGETTEXT) *.cpp -o $(podir)/ktux.pot
+
+KDE_ICON = ktux
+
+appsdir = $(kde_appsdir)/System/ScreenSavers
+apps_DATA = ktux.desktop
+