diff options
author | Linus Nordberg <linus@nordu.net> | 2010-09-28 22:27:04 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2010-09-28 22:27:04 +0200 |
commit | e981fbcf3909fbaba462c7b578f29fa67b3bc74b (patch) | |
tree | f67203b602b71600020e95ff6805d6aa71331237 /lib/Makefile | |
parent | 07fa3839c8bddd1ad91f86243dd582c0359ba3e1 (diff) |
WIP.
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 $@ $^ |