From 42c6af83ec7e26983f1ecdefc81ea481a2354cb4 Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Mon, 29 Mar 2021 01:41:50 +0000 Subject: don't echo command spam move common files to new source add VPATH to loader and kernel makefiles for common source --- rules.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rules.mk') diff --git a/rules.mk b/rules.mk index be255ba..4ac15a4 100644 --- a/rules.mk +++ b/rules.mk @@ -19,15 +19,15 @@ COMPILE.info = $(info $$(CC) $@) %.debug.os: %.os $(OBJCOPY) --only-keep-debug $< $@ - $(OBJCOPY) --strip-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 clean: $(info $$(RM) $(CLEANLIST)) -- cgit v1.3.1-1-g115d