summaryrefslogtreecommitdiff
path: root/lib/examples/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/examples/Makefile')
-rw-r--r--lib/examples/Makefile9
1 files changed, 9 insertions, 0 deletions
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