diff options
Diffstat (limited to 'apps/codecs/libfaad/Makefile')
| -rw-r--r-- | apps/codecs/libfaad/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/apps/codecs/libfaad/Makefile b/apps/codecs/libfaad/Makefile index 4a59d6c..8288b4c 100644 --- a/apps/codecs/libfaad/Makefile +++ b/apps/codecs/libfaad/Makefile @@ -30,15 +30,13 @@ DIRS = all: $(OUTPUT) $(OUTPUT): $(OBJS) - @echo "AR+RANLIB $(notdir $@)" - @$(AR) ruv $@ $+ >/dev/null 2>&1 - @$(RANLIB) $@ + $(call PRINTS,AR+RANLIB $(@F))$(AR) ruv $@ $+ >/dev/null 2>&1 + $(SILENT)$(RANLIB) $@ include $(TOOLSDIR)/make.inc clean: - @echo "cleaning libfaad" - @rm -f $(OBJS) $(OUTPUT) $(DEPFILE) + $(call PRINTS,cleaning libfaad)rm -f $(OBJS) $(OUTPUT) $(DEPFILE) ifneq ($(MAKECMDGOALS),clean) -include $(DEPFILE) |