• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Host Awake World Nanoapp Makefile
3#
4
5# Environment Checks ###########################################################
6
7ifeq ($(CHRE_PREFIX),)
8ifneq ($(ANDROID_BUILD_TOP),)
9CHRE_PREFIX = $(ANDROID_BUILD_TOP)/system/chre
10else
11$(error "You must run 'lunch' to setup ANDROID_BUILD_TOP, or explicitly define \
12         the CHRE_PREFIX environment variable to point to the CHRE root \
13         directory.")
14endif
15endif
16
17# Nanoapp Configuration ########################################################
18
19NANOAPP_NAME = host_awake_world
20NANOAPP_ID = 0x012345678900000d
21NANOAPP_VERSION = 0x00000001
22
23NANOAPP_NAME_STRING = \"Host\ Awake\ World\"
24
25# Common Compiler Flags ########################################################
26
27COMMON_CFLAGS += -I.
28
29# Common Source Files ##########################################################
30
31COMMON_SRCS += host_awake_world.cc
32
33# Makefile Includes ############################################################
34
35include $(CHRE_PREFIX)/build/nanoapp/app.mk
36