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

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

all: libradsec.a

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

doc:
	doxygen

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