...
Code Block | ||
---|---|---|
| ||
make all |
Make The make target "all" performs make target "config" and "build" sequentially.
The make target "config" configures the project with the configuration specified by the variable "CONFIG_NAME" in the file "Makefile".
The default value of the variable "CONFIG_NAME" is "helloworld_mt_nrf52dk", which is a configuration that creates an executable binary file containing the application "helloworld_mt" running on the target board "nRF52 DK".
The make target "build" builds the project.
If the build is completed normally, the result is created in the output directory "output/<config name>".
메이크 타겟 "all"은 메이크 타겟 "config"와 "build"를 순차적으로 실행한다.
...
빌드가 정상적으로 완료되면 결과물 디렉토리 "output/<config name>"에 결과물이 생성된다.
A list of available configuration names can be found in the file "batch.mk".
선택 가능한 구성 이름 목록은 파일 "batch.mk"에서 확인할 수 있다.
You can also specify the configuration name in the CLI as follows.
다음과 같이 CLI에서 구성 이름을 임의로 지정할 수도 있다.
Code Block | ||
---|---|---|
| ||
make all CONFIG_NAME=<config name> |
...