From 0fb3a1ca75081d06a79528c9df2d4e9d5989f5fb Mon Sep 17 00:00:00 2001 From: kamkow1 Date: Tue, 2 Sep 2025 07:42:15 +0200 Subject: [PATCH] Fix makefiles after source grabber changes --- kernel/Makefile | 1 + user/hello/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/Makefile b/kernel/Makefile index 41e34db..4614126 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -36,6 +36,7 @@ LDFLAGS += -nostdlib -static -T arch/$(ARCH)/link.ld $(shell $(CC) -print-libgcc SRCFILES := SRCFILES += $(call GRABSRC, \ + . \ printf \ bitmap \ pmm \ diff --git a/user/hello/Makefile b/user/hello/Makefile index c19cadd..b6da720 100644 --- a/user/hello/Makefile +++ b/user/hello/Makefile @@ -16,7 +16,7 @@ all: $(TARGET) hello: $(OBJ) $(LD) $^ $(LDFLAGS) -o $@ - echo "$(realpath $@)" >> $(FILES) + echo $(realpath $@) >> $(FILES) clean: rm -f $(OBJ) $(TARGET)