diff options
author | Simon Wilson <ksattic@gmail.com> | 2011-06-02 23:40:00 -0700 |
---|---|---|
committer | Simon Wilson <ksattic@gmail.com> | 2011-06-02 23:40:00 -0700 |
commit | a0ef465b3140a827b149146cd51c9489859db33d (patch) | |
tree | cffc556e9bbe7315211185d3069c944303d1eebd /Makefile | |
parent | 44c6c359e72110e4716203115a787f90454ee8c3 (diff) |
Add tinyplay utility to play PCM riff/wave files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,6 +3,9 @@ INC = include OBJECTS = mixer.o pcm.o LIB = libtinyalsa.so +tinyplay: $(LIB) tinyplay.o + gcc tinyplay.o -L. -ltinyalsa -o tinyplay + libtinyalsa.so: $(OBJECTS) gcc -shared $(OBJECTS) -o $(LIB) @@ -10,4 +13,4 @@ libtinyalsa.so: $(OBJECTS) gcc $(CFLAGS) $< -I$(INC) clean: - rm $(LIB) $(OBJECTS) + rm $(LIB) $(OBJECTS) tinyplay.o tinyplay |