1# 2# Message World Nanoapp Makefile 3# 4 5# Environment Checks ########################################################### 6 7ifeq ($(CHRE_PREFIX),) 8$(error "The CHRE_PREFIX environment variable must be set to a path to the \ 9 CHRE project root. Example: export CHRE_PREFIX=$$HOME/chre") 10endif 11 12# Nanoapp Configuration ######################################################## 13 14NANOAPP_NAME = message_world 15 16# Common Compiler Flags ######################################################## 17 18COMMON_CFLAGS += -I. 19 20# Common Source Files ########################################################## 21 22COMMON_SRCS += message_world.cc 23 24# Makefile Includes ############################################################ 25 26include $(CHRE_PREFIX)/build/nanoapp/app.mk 27