diff options
author | cbdev <cb@cbcdn.com> | 2019-06-01 21:27:52 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-06-01 21:27:52 +0200 |
commit | b9297647c68c963a977e2c18f421211e24f9e85a (patch) | |
tree | 173d0533f7c76665dea9956ed4da4f3228e01dc9 /plugins/makefile | |
parent | 92a291b5fae32caba2212192bc94b8ef568c362d (diff) | |
download | websocksy-b9297647c68c963a977e2c18f421211e24f9e85a.tar.gz websocksy-b9297647c68c963a977e2c18f421211e24f9e85a.tar.bz2 websocksy-b9297647c68c963a977e2c18f421211e24f9e85a.zip |
Implement file backend
Diffstat (limited to 'plugins/makefile')
-rw-r--r-- | plugins/makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/makefile b/plugins/makefile new file mode 100644 index 0000000..6b413db --- /dev/null +++ b/plugins/makefile @@ -0,0 +1,13 @@ +.PHONY: all clean +PLUGINS = backend_file.so + +CFLAGS += -fPIC -I../ +LDFLAGS += -shared + +%.so :: %.c %.h + $(CC) $(CFLAGS) $(LDLIBS) $< -o $@ $(LDFLAGS) + +all: $(PLUGINS) + +clean: + $(RM) $(PLUGINS) |