mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-19 07:00:06 -05:00
Initial revision
This commit is contained in:
commit
5abac67626
47 changed files with 7915 additions and 0 deletions
15
test/Makefile
Normal file
15
test/Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
CC = gcc
|
||||
CFLAGS = -static -O2 -g -Wall -pipe
|
||||
TARGETS = control mixer
|
||||
LIB = -L../lib -lsound
|
||||
|
||||
all: $(TARGETS)
|
||||
|
||||
control: control.c
|
||||
$(CC) $(CFLAGS) $(LIB) -o control control.c
|
||||
|
||||
mixer: mixer.c
|
||||
$(CC) $(CFLAGS) $(LIB) -o mixer mixer.c
|
||||
|
||||
clean:
|
||||
rm -f *.o $(TARGETS) *~
|
||||
Loading…
Add table
Add a link
Reference in a new issue