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 $<