mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-16 00:40:52 +00:00
Move fuzz directory to programs
This commit is contained in:
parent
cf8fdfd8e1
commit
48f35f50bf
@ -6,3 +6,4 @@ add_subdirectory(ssl)
|
|||||||
add_subdirectory(test)
|
add_subdirectory(test)
|
||||||
add_subdirectory(x509)
|
add_subdirectory(x509)
|
||||||
add_subdirectory(util)
|
add_subdirectory(util)
|
||||||
|
add_subdirectory(fuzz)
|
||||||
|
@ -90,9 +90,12 @@ endif
|
|||||||
|
|
||||||
.SILENT:
|
.SILENT:
|
||||||
|
|
||||||
.PHONY: all clean list
|
.PHONY: all clean list fuzz
|
||||||
|
|
||||||
all: $(APPS)
|
all: $(APPS) fuzz
|
||||||
|
|
||||||
|
fuzz:
|
||||||
|
$(MAKE) -C fuzz
|
||||||
|
|
||||||
$(DEP):
|
$(DEP):
|
||||||
$(MAKE) -C ../library
|
$(MAKE) -C ../library
|
||||||
@ -305,6 +308,7 @@ ifndef WINDOWS
|
|||||||
else
|
else
|
||||||
del /S /Q /F *.o *.exe
|
del /S /Q /F *.o *.exe
|
||||||
endif
|
endif
|
||||||
|
$(MAKE) -C fuzz clean
|
||||||
|
|
||||||
list:
|
list:
|
||||||
echo $(APPS)
|
echo $(APPS)
|
||||||
|
@ -77,5 +77,3 @@ if (NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
|
|||||||
link_to_source(scripts)
|
link_to_source(scripts)
|
||||||
link_to_source(ssl-opt.sh)
|
link_to_source(ssl-opt.sh)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_subdirectory(fuzz)
|
|
||||||
|
@ -112,12 +112,9 @@ BINARIES := $(addsuffix $(EXEXT),$(APPS))
|
|||||||
|
|
||||||
.SILENT:
|
.SILENT:
|
||||||
|
|
||||||
.PHONY: all check test clean fuzz
|
.PHONY: all check test clean
|
||||||
|
|
||||||
all: $(BINARIES) fuzz
|
all: $(BINARIES)
|
||||||
|
|
||||||
fuzz:
|
|
||||||
$(MAKE) -C fuzz
|
|
||||||
|
|
||||||
$(DEP):
|
$(DEP):
|
||||||
$(MAKE) -C ../library
|
$(MAKE) -C ../library
|
||||||
@ -164,7 +161,6 @@ ifneq ($(wildcard TESTS/.*),)
|
|||||||
rmdir /Q /S TESTS
|
rmdir /Q /S TESTS
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
$(MAKE) -C fuzz clean
|
|
||||||
|
|
||||||
# Test suites caught by SKIP_TEST_SUITES are built but not executed.
|
# Test suites caught by SKIP_TEST_SUITES are built but not executed.
|
||||||
check: $(BINARIES)
|
check: $(BINARIES)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user