Makefile 774 B

123456789101112131415161718192021222324
  1. subdir-ccflags-y += -I${ZEPHYR_BASE}/samples/bt_box/src/include
  2. subdir-ccflags-y += -I${ZEPHYR_BASE}/samples/bt_box/src/tool/
  3. subdir-ccflags-y += -I${ZEPHYR_BASE}/samples/bt_box/src/btmusic/
  4. subdir-ccflags-y += -I${ZEPHYR_BASE}/samples/bt_box/src/btcall/
  5. subdir-ccflags-y += -I${ZEPHYR_BASE}/samples/bt_box/src/ota/
  6. ifdef CONFIG_OTA_RECOVERY_APP
  7. obj-y += ota_recovery/
  8. else
  9. obj-y += main/
  10. obj-$(CONFIG_BT_MUSIC_APP) += btmusic/
  11. obj-$(CONFIG_BT_CALL_APP) += btcall/
  12. obj-$(CONFIG_OTA_APP) += ota/
  13. obj-$(CONFIG_TOOL) += tool/
  14. obj-$(CONFIG_ACTIONS_ATT) +=att/
  15. obj-$(CONFIG_LCMUSIC_APP) += lcmusic/
  16. obj-$(CONFIG_LOCAL_PLAYER) += local_player/
  17. obj-$(CONFIG_CARD_READER_APP) += card_reader/
  18. obj-$(CONFIG_CHARGER_APP) += charger/
  19. obj-$(CONFIG_BT_TRANSMIT) += bt_transmit/
  20. endif