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/plugins/mpegplayer/Makefile | |
| 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 'apps/plugins/mpegplayer/Makefile')
| -rw-r--r-- | apps/plugins/mpegplayer/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/Makefile b/apps/plugins/mpegplayer/Makefile index 61eae88..82782b7 100644 --- a/apps/plugins/mpegplayer/Makefile +++ b/apps/plugins/mpegplayer/Makefile @@ -48,7 +48,7 @@ ifeq ($(SIMVER), x11) # This is the X11 simulator version $(OUTPUT): $(OBJS) - @echo "LD $<" + @echo "LD $(notdir $@)" @$(CC) $(CFLAGS) $(SHARED_FLAG) $(OBJS) -L$(BUILDDIR) -lplugin -o $@ ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN) # 'x' must be kept or you'll have "Win32 error 5" @@ -64,7 +64,7 @@ ifeq ($(SIMVER), sdl) # This is the SDL simulator version $(OUTPUT): $(OBJS) - @echo "LD $<" + @echo "LD $(notdir $@)" @$(CC) $(CFLAGS) $(SHARED_FLAG) $(OBJS) -L$(BUILDDIR) -lplugin -o $@ ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN) # 'x' must be kept or you'll have "Win32 error 5" |