Ardupilot2/mk/apm.mk
2013-01-02 17:50:15 +11:00

25 lines
407 B
Makefile

# 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
include $(MK_DIR)/px4_core.mk
endif
# these targets need to be outside the APPDIR if above
include $(MK_DIR)/px4_targets.mk