btstack/test/Makefile
2015-10-12 10:59:06 +02:00

37 lines
497 B
Makefile

# Makefile to build and run all tests
SUBDIRS = \
att_db \
ble_client \
des_iterator \
gatt_client \
hfp \
linked_list \
remote_device_db \
sdp_client \
security_manager \
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