mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-03 16:15:37 +00:00
programs: Make make clean
clean all programs always
If `make TEST_CPP:=1` is run, and then `make clean` (as opposed to `make TEST_CPP:=1 clean`), the cpp_dummy_build will be left behind after the clean. Make `make clean more convenient to use by removing programs that could be generated from any configuration, not just the active one. Fixes #1862
This commit is contained in:
parent
16529b21fa
commit
0c42e908e5
|
@ -64,6 +64,7 @@ Changes
|
||||||
* Change wording in the `mbedtls_ssl_conf_max_frag_len()`'s documentation to
|
* Change wording in the `mbedtls_ssl_conf_max_frag_len()`'s documentation to
|
||||||
improve clarity. Fixes #2258.
|
improve clarity. Fixes #2258.
|
||||||
* Replace multiple uses of MD2 by SHA-256 in X.509 test suite. Fixes #821.
|
* Replace multiple uses of MD2 by SHA-256 in X.509 test suite. Fixes #821.
|
||||||
|
* Make `make clean` clean all programs always. Fixes #1862.
|
||||||
|
|
||||||
= mbed TLS 2.16.1 branch released 2019-03-19
|
= mbed TLS 2.16.1 branch released 2019-03-19
|
||||||
|
|
||||||
|
|
|
@ -296,6 +296,8 @@ x509/req_app$(EXEXT): x509/req_app.c $(DEP)
|
||||||
clean:
|
clean:
|
||||||
ifndef WINDOWS
|
ifndef WINDOWS
|
||||||
rm -f $(APPS)
|
rm -f $(APPS)
|
||||||
|
-rm -f ssl/ssl_pthread_server$(EXEXT)
|
||||||
|
-rm -f test/cpp_dummy_build$(EXEXT)
|
||||||
else
|
else
|
||||||
del /S /Q /F *.o *.exe
|
del /S /Q /F *.o *.exe
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue