Added program pause...

This commit is contained in:
Jaroslav Kysela 1998-08-30 21:08:32 +00:00
parent 1e2772d095
commit 254d52fc84

View file

@ -1,7 +1,7 @@
CC = gcc CC = gcc
CFLAGS = -static -O2 -g -Wall -pipe CFLAGS = -static -O2 -g -Wall -pipe
TARGETS = control mixer switches TARGETS = control mixer switches pause
LIB = -L../lib -lsound LIB = -L../lib -lasound
all: $(TARGETS) all: $(TARGETS)
@ -14,5 +14,8 @@ mixer: mixer.c
switches: switches.c switches: switches.c
$(CC) $(CFLAGS) $(LIB) -o switches switches.c $(CC) $(CFLAGS) $(LIB) -o switches switches.c
pause: pause.c
$(CC) $(CFLAGS) $(LIB) -o pause pause.c
clean: clean:
rm -f *.o $(TARGETS) *~ rm -f *.o $(TARGETS) *~