2016-01-08 15:23:50 +00:00
|
|
|
# Makefile for libusb based examples
|
|
|
|
BTSTACK_ROOT = ../..
|
|
|
|
|
|
|
|
CORE += main.c stdin_support.c bt_control_tc3566x.c
|
|
|
|
|
2016-01-20 14:38:37 +00:00
|
|
|
COMMON += hci_transport_h4.c btstack_run_loop_posix.c remote_device_db_fs.c
|
2016-01-08 15:23:50 +00:00
|
|
|
|
|
|
|
include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
|
|
|
|
|
|
|
|
CFLAGS += -I$(BTSTACK_ROOT)/chipset-tc3566x
|
|
|
|
|
|
|
|
# CC = gcc-fsf-4.9
|
2016-01-20 13:20:47 +00:00
|
|
|
CFLAGS += -g -Wall \
|
|
|
|
-I$(BTSTACK_ROOT)/platform/embedded \
|
|
|
|
-I$(BTSTACK_ROOT)/platform/posix
|
2016-01-08 15:23:50 +00:00
|
|
|
|
2016-01-20 13:20:47 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
2016-01-08 15:23:50 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset-tc3566x
|
|
|
|
|
|
|
|
# Command Line examples require porting to win32, so only build on other unix-ish hosts
|
|
|
|
ifneq ($(OS),Windows_NT)
|
|
|
|
EXAMPLES += ${EXAMPLES_CLI}
|
|
|
|
endif
|
|
|
|
|
|
|
|
# no BLE here
|
|
|
|
EXAMPLES:= $(filter-out ${EXAMPLES_USING_LE},$(EXAMPLES))
|
|
|
|
|
2016-01-20 15:11:27 +00:00
|
|
|
all: ${BTSTACK_ROOT}/include/btstack/btstack_version.h ${EXAMPLES}
|