diff --git a/._Makefile b/._Makefile index f3106e7..f4c2e6a 100644 Binary files a/._Makefile and b/._Makefile differ diff --git a/Makefile b/Makefile index b608e98..dad46e3 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ plugins: $(PLUGINS) %.$(EXT): $(PLUGINSDEP) for file in $(wildcard plugins/$(basename $@)/*.c) ; do\ - $(CC) $(CFLAGS) -c $$file -o $$file.o; \ + $(CC) -fPIC $(CFLAGS) -c $$file -o $$file.o; \ done $(CC) $(CFLAGS) $(PLUGINLIBS) -shared -o $(BUILDIRD)/plugins/$(basename $@).$(EXT) \ $(PLUGINSDEP) plugins/$(basename $@)/*.c.o