From 23dfea91ef5e921da0b09d91004436a7d8715c42 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Mon, 13 Sep 2010 17:27:40 +0200 Subject: First stab at a working blocking example. --- lib/tests/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/tests/Makefile (limited to 'lib/tests/Makefile') diff --git a/lib/tests/Makefile b/lib/tests/Makefile new file mode 100644 index 0000000..13316fc --- /dev/null +++ b/lib/tests/Makefile @@ -0,0 +1,10 @@ +CFLAGS = -Wall -g + +all: test-blocking + +test-blocking: test-blocking.c ../examples/blocking.o ../base.o ../../list.o ../../tlv11.o + $(CC) $(CFLAGS) -I .. -I ../examples -o $@ $^ + +clean: + -rm *.o test-blocking + -- cgit v1.1