bootgame1

view Makefile @ 0:81facff3a8ae

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 07 Jun 2017 08:56:42 +0300
parents
children
line source
1 bin = boot.bin
3 $(bin): boot.asm
4 nasm -f bin -o $@ $<
6 .PHONY: clean
7 clean:
8 rm -f $(bin)
10 .PHONY: run
11 run: $(bin)
12 qemu-system-i386 -fda $< -net none