summaryrefslogtreecommitdiff
path: root/lib/Makefile
blob: bc35e8856e70408e8e7a34db2ad1dd7907817574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CFLAGS = -Wall -g -DDEBUG
OFILES = radsec.o err.o packet.o attr.o

all: libradsec.a

base.o: base.c libradsec-base.h libradsec.h ../tlv11.h

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

doc:
	doxygen

clean:
	-rm *.o *.a