Fix makefiles after source grabber changes

This commit is contained in:
2025-09-02 07:42:15 +02:00
parent ddca5f687e
commit 0fb3a1ca75
2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ LDFLAGS += -nostdlib -static -T arch/$(ARCH)/link.ld $(shell $(CC) -print-libgcc
SRCFILES :=
SRCFILES += $(call GRABSRC, \
. \
printf \
bitmap \
pmm \

View File

@ -16,7 +16,7 @@ all: $(TARGET)
hello: $(OBJ)
$(LD) $^ $(LDFLAGS) -o $@
echo "$(realpath $@)" >> $(FILES)
echo $(realpath $@) >> $(FILES)
clean:
rm -f $(OBJ) $(TARGET)