1# Makefile for libusb based examples 2BTSTACK_ROOT ?= ../.. 3 4CORE += \ 5 btstack_chipset_da14581.c \ 6 btstack_run_loop_base.c \ 7 btstack_run_loop_posix.c \ 8 btstack_tlv_posix.c \ 9 btstack_uart_posix.c \ 10 hci_transport_h4.c \ 11 le_device_db_tlv.c \ 12 main.c \ 13 btstack_stdin_posix.c \ 14 hci_585.c \ 15 # hci_581_active_uart.c \ 16 17# examples 18CLASSIC = 19include ${BTSTACK_ROOT}/example/Makefile.inc 20 21CFLAGS += -g -Wall -Werror \ 22 -I$(BTSTACK_ROOT)/platform/posix \ 23 -I$(BTSTACK_ROOT)/chipset/da14581 \ 24 -I$(BTSTACK_ROOT)/platform/embedded \ 25 -I${BTSTACK_ROOT}/3rd-party/tinydir 26 27VPATH += ${BTSTACK_ROOT}/platform/posix 28VPATH += ${BTSTACK_ROOT}/chipset/da14581 29 30EXAMPLES = ${EXAMPLES_GENERAL} ${EXAMPLES_LE_ONLY} 31 32all: ${EXAMPLES} 33 34