aboutsummaryrefslogtreecommitdiff
path: root/plugins/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/makefile')
-rw-r--r--plugins/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/makefile b/plugins/makefile
index f0b38cb..0ba6e6c 100644
--- a/plugins/makefile
+++ b/plugins/makefile
@@ -5,10 +5,10 @@ CFLAGS += -fPIC -g -I../
LDFLAGS += -shared
%.so :: %.c %.h
- $(CC) $(CFLAGS) $(LDLIBS) $< -o $@ $(LDFLAGS)
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) $(LDLIBS)
%.so :: %.c
- $(CC) $(CFLAGS) $(LDLIBS) $< -o $@ $(LDFLAGS)
+ $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) $(LDLIBS)
all: $(PLUGINS)