16807484cSMatthias Ringwald# Makefile for posix-h4 based examples 2f67eb7c2SMatthias RingwaldBTSTACK_ROOT ?= ../.. 36807484cSMatthias Ringwald 46807484cSMatthias RingwaldCORE += \ 56807484cSMatthias Ringwald btstack_run_loop_posix.c \ 6d3849e4cSMatthias Ringwald btstack_tlv_posix.c \ 76807484cSMatthias Ringwald btstack_uart_block_posix.c \ 86807484cSMatthias Ringwald hci_transport_h4.c \ 9*81862996SMatthias Ringwald le_device_db_tlv.c \ 106807484cSMatthias Ringwald main.c \ 116807484cSMatthias Ringwald btstack_stdin_posix.c \ 12360243beSMatthias Ringwald btstack_chipset_zephyr.c \ 136807484cSMatthias Ringwald 146807484cSMatthias Ringwald# examples 156807484cSMatthias Ringwaldinclude ${BTSTACK_ROOT}/example/Makefile.inc 166807484cSMatthias Ringwald 176807484cSMatthias RingwaldCFLAGS += -g -Wall -Werror \ 186807484cSMatthias Ringwald -I$(BTSTACK_ROOT)/platform/embedded \ 196807484cSMatthias Ringwald -I$(BTSTACK_ROOT)/platform/posix \ 20360243beSMatthias Ringwald -I$(BTSTACK_ROOT)/chipset/zephyr \ 21d08566fbSMatthias Ringwald -I${BTSTACK_ROOT}/3rd-party/tinydir 226807484cSMatthias Ringwald 236807484cSMatthias RingwaldVPATH += ${BTSTACK_ROOT}/platform/posix 246807484cSMatthias RingwaldVPATH += ${BTSTACK_ROOT}/platform/embedded 25360243beSMatthias RingwaldVPATH += ${BTSTACK_ROOT}/chipset/zephyr 266807484cSMatthias Ringwald 27bdc352b1SMatthias Ringwaldall: ${EXAMPLES_LE_ONLY} 286807484cSMatthias Ringwald 29