summaryrefslogtreecommitdiff
path: root/rules.mk
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2021-03-29 01:41:50 +0000
committerAda Christine <adachristine18@gmail.com>2021-03-29 01:41:50 +0000
commit42c6af83ec7e26983f1ecdefc81ea481a2354cb4 (patch)
treea096824a181eff4874e7840d148f3e5a06e3a5df /rules.mk
parent56ec6c782455f7d8e4560d30ad6d2c3e1cd2738f (diff)
don't echo command spam
move common files to new source add VPATH to loader and kernel makefiles for common source
Diffstat (limited to 'rules.mk')
-rw-r--r--rules.mk6
1 files changed, 3 insertions, 3 deletions
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))