2014-11-15 16:36:16 +00:00
|
|
|
# Makefile for libusb based examples
|
2013-06-10 10:43:53 +00:00
|
|
|
BTSTACK_ROOT = ../..
|
|
|
|
|
2017-10-23 14:38:04 +00:00
|
|
|
CORE += main.c btstack_stdin_posix.c btstack_tlv_posix.c
|
2015-03-06 11:52:55 +00:00
|
|
|
|
2017-11-07 15:42:06 +00:00
|
|
|
COMMON += hci_transport_h2_libusb.c btstack_run_loop_posix.c le_device_db_fs.c btstack_link_key_db_fs.c wav_util.c btstack_network_posix.c
|
2014-11-15 16:50:55 +00:00
|
|
|
|
2016-02-19 08:46:37 +00:00
|
|
|
include ${BTSTACK_ROOT}/example/Makefile.inc
|
2015-06-12 20:16:57 +00:00
|
|
|
|
2017-08-08 16:03:40 +00:00
|
|
|
CFLAGS += -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Werror -Wunused-parameter -Wredundant-decls -Wsign-compare
|
2014-11-15 16:36:16 +00:00
|
|
|
# CFLAGS += -Werror
|
2014-11-14 16:11:06 +00:00
|
|
|
|
2016-01-20 13:20:47 +00:00
|
|
|
CFLAGS += -I${BTSTACK_ROOT}/platform/posix \
|
2015-11-13 14:04:41 +00:00
|
|
|
-I${BTSTACK_ROOT}/platform/embedded
|
|
|
|
|
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/embedded
|
2016-01-20 13:20:47 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
2016-09-28 07:39:37 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/libusb
|
2014-09-10 21:03:38 +00:00
|
|
|
|
2014-11-12 10:18:05 +00:00
|
|
|
# use pkg-config
|
|
|
|
CFLAGS += $(shell pkg-config libusb-1.0 --cflags)
|
|
|
|
LDFLAGS += $(shell pkg-config libusb-1.0 --libs)
|
2013-06-10 10:43:53 +00:00
|
|
|
|
2016-05-23 16:03:11 +00:00
|
|
|
# use pkg-config for portaudio
|
2017-08-16 07:53:45 +00:00
|
|
|
# CFLAGS += $(shell pkg-config portaudio-2.0 --cflags) -DHAVE_PORTAUDIO
|
|
|
|
# LDFLAGS += $(shell pkg-config portaudio-2.0 --libs)
|
2017-08-11 10:21:31 +00:00
|
|
|
|
2016-05-23 16:03:11 +00:00
|
|
|
# hard coded flags for portaudio in /usr/local/lib
|
|
|
|
# CFLAGS += -I/usr/local/include -DHAVE_PORTAUDIO
|
|
|
|
# LDFLAGS += -L/sw/lib -lportaudio -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit -Wl,-framework,Carbon
|
|
|
|
|
2017-06-12 10:29:55 +00:00
|
|
|
clean_src:
|
|
|
|
rm -rf * ${BTSTACK_ROOT}/src/*.o
|
|
|
|
rm -rf * ${BTSTACK_ROOT}/src/classic/*.o
|
|
|
|
rm -rf * ${BTSTACK_ROOT}/src/ble/*.o
|
|
|
|
rm -rf * ${BTSTACK_ROOT}/platform/embedded/*.o
|
|
|
|
|
2016-01-31 19:31:52 +00:00
|
|
|
all: ${EXAMPLES}
|
2017-06-12 10:29:55 +00:00
|
|
|
|