summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/Makefile')
-rw-r--r--apps/plugins/rockboy/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/rockboy/Makefile b/apps/plugins/rockboy/Makefile
index b849c32dcf..b68229429f 100644
--- a/apps/plugins/rockboy/Makefile
+++ b/apps/plugins/rockboy/Makefile
@@ -47,12 +47,12 @@ all: $(OUTPUT)
47 47
48ifndef SIMVER 48ifndef SIMVER
49$(OBJDIR)/rockboy.elf: $(OBJS) $(LINKFILE) 49$(OBJDIR)/rockboy.elf: $(OBJS) $(LINKFILE)
50 @echo "LD "`basename $@` 50 @echo "LD $(notdir $@)"
51 @$(CC) $(GCCOPTS) -O2 -nostdlib -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -fast -lgcc \ 51 @$(CC) $(GCCOPTS) -O2 -nostdlib -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -fast -lgcc \
52 -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/rockboy.map 52 -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/rockboy.map
53 53
54$(OUTPUT): $(OBJDIR)/rockboy.elf 54$(OUTPUT): $(OBJDIR)/rockboy.elf
55 @echo "OBJCOPY "`basename $@` 55 @echo "OBJCOPY $(notdir $@)"
56 @$(OC) -O binary $< $@ 56 @$(OC) -O binary $< $@
57else 57else
58 58
@@ -94,7 +94,7 @@ DLLTOOLFLAGS = --export-all
94DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin 94DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin
95 95
96$(OUTPUT): $(OBJS) 96$(OUTPUT): $(OBJS)
97 @echo "DLL "`basename $@` 97 @echo "DLL $(notdir $@)"
98 @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $(OBJS) 98 @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $(OBJS)
99 @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $(OBJS) \ 99 @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $(OBJS) \
100 $(BUILDDIR)/libplugin.a -o $@ 100 $(BUILDDIR)/libplugin.a -o $@
@@ -115,7 +115,7 @@ include $(TOOLSDIR)/make.inc
115# MEMORYSIZE should be passed on to this makefile with the chosen memory size 115# MEMORYSIZE should be passed on to this makefile with the chosen memory size
116# given in number of MB 116# given in number of MB
117$(LINKFILE): $(LDS) 117$(LINKFILE): $(LDS)
118 @echo "build "`basename $@` 118 @echo "build $(notdir $@)"
119 @cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) $(DEFINES) \ 119 @cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) $(DEFINES) \
120 -E -P - >$@ 120 -E -P - >$@
121 121