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