diff options
Diffstat (limited to 'lib/examples/Makefile')
-rw-r--r-- | lib/examples/Makefile | 9 |
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 |