Add build rules for src/radius/libradius.a

This commit is contained in:
Jouni Malinen 2009-12-24 11:59:08 +02:00
parent 019c8c669d
commit 8a404b598d
2 changed files with 18 additions and 3 deletions

1
src/radius/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
libradius.a

View File

@ -1,9 +1,23 @@
all: all: libradius.a
@echo Nothing to be made.
clean: clean:
for d in $(SUBDIRS); do make -C $$d clean; done for d in $(SUBDIRS); do make -C $$d clean; done
rm -f *~ *.o *.d rm -f *~ *.o *.d libradius.a
install: install:
@echo Nothing to be made. @echo Nothing to be made.
include ../lib.rules
CFLAGS += -DCONFIG_IPV6
LIB_OBJS= \
radius.o \
radius_client.o \
radius_server.o
libradius.a: $(LIB_OBJS)
$(AR) crT $@ $?
-include $(OBJS:%.o=%.d)