6 lines
76 B
Makefile
6 lines
76 B
Makefile
|
kernel.com: *.asm
|
||
|
nasm -s -o kernel.com main.asm
|
||
|
|
||
|
clean:
|
||
|
rm -f kernel.com
|