This repository has been archived on 2024-10-03. You can view files and clone it, but cannot push or open issues or pull requests.
PlutOS-Archive/Makefile

9 lines
110 B
Makefile
Raw Permalink Normal View History

2024-09-28 22:16:46 +02:00
all: build
build:
nasm main.asm -f bin -o main.img
run:
qemu-system-i386 -fda main.img
debug: build run