mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-29 09:26:08 +00:00
27 lines
673 B
Makefile
27 lines
673 B
Makefile
# Makefile for libusb based examples
|
|
BTSTACK_ROOT = ../..
|
|
|
|
CORE += main.c stdin_support.c
|
|
|
|
COMMON += hci_transport_h4.c run_loop_posix.c remote_device_db_fs.c
|
|
|
|
include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
|
|
|
|
CFLAGS += -g -Wall -I$(BTSTACK_ROOT)/platform/embedded
|
|
# CFLAGS += -Werror
|
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix/src
|
|
VPATH += ${BTSTACK_ROOT}/platform/embedded
|
|
|
|
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}
|
|
CFLAGS += -I${BTSTACK_ROOT}/platform/posix/src
|
|
endif
|
|
|
|
all: ${BTSTACK_ROOT}/src/version.h ${EXAMPLES}
|