59 lines
1.5 KiB
Makefile
Raw Normal View History

CC = g++
# Requirements: cpputest.github.io
BTSTACK_ROOT = ../..
CFLAGS = -DUNIT_TEST -x c++ -g -Wall -Wnarrowing -Wconversion-null -I. -I../
CFLAGS += -I${BTSTACK_ROOT}/src
CFLAGS += -I${BTSTACK_ROOT}/test/mock
CFLAGS += -I${BTSTACK_ROOT}/3rd-party/rijndael
# CFLAGS += -fprofile-arcs -ftest-coverage
LDFLAGS += -lCppUTest -lCppUTestExt
VPATH += ${BTSTACK_ROOT}/src
VPATH += ${BTSTACK_ROOT}/src/ble
VPATH += ${BTSTACK_ROOT}/src/ble/gatt-service
VPATH += ${BTSTACK_ROOT}/platform/posix
VPATH += ${BTSTACK_ROOT}/3rd-party/rijndael
VPATH += ${BTSTACK_ROOT}/test/mock
COMMON = \
ad_parser.c \
att_db.c \
battery_service_server.c \
btstack_linked_list.c \
btstack_memory.c \
btstack_memory_pool.c \
btstack_util.c \
cycling_power_service_server.c \
cycling_speed_and_cadence_service_server.c \
device_information_service_server.c \
hci_dump.c \
heart_rate_service_server.c \
hids_device.c \
mock_att_server.c \
nordic_spp_service_server.c \
ublox_spp_service_server.c \
COMMON_OBJ = $(COMMON:.c=.o)
all: battery_service_test
battery_service_profile.h: battery_service_profile.gatt
python ${BTSTACK_ROOT}/tool/compile_gatt.py $< $@
battery_service_test: battery_service_profile.h ${COMMON_OBJ} battery_service_test.o
${CC} ${COMMON_OBJ} battery_service_test.o ${CFLAGS} ${LDFLAGS} -o $@
test: all
./battery_service_test
clean:
rm -f battery_service_test battery_service_profile.h
rm -f *.o
rm -rf *.dSYM
rm -f *.gcno *.gcda