This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
piquant/Makefile

15 lines
178 B
Makefile

all: boot.img
boot.bin: bootloader.S
nasm $< -f bin -o $@
boot.img: boot.bin
dd if=$< bs=512 of=$@
test: boot.img
bochs -f bochsrc -q
.PHONY: clean
clean:
rm -f boot.bin