summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4338843..c9a3eda 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,11 @@ LIBS=-lm `pkg-config --libs liboil-0.3`
SOURCES=common.c malloc.c test-sine.c oss.c bbuffer.c format.c volscale.c byteswap.c continued-fraction.c zero.c add.c speex/resample.c resample.c interleave.c converter.c g711.c
OBJS=$(SOURCES:.c=.o)
+test-bufferq: test-bufferq.o bufferq.o
+ $(CC) $(CFLAGS) -o $@ $^
+
+test-llist: test-llist.o
+ $(CC) $(CFLAGS) -o $@ $^
test-sine: $(OBJS)
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)