Browse Source
All the linux boards that have their counterpart in waf are being deprecated here. The only exception for now is sitl.mission-4.1.18
Lucas De Marchi
9 years ago
2 changed files with 36 additions and 6 deletions
@ -1,11 +1,29 @@
@@ -1,11 +1,29 @@
|
||||
|
||||
# git submodule support
|
||||
|
||||
.PHONY: CHECK_MODULES |
||||
all: CHECK_MODULES |
||||
define echowarning |
||||
@echo -e "\e[31mWARNING:\e[0m $1" >&2 |
||||
endef |
||||
|
||||
define echoallwarnings |
||||
$(call echowarning)
|
||||
$(call echowarning)
|
||||
$(call echowarning,make build system is deprecated for Linux boards)
|
||||
$(call echowarning,new features are not going to be added anymore)
|
||||
$(call echowarning,See README-WAF.md: https://github.com/ArduPilot/ardupilot/blob/master/README-WAF.md)
|
||||
$(call echowarning)
|
||||
$(call echowarning,The make build system will soon be removed)
|
||||
$(call echowarning)
|
||||
$(call echowarning)
|
||||
@sleep 3
|
||||
endef |
||||
|
||||
CHECK_MODULES: |
||||
$(if $(BUILDSYS_DEPRECATED),$(call echoallwarnings))
|
||||
$(v)$(MK_DIR)/check_modules.sh
|
||||
|
||||
.PHONY: CHECK_MODULES |
||||
all: CHECK_MODULES |
||||
|
||||
module-update: |
||||
git submodule update
|
||||
|
Loading…
Reference in new issue