12 lines
126 B
Makefile
12 lines
126 B
Makefile
all:
|
|
nasm helloos.asm -o helloos.bin
|
|
|
|
clean:
|
|
rm -rf helloos.bin
|
|
|
|
qemu: all
|
|
qemu-system-i386 -fda helloos.bin
|
|
|
|
.PHONY:
|
|
all
|