WIP.
[radsecproxy.git] / lib / Makefile
1 CFLAGS = -Wall -g -DDEBUG
2
3 OFILES = attr.o \
4         debug.o \
5         err.o \
6         packet.o \
7         radsec.o
8
9 all: libradsec.a
10
11 libradsec.a: $(OFILES)
12         ar rc $@ $^
13
14 doc:
15         doxygen
16
17 clean:
18         -rm *.o *.a