diff options
author | Jens Arnold <amiconn@rockbox.org> | 2005-05-07 23:40:45 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2005-05-07 23:40:45 +0000 |
commit | d8237fd65f54f60c5f71fa8441b26ee43ce8b250 (patch) | |
tree | 082c78de088bf45829820683bac9519e1827b648 | |
parent | 001f52bd680a7f374fecebb16edfb8f43554daf9 (diff) | |
download | rockbox-d8237fd65f54f60c5f71fa8441b26ee43ce8b250.tar.gz rockbox-d8237fd65f54f60c5f71fa8441b26ee43ce8b250.zip |
Same 'DLL' messages as the new plugin Makefile.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6425 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugins/rockboy/Makefile | 2 | ||||
-rw-r--r-- | apps/plugins/searchengine/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/Makefile b/apps/plugins/rockboy/Makefile index dab4aa871e..727daa7186 100644 --- a/apps/plugins/rockboy/Makefile +++ b/apps/plugins/rockboy/Makefile @@ -78,7 +78,7 @@ DLLTOOLFLAGS = --export-all DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin $(OUTPUT): $(OBJS) - @echo "DLL $@" + @echo "DLL "`basename $@` @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $(OBJS) @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $(OBJS) \ $(BUILDDIR)/libplugin.a -o $@ diff --git a/apps/plugins/searchengine/Makefile b/apps/plugins/searchengine/Makefile index e59bd8fbde..992beb0707 100644 --- a/apps/plugins/searchengine/Makefile +++ b/apps/plugins/searchengine/Makefile @@ -62,7 +62,7 @@ DLLTOOLFLAGS = --export-all DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin $(OUTPUT): $(OBJS) - @echo "DLL $@" + @echo "DLL "`basename $@` @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $(OBJS) @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $(OBJS) \ $(BUILDDIR)/libplugin.a -o $@ |