2015-10-19 21:51:53 +00:00
|
|
|
# Makefile for libusb based examples
|
|
|
|
BTSTACK_ROOT = ../..
|
|
|
|
|
|
|
|
CORE += main.c stdin_support.c
|
|
|
|
|
2016-01-22 19:55:43 +00:00
|
|
|
COMMON += \
|
|
|
|
hci_transport_h4_posix.c \
|
|
|
|
btstack_run_loop_posix.c \
|
|
|
|
remote_device_db_fs.c \
|
|
|
|
|
|
|
|
CORE += \
|
|
|
|
bluetooth_init_cc2564B_1.2_BT_Spec_4.1.c \
|
|
|
|
btstack_chipset_cc256x.c \
|
|
|
|
btstack_chipset_csr.c \
|
|
|
|
btstack_chipset_em9301.c \
|
|
|
|
btstack_chipset_stlc2500d.c \
|
|
|
|
btstack_chipset_tc3566x.c \
|
|
|
|
# btstack_chipset_bcm.c \
|
|
|
|
|
2016-01-22 20:07:13 +00:00
|
|
|
# TI-WL183x requires TIInit_11.8.32.c
|
|
|
|
|
2016-01-22 19:55:43 +00:00
|
|
|
# examples
|
2015-10-19 21:51:53 +00:00
|
|
|
include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
|
|
|
|
|
2016-01-22 19:55:43 +00:00
|
|
|
# fetch and convert TI init scripts
|
|
|
|
include ${BTSTACK_ROOT}/chipset/cc256x/Makefile.inc
|
2016-01-20 13:20:47 +00:00
|
|
|
|
2016-01-22 19:55:43 +00:00
|
|
|
CFLAGS += -g -Wall -Werror \
|
|
|
|
-I$(BTSTACK_ROOT)/platform/embedded \
|
|
|
|
-I$(BTSTACK_ROOT)/platform/posix \
|
|
|
|
-I$(BTSTACK_ROOT)/chipset/bcm \
|
|
|
|
-I$(BTSTACK_ROOT)/chipset/cc256x \
|
|
|
|
-I$(BTSTACK_ROOT)/chipset/csr \
|
|
|
|
-I$(BTSTACK_ROOT)/chipset/em9301 \
|
|
|
|
-I$(BTSTACK_ROOT)/chipset/stlc2500d \
|
|
|
|
-I$(BTSTACK_ROOT)/chipset/tc3566x \
|
2015-10-19 21:51:53 +00:00
|
|
|
|
2016-01-20 13:20:47 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
2015-11-13 14:04:41 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/embedded
|
2015-10-19 21:51:53 +00:00
|
|
|
|
2016-01-22 19:55:43 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/bcm
|
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/cc256x
|
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/csr
|
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/em9301
|
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/stlc2500d
|
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/tc3566x
|
|
|
|
|
2015-10-19 21:51:53 +00:00
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
LDFLAGS += -lws2_32
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Command Line examples require porting to win32, so only build on other unix-ish hosts
|
|
|
|
ifneq ($(OS),Windows_NT)
|
|
|
|
EXAMPLES += ${EXAMPLES_CLI}
|
|
|
|
endif
|
|
|
|
|
2016-01-20 15:11:27 +00:00
|
|
|
all: ${BTSTACK_ROOT}/src/btstack_version.h ${EXAMPLES}
|