2015-05-23 21:35:37 +00:00
|
|
|
CC = g++
|
|
|
|
|
2015-07-03 09:18:03 +00:00
|
|
|
# Requirements: cpputest.github.io
|
2015-05-23 21:35:37 +00:00
|
|
|
|
|
|
|
BTSTACK_ROOT = ../..
|
|
|
|
|
2015-11-13 14:04:41 +00:00
|
|
|
CFLAGS = -g -Wall \
|
|
|
|
-I.. \
|
|
|
|
-I${BTSTACK_ROOT}/example/libusb \
|
|
|
|
-I${BTSTACK_ROOT}/src
|
|
|
|
|
2015-05-23 21:35:37 +00:00
|
|
|
LDFLAGS += -lCppUTest -lCppUTestExt
|
|
|
|
|
|
|
|
VPATH += ${BTSTACK_ROOT}/src
|
2015-11-13 14:04:41 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/src/ble
|
2016-01-20 13:20:47 +00:00
|
|
|
VPATH += ${BTSTACK_ROOT}/platform/posix
|
2015-05-23 21:35:37 +00:00
|
|
|
|
|
|
|
COMMON = \
|
2016-01-20 15:10:07 +00:00
|
|
|
btstack_util.c \
|
2015-10-11 21:31:11 +00:00
|
|
|
hci_dump.c \
|
2015-05-23 21:35:37 +00:00
|
|
|
att_db_util.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 $@
|
|
|
|
|
2015-07-03 09:18:03 +00:00
|
|
|
test: all
|
2015-05-23 21:35:37 +00:00
|
|
|
./att_db_util_test
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f att_db_util_test
|
|
|
|
rm -f *.o
|
|
|
|
rm -rf *.dSYM
|
|
|
|
|