BTSTACK_ROOT = ../.. CORE += main.c btstack_stdin_posix.c btstack_tlv_posix.c COMMON += hci_transport_h2_libusb.c btstack_run_loop_posix.c le_device_db_fs.c btstack_link_key_db_fs.c include ${BTSTACK_ROOT}/example/Makefile.inc CFLAGS += -g -std=c99 -Wall -Wmissing-prototypes -Wstrict-prototypes -Wshadow -Wunused-parameter -Wredundant-decls -Wsign-compare # CFLAGS += -Werror # CFLAGS += -pedantic # only LLVM # CFLAGS += -Wnewline-eof # CFLAGS += -Wc11-extensions # CFLAGS += -Wgnu-empty-initializer CFLAGS += -I${BTSTACK_ROOT}/platform/posix \ -I${BTSTACK_ROOT}/platform/embedded \ -I${BTSTACK_ROOT}/3rd-party/tinydir VPATH += ${BTSTACK_ROOT}/platform/embedded VPATH += ${BTSTACK_ROOT}/platform/posix VPATH += ${BTSTACK_ROOT}/platform/libusb VPATH += ${BTSTACK_ROOT}/port/libusb # use pkg-config CFLAGS += $(shell pkg-config libusb-1.0 --cflags) LDFLAGS += $(shell pkg-config libusb-1.0 --libs) all: map_client_test map_client_test: ${CORE_OBJ} ${COMMON_OBJ} ${CLASSIC_OBJ} ${SDP_CLIENT} ${SDP_SERVER} md5.o obex_iterator.o goep_client.o yxml.o map_client.o map_server.o map_client_test.c ${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@ test: all ./map_client_test clean: rm -f map_client_test rm -f *.o rm -rf *.dSYM