mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cf74b26c55
Add deprecate note in the mips cpu. Add warning in make when any mips based board is being used (6lowpan-clicker, pic32-wifire).
11 lines
337 B
Makefile
11 lines
337 B
Makefile
# Add deprecated modules here
|
|
# Keep this list ALPHABETICALLY SORTED!!!!
|
|
ifeq ($(MAKELEVEL),0)
|
|
DEPRECATED_CPUS += mips_pic32mx
|
|
DEPRECATED_CPUS += mips_pic32mz
|
|
ifneq (,$(filter $(DEPRECATED_CPUS),$(CPU)))
|
|
$(shell $(COLOR_ECHO) "$(COLOR_RED)Deprecated cpu: $(COLOR_RESET)"\
|
|
"$(CPU)" 1>&2)
|
|
endif
|
|
endif
|