From 21d87944953b26c77a2a99a76990d8bb02629a9c Mon Sep 17 00:00:00 2001 From: Johnny Richard Date: Mon, 16 Feb 2026 20:28:47 +0100 Subject: Initial commit Signed-off-by: Johnny Richard --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c2323cf --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +LDFLAGS= -Ttext 0x7C00 --oformat binary +.PHONY: all clean + +all: boot.bin + +clean: + $(RM) boot.bin boot.o + +boot.bin: boot.o + $(LD) $(LDFLAGS) -o $@ $< -- cgit v1.2.3