summaryrefslogtreecommitdiff
path: root/lib/Makefile
blob: 8c6d5b4c1ad525590c0048e145e80bd3869de26a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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