mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-20 06:59:55 -05:00
Updated switches interfaces.
This commit is contained in:
parent
2de9a582aa
commit
e3aad51c38
10 changed files with 394 additions and 30 deletions
|
|
@ -1,6 +1,6 @@
|
|||
CC = gcc
|
||||
CFLAGS = -static -O2 -g -Wall -pipe
|
||||
TARGETS = control mixer
|
||||
TARGETS = control mixer switches
|
||||
LIB = -L../lib -lsound
|
||||
|
||||
all: $(TARGETS)
|
||||
|
|
@ -11,5 +11,8 @@ control: control.c
|
|||
mixer: mixer.c
|
||||
$(CC) $(CFLAGS) $(LIB) -o mixer mixer.c
|
||||
|
||||
switches: switches.c
|
||||
$(CC) $(CFLAGS) $(LIB) -o switches switches.c
|
||||
|
||||
clean:
|
||||
rm -f *.o $(TARGETS) *~
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue