Arduino.mk: use target variables rather than recursive make for apm1, apm2..

This commit is contained in:
Pat Hickey 2012-12-17 15:32:32 -08:00 committed by Andrew Tridgell
parent 76dabef7d6
commit 8fe3c5e5d6
1 changed files with 9 additions and 6 deletions

View File

@ -457,14 +457,17 @@ endif
all: $(SKETCHELF) $(SKETCHEEP) $(SKETCHHEX)
# convenient targets for our supported boards
sitl:
make -f Makefile HAL_BOARD=HAL_BOARD_AVR_SITL
sitl: HAL_BOARD = "HAL_BOARD_AVR_SITL"
sitl: all
apm1:
make -f Makefile HAL_BOARD=HAL_BOARD_APM1
apm1: HAL_BOARD = "HAL_BOARD_APM1"
apm1: all
apm2:
make -f Makefile HAL_BOARD=HAL_BOARD_APM2
apm2: HAL_BOARD = "HAL_BOARD_APM2"
apm2: all
emptyhal: HAL_BOARD = "HAL_BOARD_EMPTY"
emptyhal: all
.PHONY: upload
upload: $(SKETCHHEX)