Code

Makefile.am: distribute autogen.sh
[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 = autogen.sh $(addprefix lyrics/,$(lyrics_plugins))
16 # build the smalles possible ncmpc binary
17 ncmpc-tiny:
18         $(MAKE) -C src $@
20 sparse-check:
21         $(MAKE) -C src $@
23 #
24 # lyrics plugins
25 #
27 lyrics_plugins = hd.sh leoslyrics.py lyricswiki.rb
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