diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2013-05-12 12:18:16 +0200 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2013-06-09 16:54:59 +0200 |
commit | 43d8d6fece984b5ee3d4121a8982ac4919225d68 (patch) | |
tree | 373bb9081ebd2229f74074f597ca70487711ae95 | |
parent | 15fa7f866fe3a17afc9699f86e52aef7cb1a09d0 (diff) | |
download | rockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.tar.gz rockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.zip |
Don't pass ar output to /dev/null.
Since ar is not running in verbose mode there is normally no output to get rid
of, and in case of errors it's useful to see them. Also, Windows doesn't know
about /dev/null.
Make dependency generation for librbspeex more silent as well.
Change-Id: Ie0d4a406e665ebd67331d6cd1fa2fc02f8bf21b9
-rw-r--r-- | tools/rbspeex/Makefile | 3 | ||||
-rw-r--r-- | tools/ucl/src/Makefile | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile index 713111dd2e..785a99239a 100644 --- a/tools/rbspeex/Makefile +++ b/tools/rbspeex/Makefile | |||
@@ -82,7 +82,6 @@ DEPS = $(addprefix $(BUILD_DIR)/,$(subst .c,.d,$(notdir $(SOURCES)))) | |||
82 | -include $(DEPS) | 82 | -include $(DEPS) |
83 | 83 | ||
84 | %.d: | 84 | %.d: |
85 | @echo DEP $(notdir $@) | ||
86 | $(SILENT)$(call mkdir,$(BUILD_DIR)) | 85 | $(SILENT)$(call mkdir,$(BUILD_DIR)) |
87 | $(SILENT)$(CC) -MG -MM -MT $(subst .d,.o,$@) $(CFLAGS) -o $(BUILD_DIR)/$(notdir $@) $< | 86 | $(SILENT)$(CC) -MG -MM -MT $(subst .d,.o,$@) $(CFLAGS) -o $(BUILD_DIR)/$(notdir $@) $< |
88 | 87 | ||
@@ -95,7 +94,7 @@ $(TARGET_DIR)rbspeex.dll: $(OBJS) $(BUILD_DIR)/rbspeex.o | |||
95 | 94 | ||
96 | $(TARGET_DIR)librbspeex.a: $(OBJS) $(BUILD_DIR)/rbspeex.o | 95 | $(TARGET_DIR)librbspeex.a: $(OBJS) $(BUILD_DIR)/rbspeex.o |
97 | @echo AR $(notdir $@) | 96 | @echo AR $(notdir $@) |
98 | $(SILENT)$(CROSS)$(AR) rcs $@ $^ > /dev/null 2>&1 | 97 | $(SILENT)$(CROSS)$(AR) rcs $@ $^ |
99 | 98 | ||
100 | librbspeex.a: $(TARGET_DIR)librbspeex.a | 99 | librbspeex.a: $(TARGET_DIR)librbspeex.a |
101 | 100 | ||
diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile index 1f3207f426..ca29d7c8a8 100644 --- a/tools/ucl/src/Makefile +++ b/tools/ucl/src/Makefile | |||
@@ -72,7 +72,7 @@ $(TARGET_DIR)ucl.dll: $(OBJS) | |||
72 | 72 | ||
73 | $(TARGET_DIR)libucl$(RBARCH).a: $(OBJS) | 73 | $(TARGET_DIR)libucl$(RBARCH).a: $(OBJS) |
74 | @echo AR $(notdir $@) | 74 | @echo AR $(notdir $@) |
75 | $(SILENT)$(CROSS)$(AR) rcs $@ $(OBJS) >/dev/null 2>&1 | 75 | $(SILENT)$(CROSS)$(AR) rcs $@ $(OBJS) |
76 | 76 | ||
77 | $(OBJDIR)/%.o: %.c | 77 | $(OBJDIR)/%.o: %.c |
78 | @echo CC $< | 78 | @echo CC $< |