From 43d8d6fece984b5ee3d4121a8982ac4919225d68 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 12 May 2013 12:18:16 +0200 Subject: 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 --- tools/rbspeex/Makefile | 3 +-- tools/ucl/src/Makefile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'tools') 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)))) -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 1f3207f426..ca29d7c8a8 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 $< -- cgit v1.2.3