46c3befe24
This program can be used to run fuzzing tests for areas related to EAPOL frame parsing and processing on the supplicant side. Signed-off-by: Jouni Malinen <j@w1.fi>
18 lines
273 B
Makefile
18 lines
273 B
Makefile
all: libeapol_supp.a
|
|
|
|
clean:
|
|
rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeapol_supp.a
|
|
|
|
install:
|
|
@echo Nothing to be made.
|
|
|
|
include ../lib.rules
|
|
|
|
CFLAGS += -DIEEE8021X_EAPOL
|
|
|
|
LIB_OBJS = eapol_supp_sm.o
|
|
|
|
libeapol_supp.a: $(LIB_OBJS)
|
|
$(AR) crT $@ $?
|
|
|
|
-include $(OBJS:%.o=%.d)
|