0x55, 0xAA
로 작성되어 있다.make 프로그램
make 문법
( MINT64 OS 빌드에 필요한 기능 위주로 작성되어 있다. )
make 문법의 기본 형식은 Target, Dependency, Command 세부분으로 구성되어 있다.
Target: Dependency ...
<tab> Command
<tab> Command
<tab> ...
예제
# a.c와 b.c를 통해, output.exe 파일 생성 --> 주석
all: output.exe
a.o: a.c
gcc -c a.c
b.o: b.c
gcc -c b.c
output.exe: a.o b.o
gcc -o output.exe a.o b.o