From db7986cf0e79728a16650ea6238ed99e98a2fa53 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sat, 5 Mar 2005 23:31:40 +0000 Subject: Made the plugin linking depend on the plugin library for the simulator builds too. Removed unneeded dependency on plugin.h, because the .o gets rebuilt anyway when plugin.h changes: git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6148 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index 6c3917c0cb..fdabc8cf22 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -56,7 +56,7 @@ ifeq ($(SIMVER), x11) ################################################### # This is the X11 simulator version -$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(APPSDIR)/plugin.h +$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(OBJDIR)/libplugin.a @echo "LD $@" @$(CC) $(CFLAGS) -shared $< -L$(OBJDIR) $(CODECLIBS) -lplugin -o $@ ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN) @@ -73,7 +73,7 @@ else # end of x11-simulator DLLTOOLFLAGS = --export-all DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin -$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(APPSDIR)/plugin.h +$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(OBJDIR)/libplugin.a @echo "DLL $@" @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $< @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $< $(OBJDIR)/libplugin.a \ -- cgit v1.2.3