2015-10-19 21:51:53 +00:00
|
|
|
# Makefile for libusb based examples
|
2019-04-15 12:34:59 +00:00
|
|
|
BTSTACK_ROOT ?= ../..
|
2015-10-19 21:51:53 +00:00
|
|
|
|
2016-01-22 19:55:43 +00:00
|
|
|
CORE += \
|
2016-11-14 16:40:06 +00:00
|
|
|
btstack_chipset_bcm.c \
|
2016-01-22 19:55:43 +00:00
|
|
|
btstack_chipset_cc256x.c \
|
|
|
|
btstack_chipset_csr.c \
|
|
|
|
btstack_chipset_em9301.c \
|
|
|
|
btstack_chipset_stlc2500d.c \
|
|
|
|
btstack_chipset_tc3566x.c \
|
2024-08-08 14:36:02 +00:00
|
|
|
btstack_chipset_zephyr.c \
|
2019-10-09 10:15:05 +00:00
|
|
|
btstack_link_key_db_tlv.c \
|
2016-04-13 11:58:15 +00:00
|
|
|
btstack_run_loop_posix.c \
|
2021-02-18 10:18:16 +00:00
|
|
|
btstack_audio.c \
|
|
|
|
btstack_audio_portaudio.c \
|
2018-07-29 08:29:48 +00:00
|
|
|
btstack_tlv_posix.c \
|
2021-03-02 14:54:23 +00:00
|
|
|
btstack_uart_posix.c \
|
2021-03-09 15:39:03 +00:00
|
|
|
hci_dump_posix_fs.c \
|
2016-04-22 14:23:23 +00:00
|
|
|
hci_transport_h4.c \
|
2019-10-09 10:15:05 +00:00
|
|
|
le_device_db_tlv.c \
|
2020-01-16 14:29:48 +00:00
|
|
|
rijndael.c \
|
2016-04-13 11:58:15 +00:00
|
|
|
main.c \
|
2017-05-25 20:26:15 +00:00
|
|
|
btstack_stdin_posix.c \
|
2021-07-01 20:12:30 +00:00
|
|
|
btstack_signal.c \
|
2017-06-02 12:32:04 +00:00
|
|
|
wav_util.c \
|
2018-10-16 14:03:51 +00:00
|
|
|
0000000_META_hci_patches_v7.c \
|
2021-09-23 09:42:08 +00:00
|
|
|
bluetooth_init_cc2564C_1.5.c \
|
|
|
|
# bluetooth_init_cc2564B_1.8_BT_Spec_4.1.c \
|
2017-04-01 14:18:24 +00:00
|
|
|
# bluetooth_init_cc2564_2.14.c \
|
2021-09-23 09:42:08 +00:00
|
|
|
|
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
|
2016-02-19 08:46:37 +00:00
|
|
|
include ${BTSTACK_ROOT}/example/Makefile.inc
|
2015-10-19 21:51:53 +00:00
|
|
|
|
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-11-17 13:59:45 +00:00
|
|
|
# fetch Broadcom init scripts
|
|
|
|
include ${BTSTACK_ROOT}/chipset/bcm/Makefile.inc
|
|
|
|
|
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 \
|
2024-08-08 14:36:02 +00:00
|
|
|
-I$(BTSTACK_ROOT)/chipset/zephyr \
|
2020-01-16 14:29:48 +00:00
|
|
|
-I${BTSTACK_ROOT}/3rd-party/rijndael \
|
2018-02-05 16:56:29 +00:00
|
|
|
-I${BTSTACK_ROOT}/3rd-party/tinydir
|
2015-10-19 21:51:53 +00:00
|
|
|
|
2020-01-16 14:29:48 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/3rd-party/rijndael
|
|
|
|
|
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
|
2024-08-08 14:36:02 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/zephyr
|
2016-01-22 19:55:43 +00:00
|
|
|
|
2021-07-01 20:12:30 +00:00
|
|
|
# add pthread for ctrl-c signal handler
|
|
|
|
LDFLAGS += -lpthread
|
|
|
|
|
2019-06-21 08:45:17 +00:00
|
|
|
EXAMPLES = ${EXAMPLES_GENERAL} ${EXAMPLES_CLASSIC_ONLY} ${EXAMPLES_LE_ONLY} ${EXAMPLES_DUAL_MODE}
|
2019-06-07 16:05:36 +00:00
|
|
|
EXAMPLES += pan_lwip_http_server
|
2015-10-19 21:51:53 +00:00
|
|
|
|
2016-05-23 16:03:11 +00:00
|
|
|
# use pkg-config for portaudio
|
|
|
|
# CFLAGS += $(shell pkg-config portaudio-2.0 --cflags) -DHAVE_PORTAUDIO
|
|
|
|
# LDFLAGS += $(shell pkg-config portaudio-2.0 --libs)
|
|
|
|
# hard coded flags for portaudio in /usr/local/lib
|
|
|
|
# CFLAGS += -I/usr/local/include -DHAVE_PORTAUDIO
|
|
|
|
# LDFLAGS += -L/sw/lib -lportaudio -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit -Wl,-framework,Carbon
|
|
|
|
|
2016-11-17 13:59:45 +00:00
|
|
|
all: BCM43430A1.hcd ${EXAMPLES}
|
|
|
|
|