1# 2# Apps Makefile 3# 4 5# Common Compiler Flags ######################################################## 6 7COMMON_CFLAGS += -Iapps/include 8 9# App makefiles ################################################################ 10 11ifeq ($(CHRE_AUDIO_SUPPORT_ENABLED), true) 12include apps/audio_world/audio_world.mk 13endif 14 15ifeq ($(CHRE_GNSS_SUPPORT_ENABLED), true) 16include apps/gnss_world/gnss_world.mk 17endif 18 19ifeq ($(CHRE_WIFI_SUPPORT_ENABLED), true) 20include apps/wifi_world/wifi_world.mk 21endif 22 23ifeq ($(CHRE_WWAN_SUPPORT_ENABLED), true) 24include apps/wwan_world/wwan_world.mk 25endif 26 27include apps/debug_dump_world/debug_dump_world.mk 28include apps/hello_world/hello_world.mk 29include apps/host_awake_world/host_awake_world.mk 30include apps/message_world/message_world.mk 31include apps/sensor_world/sensor_world.mk 32include apps/spammer/spammer.mk 33include apps/timer_world/timer_world.mk 34include apps/unload_tester/unload_tester.mk 35