File tree Expand file tree Collapse file tree 4 files changed +20
-14
lines changed Expand file tree Collapse file tree 4 files changed +20
-14
lines changed Original file line number Diff line number Diff line change
1
+ CODE_DIR = customer_app
2
+
3
+ .PHONY : app
4
+
5
+ app :
6
+ $(MAKE ) -C $(CODE_DIR )
7
+ clean :
8
+ find . -name build_out| xargs rm -rf
9
+ find . -name __pycache__| xargs rm -rf
10
+ find . -type f -name " *.pyc" -delete
11
+ rm -rf tools/sdk_pub_tool/bouffalolab*
Original file line number Diff line number Diff line change @@ -18,18 +18,22 @@ You can find a lot of documentation on `PINE64 Documentation Website <https://pi
18
18
19
19
Quick Start
20
20
-----------
21
- In order to build one of the sample apps, you need to set a few environment
22
- variables::
21
+ In order to build sample apps, you need to set a few environment variables::
23
22
24
23
export BL60X_SDK_PATH=/path/to/this/repo
25
24
export CONFIG_CHIP_NAME=BL602
26
25
27
- Then go to the sample directory of interest and call `make `, for example::
26
+ In order to build all sample apps simply call `make `, for example ::
27
+ make
28
+
29
+ To only build the sample app of interest, go to the directory of the app,
30
+ then call `make `, for example::
28
31
29
32
cd customer_app/bl602_boot2
30
33
make
31
34
32
35
Call ::
36
+ =======
33
37
34
38
make CONFIG_TOOLPREFIX=riscv64-linux-gnu-
35
39
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
app :
4
4
find . -maxdepth 2 -mindepth 2 -type d -execdir ./genromap {} \;
5
+ clean :
6
+ find . -name build_out| xargs rm -rf
You can’t perform that action at this time.
0 commit comments