From: Jaroslav Kysela Date: Sun, 30 Aug 1998 21:08:32 +0000 (+0000) Subject: Added program pause... X-Git-Tag: v1.0.3~1589 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=254d52fc8493d7831620ffce4375710a92583f87;p=alsa-lib.git Added program pause... --- diff --git a/test/Makefile b/test/Makefile index e4d9d68a..826bb312 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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) *~