summaryrefslogtreecommitdiff
path: root/rules.mk
diff options
context:
space:
mode:
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))