
Use the new build.rules in lib.rules and also unify the clean targets to lib.rules. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
20 lines
247 B
Makefile
20 lines
247 B
Makefile
ALL=libradius.a
|
|
|
|
include ../lib.rules
|
|
|
|
install:
|
|
@echo Nothing to be made.
|
|
|
|
|
|
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)
|