1# Makefile for windows-h4 examples 2BTSTACK_ROOT ?= ../.. 3 4CORE += main.c btstack_stdin_windows.c btstack_tlv_posix.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# 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 -I${BTSTACK_ROOT}/3rd-party/tinydir 26 27VPATH += ${BTSTACK_ROOT}/platform/windows 28VPATH += ${BTSTACK_ROOT}/platform/posix 29VPATH += ${BTSTACK_ROOT}/chipset/zephyr 30 31EXAMPLES = ${EXAMPLES_GENERAL} ${EXAMPLES_LE_ONLY} 32 33all: ${EXAMPLES} 34