mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
a149fcc77d
This tool can be used to capture IEEE 802.11 frames either from a monitor interface for realtime capturing or from pcap files for offline analysis. This version is only adding basic infrastructure for going through the frames and parsing their headers.
82 lines
1.1 KiB
Makefile
82 lines
1.1 KiB
Makefile
ALL=wlantest
|
|
|
|
all: $(ALL)
|
|
|
|
ifndef CC
|
|
CC=gcc
|
|
endif
|
|
|
|
ifndef RANLIB
|
|
RANLIB=ranlib
|
|
endif
|
|
|
|
ifndef CFLAGS
|
|
CFLAGS = -MMD -O2 -Wall -g
|
|
endif
|
|
|
|
|
|
CFLAGS += -I.
|
|
CFLAGS += -I../src
|
|
CFLAGS += -I../src/utils
|
|
|
|
|
|
ifndef LDO
|
|
LDO=$(CC)
|
|
endif
|
|
|
|
Q=@
|
|
E=echo
|
|
ifeq ($(V), 1)
|
|
Q=
|
|
E=true
|
|
endif
|
|
|
|
%.o: %.c
|
|
$(Q)$(CC) -c -o $@ $(CFLAGS) $<
|
|
@$(E) " CC " $<
|
|
|
|
|
|
OBJS_lib += ../src/utils/libutils.a
|
|
OBJS_lib += ../src/crypto/libcrypto.a
|
|
|
|
OBJS += wlantest.o
|
|
OBJS += readpcap.o
|
|
OBJS += monitor.o
|
|
OBJS += process.o
|
|
OBJS += crc32.o
|
|
|
|
LIBS += -lpcap
|
|
|
|
|
|
../src/utils/libutils.a:
|
|
$(MAKE) -C ../src/utils
|
|
|
|
../src/crypto/libcrypto.a:
|
|
$(MAKE) -C ../src/crypto
|
|
|
|
|
|
ifneq ($(CONFIG_SOLIB), yes)
|
|
LIBWLANTEST = libwlantest.a
|
|
libwlantest.a: $(OBJS_lib)
|
|
$(AR) crT libwlantest.a $(OBJS_lib)
|
|
$(RANLIB) libwlantest.a
|
|
|
|
else
|
|
CFLAGS += -fPIC -DPIC
|
|
LDFLAGS += -shared
|
|
|
|
LIBWLANTEST = libwlantest.so
|
|
libwlantest.so: $(OBJS_lib)
|
|
$(LDO) $(LDFLAGS) $(OBJS_lib) -o $(LIBWLANTEST)
|
|
|
|
endif
|
|
|
|
wlantest: $(OBJS) $(LIBWLANTEST)
|
|
$(LDO) $(LDFLAGS) -o wlantest $(OBJS) -L. -lwlantest $(LIBS)
|
|
|
|
clean:
|
|
$(MAKE) -C ../src clean
|
|
rm -f core *~ *.o *.d libwlantest.a libwlantest.so $(ALL)
|
|
|
|
-include $(OBJS:%.o=%.d)
|