summaryrefslogtreecommitdiff
path: root/apps/codecs/libffmpegFLAC/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libffmpegFLAC/Makefile')
-rw-r--r--apps/codecs/libffmpegFLAC/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/apps/codecs/libffmpegFLAC/Makefile b/apps/codecs/libffmpegFLAC/Makefile
index 27c17c8243..78c560bf75 100644
--- a/apps/codecs/libffmpegFLAC/Makefile
+++ b/apps/codecs/libffmpegFLAC/Makefile
@@ -30,15 +30,13 @@ DIRS =
30all: $(OUTPUT) 30all: $(OUTPUT)
31 31
32$(OUTPUT): $(OBJS) 32$(OUTPUT): $(OBJS)
33 @echo "AR+RANLIB $(notdir $@)" 33 $(call PRINTS,AR+RANLIB $(@F))$(AR) ruv $@ $+ >/dev/null 2>&1
34 @$(AR) ruv $@ $+ >/dev/null 2>&1 34 $(SILENT)$(RANLIB) $@
35 @$(RANLIB) $@
36 35
37include $(TOOLSDIR)/make.inc 36include $(TOOLSDIR)/make.inc
38 37
39clean: 38clean:
40 @echo "cleaning libffmpegFLAC" 39 $(call PRINTS,cleaning libffmpegFLAC)rm -f $(OBJS) $(OUTPUT) $(DEPFILE)
41 @rm -f $(OBJS) $(OUTPUT) $(DEPFILE)
42 40
43ifneq ($(MAKECMDGOALS),clean) 41ifneq ($(MAKECMDGOALS),clean)
44-include $(DEPFILE) 42-include $(DEPFILE)