diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-10-23 22:33:39 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-10-23 22:33:39 +0000 |
commit | d1ce4e779ee8e5aef34da33ca26968cc9da10c3f (patch) | |
tree | 71b798a99632c8836ad7c09278bc8fd841f98949 /apps/codecs/Tremor | |
parent | 76b2efbb433258097e23e0a35b09a5f5aa4d2e42 (diff) |
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/Tremor')
-rw-r--r-- | apps/codecs/Tremor/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/Tremor/Makefile b/apps/codecs/Tremor/Makefile index 881329d7c1..ee91a05af9 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 |