2015-04-17 12:54:32 +00:00
|
|
|
# Makefile for libusb based examples
|
|
|
|
BTSTACK_ROOT = ../..
|
|
|
|
|
2015-04-17 14:20:56 +00:00
|
|
|
CORE += main.c stdin_support.c bt_control_stlc2500d.c
|
2015-04-17 12:54:32 +00:00
|
|
|
|
2016-01-20 14:38:37 +00:00
|
|
|
COMMON += hci_transport_h4_posix.c btstack_run_loop_posix.c remote_device_db_fs.c
|
2015-04-17 12:54:32 +00:00
|
|
|
|
|
|
|
include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
|
|
|
|
|
2015-04-17 14:20:56 +00:00
|
|
|
|
2015-10-15 14:58:46 +00:00
|
|
|
CFLAGS += -I$(BTSTACK_ROOT)/chipset/stlc2500d
|
2015-04-17 12:54:32 +00:00
|
|
|
|
2016-01-20 13:20:47 +00:00
|
|
|
CFLAGS += -g -Wall \
|
|
|
|
-I$(BTSTACK_ROOT)/platform/embedded \
|
|
|
|
-I$(BTSTACK_ROOT)/platform/posix
|
2015-04-17 12:54:32 +00:00
|
|
|
|
2016-01-20 13:20:47 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
2015-11-13 14:04:41 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/embedded
|
2015-10-15 14:58:46 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/chipset/stlc2500d
|
2015-04-17 12:54:32 +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}
|
|
|
|
endif
|
|
|
|
|
2015-04-17 14:20:56 +00:00
|
|
|
# no BLE here
|
|
|
|
EXAMPLES:= $(filter-out ${EXAMPLES_USING_LE},$(EXAMPLES))
|
|
|
|
|
2016-01-20 15:11:27 +00:00
|
|
|
all: ${BTSTACK_ROOT}/src/btstack_version.h ${EXAMPLES}
|