From a617499f8472c7ad4e12ff77709448814c5513ec Mon Sep 17 00:00:00 2001 From: kitty Date: Sat, 14 Feb 2026 02:02:06 +1100 Subject: makefile fix, arithmetic --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d20ec79..e42fcd7 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ TARGET := jefs SRCS = $(TARGET).s -all: $(TARGET) $(TARGET).fs +all: $(TARGET) $(TARGET): $(TARGET).o ld --omagic -static -o $@ $< -$(TARGET).o: $(SRCS) +$(TARGET).o: $(SRCS) $(TARGET).fs nasm -g -F dwarf -O0 -f elf64 -o $@ $< .PHONY: clean -- cgit v1.2.3