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