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