mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-01 17:54:02 -05:00
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>
17 lines
243 B
Makefile
17 lines
243 B
Makefile
all: libl2_packet.a
|
|
|
|
clean:
|
|
rm -f *~ *.o *.d *.gcno *.gcda *.gcov libl2_packet.a
|
|
|
|
install:
|
|
@echo Nothing to be made.
|
|
|
|
include ../lib.rules
|
|
|
|
LIB_OBJS = l2_packet_linux.o
|
|
|
|
libl2_packet.a: $(LIB_OBJS)
|
|
$(AR) crT $@ $?
|
|
|
|
-include $(OBJS:%.o=%.d)
|