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/libradsec.h include/radsec/libradsec-impl.h doc: doxygen clean: -rm *.o *.a *.gch