diff options
author | Jouni Malinen <jouni@codeaurora.org> | 2020-10-12 18:00:52 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2020-10-12 18:00:52 (GMT) |
commit | ceab836a99081e940c92daeff7319c472b66ec1c (patch) | |
tree | 206922268f20863bacfde6ec496737cd9a76797c /tests/p2p-fuzzer/Makefile | |
parent | 1d0d8888af17ef834b70a5835ff5157121ae77e1 (diff) | |
download | hostap-ceab836a99081e940c92daeff7319c472b66ec1c.zip hostap-ceab836a99081e940c92daeff7319c472b66ec1c.tar.gz hostap-ceab836a99081e940c92daeff7319c472b66ec1c.tar.bz2 |
tests: Remove obsolete p2p-fuzzer
tests/fuzzing/p2p replaced this more than a year ago, so get rid of the
now obsolete version.
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
Diffstat (limited to 'tests/p2p-fuzzer/Makefile')
-rw-r--r-- | tests/p2p-fuzzer/Makefile | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/tests/p2p-fuzzer/Makefile b/tests/p2p-fuzzer/Makefile deleted file mode 100644 index 4f81ef1..0000000 --- a/tests/p2p-fuzzer/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -all: p2p-fuzzer - -ifndef CC -CC=gcc -endif - -ifndef LDO -LDO=$(CC) -endif - -ifndef CFLAGS -CFLAGS = -MMD -O2 -Wall -g -endif - -SRC=../../src - -CFLAGS += -I$(SRC) - -$(SRC)/utils/libutils.a: - $(MAKE) -C $(SRC)/utils - -$(SRC)/common/libcommon.a: - $(MAKE) -C $(SRC)/common - -$(SRC)/crypto/libcrypto.a: - $(MAKE) -C $(SRC)/crypto - -$(SRC)/tls/libtls.a: - $(MAKE) -C $(SRC)/tls - -$(SRC)/p2p/libp2p.a: - $(MAKE) -C $(SRC)/p2p - -$(SRC)/wps/libwps.a: - $(MAKE) -C $(SRC)/wps - -LIBS += $(SRC)/utils/libutils.a -LIBS += $(SRC)/common/libcommon.a -LIBS += $(SRC)/crypto/libcrypto.a -LIBS += $(SRC)/p2p/libp2p.a -LIBS += $(SRC)/tls/libtls.a -LIBS += $(SRC)/wps/libwps.a - -p2p-fuzzer: p2p-fuzzer.o $(LIBS) - $(LDO) $(LDFLAGS) -o $@ $^ $(LIBS) - -clean: - $(MAKE) -C $(SRC) clean - rm -f p2p-fuzzer *~ *.o *.d - --include $(OBJS:%.o=%.d) |