1# Makefile for windows-h4 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_chipset_zephyr.c \ 9 btstack_run_loop_windows.c \ 10 btstack_uart_block_windows.c \ 11 hci_transport_h4.c \ 12 le_device_db_tlv.c \ 13 14# examples 15CLASSIC= 16include ${BTSTACK_ROOT}/example/Makefile.inc 17 18# CC = gcc-fsf-4.9 19CFLAGS += -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Werror 20# CFLAGS += -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/zephyr \ 26 -I${BTSTACK_ROOT}/3rd-party/tinydir 27 28VPATH += ${BTSTACK_ROOT}/platform/windows 29VPATH += ${BTSTACK_ROOT}/platform/posix 30VPATH += ${BTSTACK_ROOT}/chipset/zephyr 31 32EXAMPLES = ${EXAMPLES_GENERAL} ${EXAMPLES_LE_ONLY} 33 34all: ${EXAMPLES} 35