Browse Source

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

This reverts commit fcd58cc1d7892bb8b45db75c35e1bdccaa2d47bb.

still doesn't work ...
master
Andrew Tridgell 12 years ago
parent
commit
475496cee2
  1. 15
      libraries/AP_Common/Arduino.mk

15
libraries/AP_Common/Arduino.mk

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

Loading…
Cancel
Save