Building a Sample Application Example 간단한 응용 예제 빌드하기
1. Go to the project's make directory.
프로젝트의 메이크 디렉토리로 이동한다.
Code Block | ||
---|---|---|
| ||
cd ubinos cd make |
2. Configure and build.
구성 및 빌드한다.
- Working directory 작업 디렉토리: "<project directory>/make"
Code Block | ||
---|---|---|
| ||
make all |
Make target "all" performs make target "config" and "build" sequentially.
메이크 타겟 "all"은 메이크 타겟 "config"와 "build"를 순차적으로 실행한다.
...