summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/Makefile')
-rw-r--r--apps/plugins/mpegplayer/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/mpegplayer/Makefile b/apps/plugins/mpegplayer/Makefile
index 215223dafa..61eae88db9 100644
--- a/apps/plugins/mpegplayer/Makefile
+++ b/apps/plugins/mpegplayer/Makefile
@@ -34,12 +34,12 @@ all: $(OUTPUT)
34 34
35ifndef SIMVER 35ifndef SIMVER
36$(OBJDIR)/mpegplayer.elf: $(OBJS) $(LINKFILE) 36$(OBJDIR)/mpegplayer.elf: $(OBJS) $(LINKFILE)
37 @echo "LD "`basename $@` 37 @echo "LD $(notdir $@)"
38 @$(CC) $(GCCOPTS) -O -nostdlib -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc \ 38 @$(CC) $(GCCOPTS) -O -nostdlib -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc \
39 -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/mpegplayer.map 39 -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/mpegplayer.map
40 40
41$(OUTPUT): $(OBJDIR)/mpegplayer.elf 41$(OUTPUT): $(OBJDIR)/mpegplayer.elf
42 @echo "OBJCOPY "`basename $@` 42 @echo "OBJCOPY $(notdir $@)"
43 @$(OC) -O binary $< $@ 43 @$(OC) -O binary $< $@
44else 44else
45 45
@@ -81,7 +81,7 @@ DLLTOOLFLAGS = --export-all
81DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin 81DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin
82 82
83$(OUTPUT): $(OBJS) 83$(OUTPUT): $(OBJS)
84 @echo "DLL "`basename $@` 84 @echo "DLL $(notdir $@)"
85 @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $(OBJS) 85 @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $(OBJS)
86 @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $(OBJS) \ 86 @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $(OBJS) \
87 $(BUILDDIR)/libplugin.a -o $@ 87 $(BUILDDIR)/libplugin.a -o $@
@@ -102,7 +102,7 @@ include $(TOOLSDIR)/make.inc
102# MEMORYSIZE should be passed on to this makefile with the chosen memory size 102# MEMORYSIZE should be passed on to this makefile with the chosen memory size
103# given in number of MB 103# given in number of MB
104$(LINKFILE): $(LDS) 104$(LINKFILE): $(LDS)
105 @echo "build "`basename $@` 105 @echo "build $(notdir $@)"
106 @cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) \ 106 @cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) \
107 $(DEFINES) -E -P - >$@ 107 $(DEFINES) -E -P - >$@
108 108