Code

Makefile.am: removed superfluous $(docdir) variable
[ncmpc.git] / Makefile.am
1 SUBDIRS = \
2   src\
3   doc\
4   po
6 ACLOCAL_AMFLAGS = -I m4
7 AUTOMAKE_OPTIONS = foreign 1.9 dist-bzip2
9 doc_DATA = \
10   AUTHORS\
11   README\
12   NEWS
14 EXTRA_DIST = \
15   $(doc_DATA)
17 # build the smalles possible ncmpc binary
18 ncmpc-tiny:
19         $(MAKE) -C src $@
21 sparse-check:
22         $(MAKE) -C src $@
24 #
25 # lyrics plugins
26 #
28 if ENABLE_LYRICS_SCREEN
30 lyrics_plugins = hd.sh leoslyrics.py lyricswiki.rb
32 install-exec-local:
33         install -m 0755 -d $(DESTDIR)$(lyrics_plugin_dir)
34         cd lyrics && install -m 0755 $(lyrics_plugins) $(DESTDIR)$(lyrics_plugin_dir)
36 endif