From a10aabfcd52f702057316018cd7847ab2bfe4aa1 Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Tue, 26 May 2026 21:32:27 +0000 Subject: we're bringing kjarna back and not doing the crazy stuff with trying to have task management during efi. that was a bit extra. --- rules.mk | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'rules.mk') diff --git a/rules.mk b/rules.mk index 756184e..87b5739 100644 --- a/rules.mk +++ b/rules.mk @@ -15,23 +15,24 @@ COMPILE.info = $(info $$(CC) $@) %.os: $(LINK.info) - $(LINK.os) + @$(LINK.os) %.debug.os: %.os - $(OBJCOPY) --only-keep-debug $< $@ + $(OBJCOPY.info) + @$(OBJCOPY) --only-keep-debug $< $@ @$(OBJCOPY) --strip-debug $< %.o: %.c $(COMPILE.info) - $(COMPILE.c) -MMD -MP + @$(COMPILE.c) -MMD -MP %.o: %.cpp $(COMPILE.info) - $(COMPILE.cpp) -MMD -MP + @$(COMPILE.cpp) -MMD -MP %.o: %.S $(COMPILE.info) - $(COMPILE.S) -MMD -MP + @$(COMPILE.S) -MMD -MP clean: $(info $$(RM) $(CLEANLIST)) -- cgit v1.3.1-1-g115d