mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-07 09:55:45 +00:00
32 lines
865 B
Makefile
32 lines
865 B
Makefile
# Makefile for libusb based examples
|
|
BTSTACK_ROOT = ../..
|
|
|
|
CORE += main.c stdin_support.c
|
|
|
|
COMMON += hci_transport_h2_libusb.c run_loop_posix.c remote_device_db_fs.c
|
|
|
|
include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
|
|
|
|
# CC = gcc-fsf-4.9
|
|
CFLAGS += -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Werror
|
|
# CFLAGS += -Werror
|
|
|
|
CFLAGS += -I${BTSTACK_ROOT}/platform/posix/src \
|
|
-I${BTSTACK_ROOT}/platform/embedded
|
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/embedded
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix/src
|
|
|
|
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
|
|
|
|
all: ${BTSTACK_ROOT}/src/version.h ${EXAMPLES}
|