btstack/platforms/libusb/Makefile

30 lines
778 B
Makefile
Raw Normal View History

2014-11-15 16:36:16 +00:00
# Makefile for libusb based examples
BTSTACK_ROOT = ../..
POSIX_ROOT= ${BTSTACK_ROOT}/platforms/posix
2015-03-06 11:52:55 +00:00
CORE += main.c stdin_support.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:36:16 +00:00
include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
# CC = gcc-fsf-4.9
CFLAGS += -g -Wall -Wmissing-prototypes -Werror
2014-11-15 16:36:16 +00:00
# CFLAGS += -Werror
2015-06-14 20:31:37 +00:00
CFLAGS += -I${POSIX_ROOT}/src
2014-11-15 16:36:16 +00:00
VPATH += ${BTSTACK_ROOT}/platforms/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
2015-10-15 14:33:34 +00:00
all: ${BTSTACK_ROOT}/src/version.h ${EXAMPLES}