From f5718812c5cb3ba00b43c67937e9e571da03f7cf Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Sun, 24 May 2026 11:42:26 +0000 Subject: compiler spam --- 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