mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-26 13:21:03 +03:00
make: support "make ssl-opt" to just build what ssl-opt.sh needs
This also suffices for compat.sh. Include the sample programs in this build. They aren't tested by ssl-opt.sh yet, but they soon will be. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
@ -116,6 +116,12 @@ ifndef WINDOWS
|
||||
all: fuzz
|
||||
endif
|
||||
|
||||
SSL_OPT_APPS = $(filter ssl/%,$(APPS))
|
||||
SSL_OPT_APPS += test/query_compile_time_config test/udp_proxy
|
||||
# Just the programs needed to run ssl-opt.sh (and compat.sh)
|
||||
ssl-opt: $(patsubst %,%$(EXEXT),$(SSL_OPT_APPS))
|
||||
.PHONY: ssl-opt
|
||||
|
||||
fuzz: ${MBEDTLS_TEST_OBJS}
|
||||
$(MAKE) -C fuzz
|
||||
|
||||
|
Reference in New Issue
Block a user