Building a Sample Application Example 간단한 응용 예제 빌드하기
1. 메이크 디렉토리("<project base directory>/make")로 이동한다.
cd ubinos/make
2. 구성 및 빌드한다.
make all
빌드가 정상적으로 완료되면 결과물 디렉토리("<project base directory>/output/<config name>")에 결과물이 생성된다.
<config name> 기본값은 메이크 디렉토리의 Makefile 파일에서 지정한다.
선택 가능한 <config name> 목록은 메이크 디렉토리의 batch.mk 파일에서 확인할 수 있다.
다음과 같이 <config name>을 CLI에서 지정할 수도 있다.
make all CONFIG_NAME=<config name>
다음 명령으로 기본 구성 정보 및 사용 가능한 <make target> 목록을 확인할 수 있다.
make help