summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-10-23 22:33:39 +0000
committerJens Arnold <amiconn@rockbox.org>2006-10-23 22:33:39 +0000
commitd1ce4e779ee8e5aef34da33ca26968cc9da10c3f (patch)
tree71b798a99632c8836ad7c09278bc8fd841f98949 /apps/codecs
parent76b2efbb433258097e23e0a35b09a5f5aa4d2e42 (diff)
downloadrockbox-d1ce4e779ee8e5aef34da33ca26968cc9da10c3f.zip
rockbox-d1ce4e779ee8e5aef34da33ca26968cc9da10c3f.tar.gz
rockbox-d1ce4e779ee8e5aef34da33ca26968cc9da10c3f.tar.bz2
rockbox-d1ce4e779ee8e5aef34da33ca26968cc9da10c3f.tar.xz
Consistent style of 'make' messages. Always use ranlib after ar.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11322 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/Makefile4
-rw-r--r--apps/codecs/Tremor/Makefile3
-rw-r--r--apps/codecs/lib/Makefile2
-rw-r--r--apps/codecs/libFLAC/Makefile3
-rw-r--r--apps/codecs/liba52/Makefile3
-rw-r--r--apps/codecs/libalac/Makefile3
-rw-r--r--apps/codecs/libfaad/Makefile3
-rw-r--r--apps/codecs/libffmpegFLAC/Makefile3
-rw-r--r--apps/codecs/libm4a/Makefile3
-rw-r--r--apps/codecs/libmad/Makefile3
-rw-r--r--apps/codecs/libmusepack/Makefile3
-rw-r--r--apps/codecs/libwavpack/Makefile3
12 files changed, 23 insertions, 13 deletions
diff --git a/apps/codecs/Makefile b/apps/codecs/Makefile
index 76c8ce3..cd0677a 100644
--- a/apps/codecs/Makefile
+++ b/apps/codecs/Makefile
@@ -95,7 +95,7 @@ ifeq ($(SIMVER), sdl)
# This is the SDL simulator version
$(OBJDIR)/%.codec : $(OBJDIR)/%.o $(BUILDDIR)/libcodec.a $(OUTPUT)
- @echo "LD $(notdir $@) $^"
+ @echo "LD $(notdir $@)"
$(SILENT)$(CC) $(CFLAGS) $(SHARED_FLAG) $< -L$(BUILDDIR) $(CODECLIBS) -lcodec -o $@
ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
# 'x' must be kept or you'll have "Win32 error 5"
@@ -137,7 +137,7 @@ $(BUILDDIR)/libcodec.a:
$(SILENT)$(MAKE) -C lib OBJDIR=$(OBJDIR)/lib
$(LINKCODEC): $(LDS)
- @echo "build $@"
+ @echo "build $(notdir $@)"
$(SILENT)cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) -DCODEC $(INCLUDES) $(TARGET) $(DEFINES) -E -P - >$@
$(BUILDDIR)/libmad.a: libmad
diff --git a/apps/codecs/Tremor/Makefile b/apps/codecs/Tremor/Makefile
index 881329d..ee91a05 100644
--- a/apps/codecs/Tremor/Makefile
+++ b/apps/codecs/Tremor/Makefile
@@ -30,8 +30,9 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
include $(TOOLSDIR)/make.inc
diff --git a/apps/codecs/lib/Makefile b/apps/codecs/lib/Makefile
index 865e3b5..fcf84c2 100644
--- a/apps/codecs/lib/Makefile
+++ b/apps/codecs/lib/Makefile
@@ -33,7 +33,7 @@ OUTPUT = $(BUILDDIR)/libcodec.a
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR+RANLIB $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
@$(RANLIB) $@
diff --git a/apps/codecs/libFLAC/Makefile b/apps/codecs/libFLAC/Makefile
index d1e78bd..221b934 100644
--- a/apps/codecs/libFLAC/Makefile
+++ b/apps/codecs/libFLAC/Makefile
@@ -44,8 +44,9 @@ OUTPUT = $(BUILDDIR)/libFLAC.a
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
$(OBJDIR)/libFLAC/%.o: $(APPSDIR)/codecs/libFLAC/%.c
@mkdir -p $(OBJDIR)/libFLAC
diff --git a/apps/codecs/liba52/Makefile b/apps/codecs/liba52/Makefile
index ea3c01c..b93f0c7 100644
--- a/apps/codecs/liba52/Makefile
+++ b/apps/codecs/liba52/Makefile
@@ -30,8 +30,9 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
include $(TOOLSDIR)/make.inc
diff --git a/apps/codecs/libalac/Makefile b/apps/codecs/libalac/Makefile
index 5bca428..6f75a08 100644
--- a/apps/codecs/libalac/Makefile
+++ b/apps/codecs/libalac/Makefile
@@ -30,8 +30,9 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
include $(TOOLSDIR)/make.inc
diff --git a/apps/codecs/libfaad/Makefile b/apps/codecs/libfaad/Makefile
index 1cb6c92..4a59d6c 100644
--- a/apps/codecs/libfaad/Makefile
+++ b/apps/codecs/libfaad/Makefile
@@ -30,8 +30,9 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
include $(TOOLSDIR)/make.inc
diff --git a/apps/codecs/libffmpegFLAC/Makefile b/apps/codecs/libffmpegFLAC/Makefile
index ee3f392..27c17c8 100644
--- a/apps/codecs/libffmpegFLAC/Makefile
+++ b/apps/codecs/libffmpegFLAC/Makefile
@@ -30,8 +30,9 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
include $(TOOLSDIR)/make.inc
diff --git a/apps/codecs/libm4a/Makefile b/apps/codecs/libm4a/Makefile
index ad084b0..73b24bc 100644
--- a/apps/codecs/libm4a/Makefile
+++ b/apps/codecs/libm4a/Makefile
@@ -30,8 +30,9 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
include $(TOOLSDIR)/make.inc
diff --git a/apps/codecs/libmad/Makefile b/apps/codecs/libmad/Makefile
index c24a693..7ee16d9 100644
--- a/apps/codecs/libmad/Makefile
+++ b/apps/codecs/libmad/Makefile
@@ -39,8 +39,9 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
include $(TOOLSDIR)/make.inc
diff --git a/apps/codecs/libmusepack/Makefile b/apps/codecs/libmusepack/Makefile
index f5c59cc..68c2603 100644
--- a/apps/codecs/libmusepack/Makefile
+++ b/apps/codecs/libmusepack/Makefile
@@ -30,8 +30,9 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
include $(TOOLSDIR)/make.inc
diff --git a/apps/codecs/libwavpack/Makefile b/apps/codecs/libwavpack/Makefile
index 60911a0..077e4aa 100644
--- a/apps/codecs/libwavpack/Makefile
+++ b/apps/codecs/libwavpack/Makefile
@@ -30,8 +30,9 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
- @echo "AR $@"
+ @echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
+ @$(RANLIB) $@
include $(TOOLSDIR)/make.inc