mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-13 01:15:42 +01:00
c6bdde171e
Otherwise it's missing in the tarball. Signed-off-by: Takashi Iwai <tiwai@suse.de>
18 lines
242 B
Makefile
18 lines
242 B
Makefile
bin_PROGRAMS = \
|
|
alsaucm
|
|
|
|
if USE_RST2MAN
|
|
man_MANS = alsaucm.1
|
|
endif
|
|
|
|
alsaucm_SOURCES = usecase.c
|
|
|
|
AM_CPPFLAGS = \
|
|
-Wall -I$(top_srcdir)/include
|
|
|
|
alsaucm_LDADD = -lasound
|
|
|
|
%.1: %.rst
|
|
rst2man $< > $@
|
|
|
|
EXTRA_DIST = alsaucm.rst
|