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(x509)
add_subdirectory(util)
add_subdirectory(fuzz)

View file

@ -90,9 +90,12 @@ endif
.SILENT:
.PHONY: all clean list
.PHONY: all clean list fuzz
all: $(APPS)
all: $(APPS) fuzz
fuzz:
$(MAKE) -C fuzz
$(DEP):
$(MAKE) -C ../library
@ -305,6 +308,7 @@ ifndef WINDOWS
else
del /S /Q /F *.o *.exe
endif
$(MAKE) -C fuzz clean
list:
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(ssl-opt.sh)
endif()
add_subdirectory(fuzz)

View file

@ -112,12 +112,9 @@ BINARIES := $(addsuffix $(EXEXT),$(APPS))
.SILENT:
.PHONY: all check test clean fuzz
.PHONY: all check test clean
all: $(BINARIES) fuzz
fuzz:
$(MAKE) -C fuzz
all: $(BINARIES)
$(DEP):
$(MAKE) -C ../library
@ -164,7 +161,6 @@ ifneq ($(wildcard TESTS/.*),)
rmdir /Q /S TESTS
endif
endif
$(MAKE) -C fuzz clean
# Test suites caught by SKIP_TEST_SUITES are built but not executed.
check: $(BINARIES)