bl_iot_sdk/Makefile
Saket Sinha 0c49fe4b3e Add support for toplevel Makefile
Add toplevel Makefile with clean support.
Updated Readme for building details.
2020-11-11 10:04:25 +01:00

12 lines
228 B
Makefile

CODE_DIR = customer_app
.PHONY: app
app:
$(MAKE) -C $(CODE_DIR)
clean:
find . -name build_out|xargs rm -rf
find . -name __pycache__|xargs rm -rf
find . -type f -name "*.pyc" -delete
rm -rf tools/sdk_pub_tool/bouffalolab*