Code

Makefile.am: removed AUTHORS, README, NEWS from $(EXTRA_DIST)
[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 # build the smalles possible ncmpc binary
15 ncmpc-tiny:
16         $(MAKE) -C src $@
18 sparse-check:
19         $(MAKE) -C src $@
21 #
22 # lyrics plugins
23 #
25 lyrics_plugins = hd.sh leoslyrics.py lyricswiki.rb
27 EXTRA_DIST = $(addprefix lyrics/,$(lyrics_plugins))
29 if ENABLE_LYRICS_SCREEN
31 install-exec-local:
32         install -m 0755 -d $(DESTDIR)$(lyrics_plugin_dir)
33         cd lyrics && install -m 0755 $(lyrics_plugins) $(DESTDIR)$(lyrics_plugin_dir)
35 endif