1# 2# WWAN 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 = wwan_world 15 16# Common Compiler Flags ######################################################## 17 18COMMON_CFLAGS += -I. 19 20# Common Source Files ########################################################## 21 22COMMON_SRCS += wwan_world.cc 23 24# Permission declarations ###################################################### 25 26CHRE_NANOAPP_USES_WWAN = true 27 28# Makefile Includes ############################################################ 29 30include $(CHRE_PREFIX)/build/nanoapp/app.mk 31