Add build rules for src/radius/libradius.a
This commit is contained in:
parent
019c8c669d
commit
8a404b598d
2 changed files with 18 additions and 3 deletions
1
src/radius/.gitignore
vendored
Normal file
1
src/radius/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
libradius.a
|
|
@ -1,9 +1,23 @@
|
|||
all:
|
||||
@echo Nothing to be made.
|
||||
all: libradius.a
|
||||
|
||||
clean:
|
||||
for d in $(SUBDIRS); do make -C $$d clean; done
|
||||
rm -f *~ *.o *.d
|
||||
rm -f *~ *.o *.d libradius.a
|
||||
|
||||
install:
|
||||
@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)
|
||||
|
|
Loading…
Reference in a new issue