summaryrefslogtreecommitdiff
path: root/apps/codecs/libmad/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libmad/Makefile')
-rw-r--r--apps/codecs/libmad/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/apps/codecs/libmad/Makefile b/apps/codecs/libmad/Makefile
index 7ee16d9e4c..13cde8f1f6 100644
--- a/apps/codecs/libmad/Makefile
+++ b/apps/codecs/libmad/Makefile
@@ -39,15 +39,13 @@ DIRS =
39all: $(OUTPUT) 39all: $(OUTPUT)
40 40
41$(OUTPUT): $(OBJS) 41$(OUTPUT): $(OBJS)
42 @echo "AR+RANLIB $(notdir $@)" 42 $(call PRINTS,AR+RANLIB $(@F))$(AR) ruv $@ $+ >/dev/null 2>&1
43 @$(AR) ruv $@ $+ >/dev/null 2>&1 43 $(SILENT)$(RANLIB) $@
44 @$(RANLIB) $@
45 44
46include $(TOOLSDIR)/make.inc 45include $(TOOLSDIR)/make.inc
47 46
48clean: 47clean:
49 @echo "cleaning libmad" 48 $(call PRINTS,cleaning libmad)rm -f $(OBJS) $(OUTPUT) $(DEPFILE)
50 @rm -f $(OBJS) $(OUTPUT) $(DEPFILE)
51 49
52ifneq ($(MAKECMDGOALS),clean) 50ifneq ($(MAKECMDGOALS),clean)
53-include $(DEPFILE) 51-include $(DEPFILE)