btstack/test/Makefile

37 lines
497 B
Makefile
Raw Normal View History

# Makefile to build and run all tests
SUBDIRS = \
2015-07-02 08:46:45 +00:00
att_db \
ble_client \
des_iterator \
gatt_client \
2015-08-20 15:06:54 +00:00
hfp \
linked_list \
remote_device_db \
sdp_client \
2015-07-16 21:28:09 +00:00
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