aboutsummaryrefslogtreecommitdiff
path: root/plugins/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/makefile')
-rw-r--r--plugins/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/makefile b/plugins/makefile
index 1a6ef36..feab4cd 100644
--- a/plugins/makefile
+++ b/plugins/makefile
@@ -1,5 +1,5 @@
.PHONY: all clean
-PLUGINS = backend_file.so
+PLUGINS = backend_file.so framing_fixedlength.so
CFLAGS += -fPIC -g -I../
LDFLAGS += -shared
@@ -7,6 +7,9 @@ LDFLAGS += -shared
%.so :: %.c %.h
$(CC) $(CFLAGS) $(LDLIBS) $< -o $@ $(LDFLAGS)
+%.so :: %.c
+ $(CC) $(CFLAGS) $(LDLIBS) $< -o $@ $(LDFLAGS)
+
all: $(PLUGINS)
clean: