summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2013-05-12 12:18:16 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2013-06-09 16:54:59 +0200
commit43d8d6fece984b5ee3d4121a8982ac4919225d68 (patch)
tree373bb9081ebd2229f74074f597ca70487711ae95
parent15fa7f866fe3a17afc9699f86e52aef7cb1a09d0 (diff)
downloadrockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.zip
rockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.tar.gz
rockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.tar.bz2
rockbox-43d8d6fece984b5ee3d4121a8982ac4919225d68.tar.xz
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/Makefile3
-rw-r--r--tools/ucl/src/Makefile2
2 files changed, 2 insertions, 3 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile
index 713111d..785a992 100644
--- a/tools/rbspeex/Makefile
+++ b/tools/rbspeex/Makefile
@@ -82,7 +82,6 @@ DEPS = $(addprefix $(BUILD_DIR)/,$(subst .c,.d,$(notdir $(SOURCES))))
-include $(DEPS)
%.d:
- @echo DEP $(notdir $@)
$(SILENT)$(call mkdir,$(BUILD_DIR))
$(SILENT)$(CC) -MG -MM -MT $(subst .d,.o,$@) $(CFLAGS) -o $(BUILD_DIR)/$(notdir $@) $<
@@ -95,7 +94,7 @@ $(TARGET_DIR)rbspeex.dll: $(OBJS) $(BUILD_DIR)/rbspeex.o
$(TARGET_DIR)librbspeex.a: $(OBJS) $(BUILD_DIR)/rbspeex.o
@echo AR $(notdir $@)
- $(SILENT)$(CROSS)$(AR) rcs $@ $^ > /dev/null 2>&1
+ $(SILENT)$(CROSS)$(AR) rcs $@ $^
librbspeex.a: $(TARGET_DIR)librbspeex.a
diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile
index 1f3207f..ca29d7c 100644
--- a/tools/ucl/src/Makefile
+++ b/tools/ucl/src/Makefile
@@ -72,7 +72,7 @@ $(TARGET_DIR)ucl.dll: $(OBJS)
$(TARGET_DIR)libucl$(RBARCH).a: $(OBJS)
@echo AR $(notdir $@)
- $(SILENT)$(CROSS)$(AR) rcs $@ $(OBJS) >/dev/null 2>&1
+ $(SILENT)$(CROSS)$(AR) rcs $@ $(OBJS)
$(OBJDIR)/%.o: %.c
@echo CC $<