From d2cb5030091760256fcc8e755e686aab746b7697 Mon Sep 17 00:00:00 2001 From: Simon Wilson Date: Sat, 4 Jun 2011 00:57:17 -0700 Subject: Improve mixer support - support get/set of multiple values - add parameter checking to functions - add api function to get control type - add tinymix utility to list mixer controls --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ac40b6b..2013d59 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,14 @@ INC = include OBJECTS = mixer.o pcm.o LIB = libtinyalsa.so -all: $(LIB) tinyplay +all: $(LIB) tinyplay tinymix tinyplay: $(LIB) tinyplay.o gcc tinyplay.o -L. -ltinyalsa -o tinyplay +tinymix: $(LIB) tinymix.o + gcc tinymix.o -L. -ltinyalsa -o tinymix + $(LIB): $(OBJECTS) gcc -shared $(OBJECTS) -o $(LIB) -- cgit v1.2.3