From aa354bb116fb38c9b049070dea4752afe9a3ea34 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Mon, 27 Sep 2010 18:47:07 +0200 Subject: WIP on libradsec: 94e3f46 Example client crafting simple packet using freeradius-libradius. --- lib/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'lib/Makefile') diff --git a/lib/Makefile b/lib/Makefile index 0c29f7a..bc35e88 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,11 +1,15 @@ -CFLAGS = -Wall -g +CFLAGS = -Wall -g -DDEBUG +OFILES = radsec.o err.o packet.o attr.o -all: base.o +all: libradsec.a base.o: base.c libradsec-base.h libradsec.h ../tlv11.h +libradsec.a: $(OFILES) + ar rc $@ $^ + doc: doxygen clean: - -rm *.o + -rm *.o *.a -- cgit v1.1