diff options
Diffstat (limited to 'apps/plugins/doom')
| -rw-r--r-- | apps/plugins/doom/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/plugins/doom/Makefile b/apps/plugins/doom/Makefile index 20b6aea..e1564a7 100644 --- a/apps/plugins/doom/Makefile +++ b/apps/plugins/doom/Makefile @@ -3,7 +3,10 @@ # $Id$ # # $Log$ -# Revision 1.8 2006/10/23 14:09:28 markun +# Revision 1.9 2006/10/23 22:33:36 amiconn +# Consistent style of 'make' messages. Always use ranlib after ar. +# +# Revision 1.8 2006-10-23 14:09:28 markun # rearrange compiler options to avoid conflicts with header files on FreeBSD # # Revision 1.7 2006-10-22 00:21:56 amiconn @@ -96,7 +99,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" @@ -112,7 +115,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" |