Move fuzz directory to programs

This commit is contained in:
Philippe Antoine 2019-06-27 08:46:45 +02:00
parent cf8fdfd8e1
commit 48f35f50bf
33 changed files with 9 additions and 10 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)