2014-11-15 16:36:16 +00:00
|
|
|
# Makefile for libusb based examples
|
2013-06-10 10:43:53 +00:00
|
|
|
BTSTACK_ROOT = ../..
|
|
|
|
|
2015-03-06 11:52:55 +00:00
|
|
|
CORE += main.c stdin_support.c
|
|
|
|
|
2016-02-02 21:57:10 +01:00
|
|
|
COMMON += hci_transport_h2_libusb.c btstack_run_loop_posix.c btstack_link_key_db_fs.c
|
2014-11-15 16:50:55 +00:00
|
|
|
|
2016-02-19 09:46:37 +01:00
|
|
|
include ${BTSTACK_ROOT}/example/Makefile.inc
|
2015-06-12 22:16:57 +02:00
|
|
|
|
2015-03-02 21:40:56 +00:00
|
|
|
# CC = gcc-fsf-4.9
|
2015-11-06 20:53:12 +01:00
|
|
|
CFLAGS += -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Werror
|
2014-11-15 16:36:16 +00:00
|
|
|
# CFLAGS += -Werror
|
2014-11-14 16:11:06 +00:00
|
|
|
|
2016-01-20 14:20:47 +01:00
|
|
|
CFLAGS += -I${BTSTACK_ROOT}/platform/posix \
|
2015-11-13 15:04:41 +01:00
|
|
|
-I${BTSTACK_ROOT}/platform/embedded
|
|
|
|
|
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/embedded
|
2016-01-20 14:20:47 +01:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
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
|
|
|
|
2016-01-31 20:31:52 +01:00
|
|
|
all: ${EXAMPLES}
|