2020-07-16 17:50:40 +02:00
|
|
|
# Makefile for windows-h4-da14585 examples
|
|
|
|
BTSTACK_ROOT ?= ../..
|
|
|
|
|
2022-04-29 11:46:26 +02:00
|
|
|
CORE += main.c btstack_stdin_windows.c btstack_tlv_windows.c hci_dump_windows_fs.c
|
2020-07-16 17:50:40 +02:00
|
|
|
|
|
|
|
COMMON += \
|
|
|
|
btstack_run_loop_windows.c \
|
|
|
|
hci_transport_h4.c \
|
|
|
|
btstack_uart_block_windows.c \
|
|
|
|
le_device_db_tlv.c \
|
|
|
|
hci_585.c \
|
2022-02-03 22:25:38 +01:00
|
|
|
btstack_chipset_da145xx.c \
|
2020-07-16 17:50:40 +02:00
|
|
|
rijndael.c \
|
|
|
|
|
|
|
|
# examples
|
2020-09-11 16:55:08 +02:00
|
|
|
CLASSIC =
|
2020-07-16 17:50:40 +02:00
|
|
|
include ${BTSTACK_ROOT}/example/Makefile.inc
|
|
|
|
|
|
|
|
# CC = gcc-fsf-4.9
|
|
|
|
CFLAGS += -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Werror
|
|
|
|
|
|
|
|
CFLAGS += -I${BTSTACK_ROOT}/platform/posix \
|
|
|
|
-I${BTSTACK_ROOT}/platform/windows \
|
|
|
|
-I${BTSTACK_ROOT}/platform/embedded \
|
2022-02-03 22:25:38 +01:00
|
|
|
-I$(BTSTACK_ROOT)/chipset/da145xx \
|
2020-07-16 17:50:40 +02:00
|
|
|
-I${BTSTACK_ROOT}/3rd-party/rijndael \
|
|
|
|
-I${BTSTACK_ROOT}/3rd-party/tinydir
|
|
|
|
|
|
|
|
VPATH += ${BTSTACK_ROOT}/3rd-party/rijndael
|
|
|
|
|
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/windows
|
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
|
|
|
|
2022-02-03 22:25:38 +01:00
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/da145xx
|
2020-07-16 17:50:40 +02:00
|
|
|
|
|
|
|
EXAMPLES = ${EXAMPLES_GENERAL} ${EXAMPLES_LE_ONLY}
|
|
|
|
|
|
|
|
all: ${EXAMPLES}
|