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 /uisimulator | |
| parent | 76b2efbb433258097e23e0a35b09a5f5aa4d2e42 (diff) | |
| download | rockbox-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 'uisimulator')
| -rw-r--r-- | uisimulator/common/Makefile | 2 | ||||
| -rw-r--r-- | uisimulator/sdl/Makefile | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/uisimulator/common/Makefile b/uisimulator/common/Makefile index 1024349..aeec7c6 100644 --- a/uisimulator/common/Makefile +++ b/uisimulator/common/Makefile @@ -51,7 +51,7 @@ clean: @$(RM) $(OBJS) *~ core $(DEPFILE) $(OUTFILE) $(OUTFILE): $(OBJS) - @echo "AR+RANLIB $@" + @echo "AR+RANLIB $(notdir $@)" @$(AR) ruv $@ $(OBJS) >/dev/null 2>&1 @$(RANLIB) $@ diff --git a/uisimulator/sdl/Makefile b/uisimulator/sdl/Makefile index 0ebf103..55b94ce 100644 --- a/uisimulator/sdl/Makefile +++ b/uisimulator/sdl/Makefile @@ -49,8 +49,9 @@ all: $(OUTFILE) include $(TOOLSDIR)/make.inc $(OUTFILE): $(OBJS) $(BUILDDIR)/UI256.bmp - @echo "AR $@" + @echo "AR+RANLIB $(notdir $@)" @$(AR) ruv $@ $(OBJS) >/dev/null 2>&1 + @$(RANLIB) $@ clean: @echo "cleaning sim" |