mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-06 07:00:59 +00:00
35 lines
757 B
Makefile
35 lines
757 B
Makefile
# Makefile for posix-h4 based examples
|
|
BTSTACK_ROOT ?= ../..
|
|
|
|
CORE += \
|
|
btstack_run_loop_posix.c \
|
|
btstack_tlv_posix.c \
|
|
btstack_uart_posix.c \
|
|
hci_dump_posix_fs.c \
|
|
hci_transport_h4.c \
|
|
le_device_db_tlv.c \
|
|
main.c \
|
|
btstack_stdin_posix.c \
|
|
btstack_signal.c \
|
|
btstack_chipset_zephyr.c \
|
|
|
|
# examples
|
|
CLASSIC =
|
|
include ${BTSTACK_ROOT}/example/Makefile.inc
|
|
|
|
CFLAGS += -g -Wall -Werror \
|
|
-I$(BTSTACK_ROOT)/platform/embedded \
|
|
-I$(BTSTACK_ROOT)/platform/posix \
|
|
-I$(BTSTACK_ROOT)/chipset/zephyr \
|
|
-I${BTSTACK_ROOT}/3rd-party/tinydir
|
|
|
|
# add pthread for ctrl-c signal handler
|
|
LDFLAGS += -lpthread
|
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
|
VPATH += ${BTSTACK_ROOT}/platform/embedded
|
|
VPATH += ${BTSTACK_ROOT}/chipset/zephyr
|
|
|
|
all: ${EXAMPLES_LE_ONLY}
|
|
|