7 lines
82 B
Makefile
7 lines
82 B
Makefile
|
|
|
|
bootloader.bin: bootloader.asm
|
|
nasm -f bin -o $@ $<
|
|
|
|
clean:
|
|
rm bootloader.bin
|