bootgame1
diff Makefile @ 0:81facff3a8ae
initial commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 07 Jun 2017 08:56:42 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/Makefile Wed Jun 07 08:56:42 2017 +0300 1.3 @@ -0,0 +1,12 @@ 1.4 +bin = boot.bin 1.5 + 1.6 +$(bin): boot.asm 1.7 + nasm -f bin -o $@ $< 1.8 + 1.9 +.PHONY: clean 1.10 +clean: 1.11 + rm -f $(bin) 1.12 + 1.13 +.PHONY: run 1.14 +run: $(bin) 1.15 + qemu-system-i386 -fda $< -net none