diff options
author | Linus Nordberg <linus@nordu.net> | 2010-09-27 18:47:07 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2010-09-27 18:57:06 +0200 |
commit | aa354bb116fb38c9b049070dea4752afe9a3ea34 (patch) | |
tree | 51001c4157aef25682eeb5c460438dc5c47ed323 /lib/Makefile | |
parent | 94e3f46ef6c976f6bbd670555262ec6466314d8a (diff) |
WIP on libradsec: 94e3f46 Example client crafting simple packet using freeradius-libradius.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
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 |