summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-05-14 17:07:21 +0000
committerLennart Poettering <lennart@poettering.net>2007-05-14 17:07:21 +0000
commita68ee34ebfbbc6e6bc653aadc284264e10694930 (patch)
treef092f59607e6bb2e543cd9ec28619fd4f60cf3e5 /Makefile
parentc7940f68a29e90b5cdc7368ec62ffeaeeca8208e (diff)
add bufferq structure
git-svn-id: file:///home/lennart/svn/public/libsydney/trunk@17 9ba3c220-e4d3-45a2-8aa3-73fcc9aff6ce
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)