You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
NASM = nasm |
|
|
|
.SUFFIXES: |
|
.SUFFIXES: .bin .asm |
|
|
|
all: ponydos.bin |
|
|
|
run: ponydos.bin |
|
qemu-system-i386 -fda ponydos.bin |
|
|
|
.asm.bin: |
|
$(NASM) -fbin -o $@ $< |
|
|
|
clean: |
|
rm -f *.bin |
|
|
|
distclean: clean |
|
qemu-system |
|
|
|
.PHONY: all run clean distclean
|
|
|