HariboteOS/day1/Makefile
Chen Su e9948ee0ea Revert "Replace tabs with spaces."
This reverts commit c95543ca30dfc0c8b3a9dcf59f605ac280b64025.
2021-03-08 09:30:07 +08:00

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