1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/native: add deprecation warnings for make all-debug

This commit is contained in:
Martine Lenders 2020-02-21 12:51:41 +01:00
parent 1786a8353a
commit 4be4f5ad0a
2 changed files with 9 additions and 0 deletions

View File

@ -128,6 +128,7 @@ endif
all: # do not override first target
all-debug: all
@$(COLOR_ECHO) '$(COLOR_RED)`all-debug` is deprecated, just use `all`$(COLOR_RESET)'
all-gprof: all

View File

@ -20,4 +20,12 @@ OS/RIOT/images/Native.jpg)
- PWM: Dummy PWM
- QDEC: Emulated according to PWM
- SPI: Runtime configurable - `/dev/spidev*` are supported (Linux host only)
# Building native with debug flags
@deprecated `make all-debug` is deprecated; `make all` now builds with debugs
flags by default. The target will be removed after the 2020.10
release.
To build with debug flags for `native` use `make all-debug` instead of
`make all`
*/