diff options
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/Makefile b/lib/Makefile index bc35e88..8c6d5b4 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,9 +1,12 @@ CFLAGS = -Wall -g -DDEBUG -OFILES = radsec.o err.o packet.o attr.o -all: libradsec.a +OFILES = attr.o \ + debug.o \ + err.o \ + packet.o \ + radsec.o -base.o: base.c libradsec-base.h libradsec.h ../tlv11.h +all: libradsec.a libradsec.a: $(OFILES) ar rc $@ $^ |