]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Added program pause...
authorJaroslav Kysela <perex@perex.cz>
Sun, 30 Aug 1998 21:08:32 +0000 (21:08 +0000)
committerJaroslav Kysela <perex@perex.cz>
Sun, 30 Aug 1998 21:08:32 +0000 (21:08 +0000)
test/Makefile

index e4d9d68ad84ca04e6705cbea8a0550cefaafd4ca..826bb312e6e2388fba8d2be894398930dad17af1 100644 (file)
@@ -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) *~