mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-25 09:35:42 +00:00
30 lines
783 B
Makefile
30 lines
783 B
Makefile
# Makefile for libusb based examples
|
|
BTSTACK_ROOT = ../..
|
|
POSIX_ROOT= ${BTSTACK_ROOT}/platforms/posix
|
|
|
|
CORE += main.c stdin_support.c bt_control_tc3566x.c
|
|
|
|
COMMON += hci_transport_h4.c run_loop_posix.c remote_device_db_fs.c
|
|
|
|
include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
|
|
|
|
CFLAGS += -I$(BTSTACK_ROOT)/chipset-tc3566x
|
|
|
|
# CC = gcc-fsf-4.9
|
|
CFLAGS += -g -Wall
|
|
# CFLAGS += -Werror
|
|
|
|
VPATH += ${BTSTACK_ROOT}/platforms/posix/src
|
|
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}
|
|
CFLAGS += -I${POSIX_ROOT}/src
|
|
endif
|
|
|
|
# no BLE here
|
|
EXAMPLES:= $(filter-out ${EXAMPLES_USING_LE},$(EXAMPLES))
|
|
|
|
all: ${BTSTACK_ROOT}/include/btstack/version.h ${EXAMPLES}
|