summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/Makefile4
1 files changed, 2 insertions, 2 deletions
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)
56################################################### 56###################################################
57# This is the X11 simulator version 57# This is the X11 simulator version
58 58
59$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(APPSDIR)/plugin.h 59$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(OBJDIR)/libplugin.a
60 @echo "LD $@" 60 @echo "LD $@"
61 @$(CC) $(CFLAGS) -shared $< -L$(OBJDIR) $(CODECLIBS) -lplugin -o $@ 61 @$(CC) $(CFLAGS) -shared $< -L$(OBJDIR) $(CODECLIBS) -lplugin -o $@
62ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN) 62ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
@@ -73,7 +73,7 @@ else # end of x11-simulator
73DLLTOOLFLAGS = --export-all 73DLLTOOLFLAGS = --export-all
74DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin 74DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin
75 75
76$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(APPSDIR)/plugin.h 76$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(OBJDIR)/libplugin.a
77 @echo "DLL $@" 77 @echo "DLL $@"
78 @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $< 78 @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $<
79 @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $< $(OBJDIR)/libplugin.a \ 79 @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $< $(OBJDIR)/libplugin.a \