aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: 0c8de8a5a1b6ff32597071345039ce8cdfdc48d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
SUBDIRS = \
  src\
  doc\
  po

ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign 1.9 dist-bzip2

doc_DATA = \
  AUTHORS\
  README\
  NEWS

EXTRA_DIST = autogen.sh $(addprefix lyrics/,$(lyrics_plugins))

# build the smalles possible ncmpc binary
ncmpc-tiny:
	$(MAKE) -C src $@

sparse-check:
	$(MAKE) -C src $@

#
# lyrics plugins
#

lyrics_plugins = hd.sh leoslyrics.py lyricswiki.rb

if ENABLE_LYRICS_SCREEN

install-exec-local:
	install -m 0755 -d $(DESTDIR)$(lyrics_plugin_dir)
	cd lyrics && install -m 0755 $(lyrics_plugins) $(DESTDIR)$(lyrics_plugin_dir)

endif