You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hostap/radius_example/Makefile

48 lines
837 B
Makefile

ALL=radius_example
all: $(ALL)
ifndef CC
CC=gcc
endif
ifndef CFLAGS
CFLAGS = -MMD -O2 -Wall -g
endif
CFLAGS += -I.
CFLAGS += -I../src
CFLAGS += -I../src/crypto
CFLAGS += -I../src/utils
OBJS += ../src/utils/common.o
OBJS += ../src/utils/os_unix.o
OBJS += ../src/utils/wpa_debug.o
OBJS += ../src/utils/wpabuf.o
OBJS += ../src/utils/eloop.o
OBJS += ../src/utils/ip_addr.o
OBJS += ../src/crypto/md5.o ../src/crypto/md5-internal.o
OBJS += ../src/radius/radius.o
OBJS += ../src/radius/radius_client.o
ifndef LDO
LDO=$(CC)
endif
OBJS_ex = radius_example.o
libradius.a: $(OBJS)
ar rc libradius.a $(OBJS)
ranlib libradius.a
radius_example: $(OBJS_ex) libradius.a
$(LDO) $(LDFLAGS) -o radius_example $(OBJS_ex) -L. -lradius $(LIBS)
clean:
$(MAKE) -C ../src clean
rm -f core *~ *.o *.d libradius.a $(ALL)
-include $(OBJS:%.o=%.d)