summaryrefslogtreecommitdiff
path: root/lib/Makefile
blob: cb64ed4ffc27a1588647bb5250937845225901e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CFLAGS = -Wall -g -I include -DDEBUG

OFILES = attr.o \
	debug.o \
	err.o \
	packet.o \
	radsec.o

all: libradsec.a

libradsec.a: $(OFILES)
	ar rc $@ $^

$(OFILES): include/radsec/radsec.h include/radsec/radsec-impl.h

doc:
	doxygen

clean:
	-rm *.o *.a *.gch