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/examples/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lib/examples/Makefile (limited to 'lib/examples/Makefile') diff --git a/lib/examples/Makefile b/lib/examples/Makefile new file mode 100644 index 0000000..abced14 --- /dev/null +++ b/lib/examples/Makefile @@ -0,0 +1,9 @@ +CFLAGS = -Wall -g + +all: blocking.o + +blocking.o: blocking.c blocking.h ../libradsec-base.h ../libradsec.h + $(CC) $(CFLAGS) -c -I .. $^ + +clean: + -rm *.o -- cgit v1.1