2016-01-14 20:56:10 +00:00
|
|
|
# Makefile for libusb based examples
|
|
|
|
BTSTACK_ROOT = ../..
|
2016-01-17 21:12:19 +00:00
|
|
|
POSIX_ROOT= ${BTSTACK_ROOT}/platform/posix
|
2016-01-14 20:56:10 +00:00
|
|
|
|
|
|
|
CORE += main.c stdin_support.c bt_control_csr.c
|
|
|
|
|
|
|
|
COMMON += hci_transport_h4.c run_loop_posix.c remote_device_db_fs.c
|
|
|
|
|
|
|
|
include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
|
|
|
|
|
2016-01-17 21:12:19 +00:00
|
|
|
CFLAGS += -I$(BTSTACK_ROOT)/chipset/csr \
|
|
|
|
-I$(BTSTACK_ROOT)/platform/embedded
|
2016-01-14 20:56:10 +00:00
|
|
|
|
|
|
|
CFLAGS += -g -Wall
|
|
|
|
|
|
|
|
#
|
|
|
|
# CFLAGS += -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Werror
|
|
|
|
|
2016-01-17 21:12:19 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix/src
|
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/csr
|
2016-01-14 20:56:10 +00:00
|
|
|
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
LDFLAGS += -lws2_32
|
|
|
|
# assume libusb was installed into /usr/local
|
|
|
|
CFLAGS += -I/usr/local/include/libusb-1.0
|
|
|
|
LDFLAGS += -L/usr/local/lib -lusb-1.0
|
|
|
|
else
|
|
|
|
# use pkg-config
|
|
|
|
CFLAGS += $(shell pkg-config libusb-1.0 --cflags)
|
|
|
|
LDFLAGS += $(shell pkg-config libusb-1.0 --libs)
|
|
|
|
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${POSIX_ROOT}/src
|
|
|
|
endif
|
|
|
|
|
2016-01-17 21:12:19 +00:00
|
|
|
all: ${BTSTACK_ROOT}/src/version.h ${EXAMPLES}
|