mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
Add build rules for src/radius/libradius.a
This commit is contained in:
parent
019c8c669d
commit
8a404b598d
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 New Issue
Block a user