1 # 2 # GNSS World Nanoapp Makefile 3 # 4 5 # Environment Checks ########################################################### 6 7 ifeq ($(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") 10 endif 11 12 # Nanoapp Configuration ######################################################## 13 14 NANOAPP_NAME = gnss_world 15 16 # Common Compiler Flags ######################################################## 17 18 COMMON_CFLAGS += -I. 19 20 # Common Source Files ########################################################## 21 22 COMMON_SRCS += gnss_world.cc 23 24 # Makefile Includes ############################################################ 25 26 include $(CHRE_PREFIX)/build/nanoapp/app.mk 27