Code

mpdclient: use g_utf8_collate()
[ncmpc.git] / Makefile.am
index 9a01c2aab65a27861c2b89a8730a5d426a1000f9..b0b2f4fc0009cbc7be96d2458b79d29eac5d0d88 100644 (file)
@@ -3,9 +3,8 @@ SUBDIRS = \
   doc\
   po
 
-AUTOMAKE_OPTIONS =   gnu 1.6
-
-# $Id$
+ACLOCAL_AMFLAGS = -I m4
+AUTOMAKE_OPTIONS = gnu 1.9 dist-bzip2
 
 docdir = $(prefix)/share/doc/$(PACKAGE)
 
@@ -17,3 +16,23 @@ doc_DATA = \
 EXTRA_DIST = \
   $(doc_DATA)
 
+# build the smalles possible ncmpc binary
+ncmpc-tiny:
+       $(MAKE) -C src $@
+
+sparse-check:
+       $(MAKE) -C src $@
+
+#
+# lyrics plugins
+#
+
+if ENABLE_LYRICS_SCREEN
+
+lyrics_plugins = hd.sh leoslyrics.py lyricswiki.rb
+
+install-exec-local:
+       install -m 0755 -d $(DESTDIR)$(lyrics_plugin_dir)
+       cd lyrics && install -m 0755 $(lyrics_plugins) $(DESTDIR)$(lyrics_plugin_dir)
+
+endif