diff options
| author | Dave Chapman <dave@dchapman.com> | 2006-01-23 15:59:54 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2006-01-23 15:59:54 +0000 |
| commit | 440c7ea5fc05df79a379d46a8aeecad4db892ad1 (patch) | |
| tree | a09219e5f4a7f61a2f69bb3fca54d4e709029412 /apps/plugins/Makefile | |
| parent | c66da141da5107b92fa12cd5610d41ba623ee256 (diff) | |
| download | rockbox-440c7ea5fc05df79a379d46a8aeecad4db892ad1.zip rockbox-440c7ea5fc05df79a379d46a8aeecad4db892ad1.tar.gz rockbox-440c7ea5fc05df79a379d46a8aeecad4db892ad1.tar.bz2 rockbox-440c7ea5fc05df79a379d46a8aeecad4db892ad1.tar.xz | |
Forgotten Makefile change - Link bitmap libraries against plugins for the SDL sim
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8427 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/Makefile')
| -rw-r--r-- | apps/plugins/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index ca3b514..51d6b63 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -114,7 +114,7 @@ ifeq ($(SIMVER), sdl) $(OBJDIR)/%.rock : $(OBJDIR)/%.o $(BUILDDIR)/libplugin.a @echo "LD "`basename $@` - @$(CC) $(CFLAGS) -shared $< -L$(BUILDDIR) $(CODECLIBS) -lplugin -o $@ + @$(CC) $(CFLAGS) -shared $< -L$(BUILDDIR) $(CODECLIBS) -lplugin $(LINKBITMAPS) -o $@ ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN) # 'x' must be kept or you'll have "Win32 error 5" # $ fgrep 5 /usr/include/w32api/winerror.h | head -1 |