diff options
| -rw-r--r-- | plugins/makefile | 4 | 
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) | 
