mirror of
https://github.com/pine64/bl_iot_sdk.git
synced 2024-11-19 05:11:49 +00:00
0c49fe4b3e
Add toplevel Makefile with clean support. Updated Readme for building details.
12 lines
228 B
Makefile
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*
|