cb64ed4ffc27a1588647bb5250937845225901e9
[radsecproxy.git] / lib / Makefile
1 CFLAGS = -Wall -g -I include -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 $(OFILES): include/radsec/radsec.h include/radsec/radsec-impl.h
15
16 doc:
17         doxygen
18
19 clean:
20         -rm *.o *.a *.gch
21