ponydos/Makefile
Juhani Krekelä e03b6c0ef1 First commit
2022-02-11 18:16:49 +02:00

21 lines
236 B
Makefile

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