From a68ee34ebfbbc6e6bc653aadc284264e10694930 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 14 May 2007 17:07:21 +0000 Subject: add bufferq structure git-svn-id: file:///home/lennart/svn/public/libsydney/trunk@17 9ba3c220-e4d3-45a2-8aa3-73fcc9aff6ce --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile') 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) -- cgit