mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:35:42 +01:00
a9d91614bb
alsaucm is a command line tool that can be used to generate and debug UCM configuration files. The alsaucm utility can fully use the UCM functionality to query and configure all the UCM functionality in alsa-lib. This work was sponsored by Slimlogic Ltd, Texas Instruments Inc and Wolfson Microelectronics PLC. CC: Ian Molton <ian@mnementh.co.uk> CC: Graeme Gregory <gg@slimlogic.co.uk> Signed-off-by: Justin Xu <justinx@slimlogic.co.uk> Signed-off-by: Stefan Schmidt <stefan@slimlogic.co.uk> Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
36 lines
687 B
Makefile
36 lines
687 B
Makefile
INCLUDES=-I$(top_srcdir)/include
|
|
|
|
SUBDIRS = include alsactl alsaucm utils m4 po
|
|
if ALSAMIXER
|
|
SUBDIRS += alsamixer
|
|
endif
|
|
if HAVE_MIXER
|
|
SUBDIRS += amixer
|
|
endif
|
|
if HAVE_RAWMIDI
|
|
SUBDIRS += amidi
|
|
endif
|
|
if ALSACONF
|
|
SUBDIRS += alsaconf
|
|
endif
|
|
if HAVE_PCM
|
|
SUBDIRS += aplay iecset speaker-test
|
|
endif
|
|
if HAVE_SEQ
|
|
SUBDIRS += seq
|
|
endif
|
|
|
|
EXTRA_DIST= TODO gitcompile
|
|
AUTOMAKE_OPTIONS=foreign
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
rpm: dist
|
|
$(MAKE) -C $@
|
|
|
|
dist-hook:
|
|
-chmod -R a+r $(distdir)
|
|
@if ! test -z "$(AMTAR)"; then \
|
|
$(AMTAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
|
|
else \
|
|
$(TAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
|
|
fi
|