btstack/test/Makefile

40 lines
529 B
Makefile

# Makefile to build and run all tests
SUBDIRS = \
att_db \
avdtp \
avrcp \
ble_client \
btstack_link_key_db \
des_iterator \
gatt_client \
hfp \
linked_list \
sdp_client \
security_manager \
# maths \
subdirs:
echo Building all tests
@set -e; \
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir; \
done
clean:
echo Clean all test
@set -e; \
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir clean; \
done
test:
echo Run all test
@set -e; \
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir test; \
done