alsa-lib/test/Makefile

19 lines
347 B
Makefile
Raw Normal View History

1998-08-13 15:42:56 +00:00
CC = gcc
CFLAGS = -static -O2 -g -Wall -pipe
1998-08-28 14:04:48 +00:00
TARGETS = control mixer switches
1998-08-13 15:42:56 +00:00
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
1998-08-28 14:04:48 +00:00
switches: switches.c
$(CC) $(CFLAGS) $(LIB) -o switches switches.c
1998-08-13 15:42:56 +00:00
clean:
rm -f *.o $(TARGETS) *~