Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

all: libradius.a

clean:
	rm -f *~ *.o *.d *.gcno *.gcda *.gcov libradius.a

install:
	@echo Nothing to be made.


include ../lib.rules

CFLAGS += -DCONFIG_IPV6

LIB_OBJS= \
	radius.o \
	radius_client.o \
	radius_das.o \
	radius_server.o

libradius.a: $(LIB_OBJS)
	$(AR) crT $@ $?

-include $(OBJS:%.o=%.d)