mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
Added pcm test...
This commit is contained in:
parent
d9579f4b1c
commit
85479942ac
1 changed files with 4 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
CC = gcc
|
||||
CFLAGS = -static -O2 -g -Wall -pipe
|
||||
TARGETS = control mixer switches pause
|
||||
TARGETS = control mixer switches pause pcm
|
||||
LIB = -L../lib -lasound
|
||||
|
||||
all: $(TARGETS)
|
||||
|
|
@ -17,5 +17,8 @@ switches: switches.c
|
|||
pause: pause.c
|
||||
$(CC) $(CFLAGS) $(LIB) -o pause pause.c
|
||||
|
||||
pcm: pcm.c
|
||||
$(CC) $(CFLAGS) $(LIB) -o pcm pcm.c
|
||||
|
||||
clean:
|
||||
rm -f *.o $(TARGETS) *~
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue