ponydos/Makefile

21 lines
236 B
Makefile
Raw Normal View History

2022-02-11 16:16:49 +00:00
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