2014-11-15 16:36:16 +00:00
|
|
|
# Makefile for libusb based examples
|
2013-06-10 10:43:53 +00:00
|
|
|
BTSTACK_ROOT = ../..
|
2014-09-04 19:24:00 +00:00
|
|
|
POSIX_ROOT= ${BTSTACK_ROOT}/platforms/posix
|
2013-06-10 10:43:53 +00:00
|
|
|
|
2014-11-15 16:36:16 +00:00
|
|
|
CORE += main.c
|
2015-02-12 23:06:08 +00:00
|
|
|
COMMON += hci_transport_h2_libusb.c run_loop_posix.c remote_device_db_fs.c
|
2014-11-15 16:50:55 +00:00
|
|
|
|
2014-11-15 16:36:16 +00:00
|
|
|
|
|
|
|
include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
|
2014-11-14 16:11:06 +00:00
|
|
|
|
2014-11-15 16:36:16 +00:00
|
|
|
CFLAGS += -g -Wall
|
|
|
|
# CFLAGS += -Werror
|
2014-11-14 16:11:06 +00:00
|
|
|
|
2014-11-15 16:36:16 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platforms/posix/src
|
2014-09-10 21:03:38 +00:00
|
|
|
|
2014-11-11 23:03:03 +00:00
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
LDFLAGS += -lws2_32
|
2014-11-12 10:18:05 +00:00
|
|
|
# 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)
|
2014-11-11 23:03:03 +00:00
|
|
|
endif
|
2013-06-10 10:43:53 +00:00
|
|
|
|
2014-11-15 16:36:16 +00:00
|
|
|
# Command Line examples require porting to win32, so only build on other = unix-ish hosts
|
|
|
|
ifneq ($(OS),Windows_NT)
|
|
|
|
EXAMPLES += ${EXAMPLES_CLI}
|
|
|
|
endif
|
2013-06-10 10:43:53 +00:00
|
|
|
|
2014-11-14 16:11:06 +00:00
|
|
|
all: ${BTSTACK_ROOT}/include/btstack/version.h ${EXAMPLES}
|