You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
494 B
29 lines
494 B
12 years ago
|
# find the mk/ directory, which is where this makefile fragment
|
||
|
# lives
|
||
|
MK_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
||
|
|
||
|
ifeq ($(APPDIR),)
|
||
|
|
||
|
####################
|
||
|
# AVR and SITL build
|
||
|
|
||
|
|
||
|
include $(MK_DIR)/Arduino.mk
|
||
|
include $(MK_DIR)/targets.mk
|
||
|
|
||
|
else
|
||
|
|
||
|
####################
|
||
|
# PX4 build
|
||
|
APPNAME = ArduPlane
|
||
|
PRIORITY = SCHED_PRIORITY_DEFAULT
|
||
|
STACKSIZE = 4096
|
||
|
|
||
|
SKETCHBOOK=..
|
||
|
include $(APPDIR)/mk/apm.mk
|
||
|
|
||
|
endif
|
||
|
|
||
|
# these targets need to be outside the APPDIR if above
|
||
|
include $(MK_DIR)/px4_targets.mk
|