aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2024-02-27 20:14:18 +0100
committercbdev <cb@cbcdn.com>2024-02-27 20:14:18 +0100
commitd80b85d2b61225a27fa7b2058f60831d4a73110f (patch)
treeb8084ac7fba783427274d8e1b8ae423676888678
parent072cdf78d0f3362a3df7c6d7188bad29853b8d05 (diff)
downloadwebsocksy-d80b85d2b61225a27fa7b2058f60831d4a73110f.tar.gz
websocksy-d80b85d2b61225a27fa7b2058f60831d4a73110f.tar.bz2
websocksy-d80b85d2b61225a27fa7b2058f60831d4a73110f.zip
Fix makefile argument ordering
-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)