mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-10 19:05:11 +00:00
a4419cc8cf
test/att_db_util: add test for calc gatt database hash
46 lines
834 B
Makefile
46 lines
834 B
Makefile
CC = g++
|
|
|
|
# Requirements: cpputest.github.io
|
|
|
|
BTSTACK_ROOT = ../..
|
|
|
|
CFLAGS = -g -Wall \
|
|
-I. \
|
|
-I${BTSTACK_ROOT}/src
|
|
CFLAGS += -I${BTSTACK_ROOT}/3rd-party/rijndael
|
|
|
|
CFLAGS += -fprofile-arcs -ftest-coverage -fsanitize=address
|
|
|
|
LDFLAGS += -lCppUTest -lCppUTestExt
|
|
|
|
VPATH += ${BTSTACK_ROOT}/3rd-party/rijndael
|
|
VPATH += ${BTSTACK_ROOT}/src
|
|
VPATH += ${BTSTACK_ROOT}/src/ble
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
|
|
|
COMMON = \
|
|
btstack_util.c \
|
|
hci_dump.c \
|
|
att_db_util.c \
|
|
btstack_crypto.c \
|
|
btstack_linked_list.c \
|
|
hci_cmd.c \
|
|
rijndael.c
|
|
|
|
COMMON_OBJ = $(COMMON:.c=.o)
|
|
|
|
all: att_db_util_test
|
|
|
|
att_db_util_test: ${COMMON_OBJ} att_db_util_test.c
|
|
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
|
|
|
|
test: all
|
|
./att_db_util_test
|
|
|
|
clean:
|
|
rm -f att_db_util_test
|
|
rm -f *.o
|
|
rm -rf *.dSYM
|
|
rm -f *.gcno *.gcda
|
|
|