From f7f35cc62b51ec01cbf3787c8902e79cadbb85df Mon Sep 17 00:00:00 2001 From: Simon Wilson Date: Mon, 3 Dec 2012 10:45:26 -0800 Subject: Add tinypcminfo utility This uses the new pcm_params_* API. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6e07b5e..3ba7233 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ OBJECTS = mixer.o pcm.o LIB = libtinyalsa.so CROSS_COMPILE = -all: $(LIB) tinyplay tinycap tinymix +all: $(LIB) tinyplay tinycap tinymix tinypcminfo tinyplay: $(LIB) tinyplay.o $(CROSS_COMPILE)gcc tinyplay.o -L. -ltinyalsa -o tinyplay @@ -15,6 +15,9 @@ tinycap: $(LIB) tinycap.o tinymix: $(LIB) tinymix.o $(CROSS_COMPILE)gcc tinymix.o -L. -ltinyalsa -o tinymix +tinypcminfo: $(LIB) tinypcminfo.o + $(CROSS_COMPILE)gcc tinypcminfo.o -L. -ltinyalsa -o tinypcminfo + $(LIB): $(OBJECTS) $(CROSS_COMPILE)gcc -shared $(OBJECTS) -o $(LIB) -- cgit v1.2.3