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