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>
23 lines
396 B
Makefile
23 lines
396 B
Makefile
all: libeap_peer.a
|
|
|
|
clean:
|
|
rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov libeap_peer.a
|
|
|
|
install:
|
|
if ls *.so >/dev/null 2>&1; then \
|
|
install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \
|
|
cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \
|
|
; fi
|
|
|
|
include ../lib.rules
|
|
|
|
CFLAGS += -DIEEE8021X_EAPOL
|
|
|
|
LIB_OBJS= \
|
|
eap.o \
|
|
eap_methods.o
|
|
|
|
libeap_peer.a: $(LIB_OBJS)
|
|
$(AR) crT $@ $?
|
|
|
|
-include $(OBJS:%.o=%.d)
|