From b91269308c9978942723cebf2a01c3ba7cd58bb3 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 26 Apr 2018 15:50:35 +0200 Subject: [PATCH] test/pts: fix builds --- test/pts/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/pts/Makefile b/test/pts/Makefile index 273777cc1..1a52ae2a3 100644 --- a/test/pts/Makefile +++ b/test/pts/Makefile @@ -150,6 +150,9 @@ ble_peripheral_test.h: ble_peripheral_test.gatt ble_central_test.h: ble_central_test.gatt python ${BTSTACK_ROOT}/tool/compile_gatt.py $< $@ +ble_peripheral_test: ble_peripheral_test.h ${CORE_OBJ} ${COMMON_OBJ} ${ATT_OBJ} ${GATT_SERVER_OBJ} ${SM_OBJ} ble_peripheral_test.o + ${CC} $(filter-out ble_peripheral_test.h,$^) ${CFLAGS} ${LDFLAGS} -o $@ + ble_central_test: ble_central_test.h ${CORE_OBJ} ${COMMON_OBJ} ${SM_OBJ} ${ATT_OBJ} ${GATT_SERVER_OBJ} ${GATT_CLIENT_OBJ} ad_parser.o ble_central_test.c ${CC} $(filter-out ble_central_test.h,$^) ${CFLAGS} ${LDFLAGS} -o $@