btstack/test/gatt_client/Makefile

51 lines
1.2 KiB
Makefile

CC = g++
# Requirements: cpputest.github.io
BTSTACK_ROOT = ../..
CFLAGS = -DUNIT_TEST -x c++ -g -Wall -I. -I../ -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/ble -I${BTSTACK_ROOT}/include
LDFLAGS += -lCppUTest -lCppUTestExt
VPATH += ${BTSTACK_ROOT}/src
VPATH += ${BTSTACK_ROOT}/src/ble
VPATH += ${BTSTACK_ROOT}/platform/posix/src
COMMON = \
ad_parser.c \
att.c \
att_dispatch.c \
bk_linked_list.c \
btstack_memory.c \
gatt_client.c \
hci_cmds.c \
hci_dump.c \
le_device_db_memory.c \
memory_pool.c \
mock.c \
utils.c \
COMMON_OBJ = $(COMMON:.c=.o)
all: gatt_client_test le_central
# compile .ble description
profile.h: profile.gatt
python ${BTSTACK_ROOT}/tool/compile-gatt.py $< $@
gatt_client_test: profile.h ${CORE_OBJ} ${COMMON_OBJ} gatt_client_test.o expected_results.h
${CC} ${CORE_OBJ} ${COMMON_OBJ} gatt_client_test.o ${CFLAGS} ${LDFLAGS} -o $@
le_central: ${CORE_OBJ} ${COMMON_OBJ} le_central.o
${CC} ${CORE_OBJ} ${COMMON_OBJ} le_central.o ${CFLAGS} ${LDFLAGS} -o $@
test: all
./gatt_client_test
./le_central
clean:
rm -f gatt_client_test le_central
rm -f *.o
rm -rf *.dSYM