Home | History | Annotate | Download | only in radius
      1 all: libradius.a
      2 
      3 clean:
      4 	rm -f *~ *.o *.d *.gcno *.gcda *.gcov libradius.a
      5 
      6 install:
      7 	@echo Nothing to be made.
      8 
      9 
     10 include ../lib.rules
     11 
     12 CFLAGS += -DCONFIG_IPV6
     13 
     14 LIB_OBJS= \
     15 	radius.o \
     16 	radius_client.o \
     17 	radius_das.o \
     18 	radius_server.o
     19 
     20 libradius.a: $(LIB_OBJS)
     21 	$(AR) crT $@ $?
     22 
     23 -include $(OBJS:%.o=%.d)
     24