1# Makefile for windows-h4-da14585 examples 2BTSTACK_ROOT ?= ../.. 3 4CORE += main.c btstack_stdin_windows.c btstack_tlv_posix.c 5 6COMMON += \ 7 btstack_run_loop_base.c \ 8 btstack_run_loop_windows.c \ 9 hci_transport_h4.c \ 10 btstack_uart_block_windows.c \ 11 le_device_db_tlv.c \ 12 hci_585.c \ 13 btstack_chipset_da14581.c \ 14 rijndael.c \ 15 16# examples 17CLASSIC = 18include ${BTSTACK_ROOT}/example/Makefile.inc 19 20# CC = gcc-fsf-4.9 21CFLAGS += -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Werror 22# CFLAGS += -Werror 23 24CFLAGS += -I${BTSTACK_ROOT}/platform/posix \ 25 -I${BTSTACK_ROOT}/platform/windows \ 26 -I${BTSTACK_ROOT}/platform/embedded \ 27 -I$(BTSTACK_ROOT)/chipset/da14581 \ 28 -I${BTSTACK_ROOT}/3rd-party/rijndael \ 29 -I${BTSTACK_ROOT}/3rd-party/tinydir 30 31VPATH += ${BTSTACK_ROOT}/3rd-party/rijndael 32 33VPATH += ${BTSTACK_ROOT}/platform/windows 34VPATH += ${BTSTACK_ROOT}/platform/posix 35 36VPATH += ${BTSTACK_ROOT}/chipset/da14581 37 38EXAMPLES = ${EXAMPLES_GENERAL} ${EXAMPLES_LE_ONLY} 39 40all: ${EXAMPLES} 41