forked from openshwprojects/OpenXR809
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
executable file
·26 lines (22 loc) · 914 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Configuration
-------------
- Edit "gcc.mk" to define GCC path to your own path, eg.
```
CC_DIR = ~/tools/gcc-arm-none-eabi-4_9-2015q2/bin
```
Building
--------
- Building commands
```
$ cd ${prj_gcc_path} # eg. cd project/wlan_demo/gcc
$ make lib # build libraries and copy them to "lib"
$ make lib_clean # remove files in "src" generated by `make lib`
$ make lib_install_clean # Remove libraries in "lib" generated by `make lib`
$ make # build the executable binary
$ make clean # remove files generated by `make`
$ make image # create the image file
$ make image_clean # remove files generated by `make image`
$ make objdump # generate the disassembled file
$ make build # same as `make lib && make && make image`
$ make build_clean # same as `make image_clean clean lib_clean`
```