diff options
author | cbdev <cb@cbcdn.com> | 2019-06-20 15:23:45 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-06-20 15:23:45 +0200 |
commit | 7a1b8a0fefe9a2a0fae6289195e2936ec9c17000 (patch) | |
tree | d8ac7b6055ac661cbf65208995cea182cf690e9a /plugins/makefile | |
parent | 3c75202f5f4e9c1c61fead33f0f08e742d143223 (diff) | |
download | websocksy-7a1b8a0fefe9a2a0fae6289195e2936ec9c17000.tar.gz websocksy-7a1b8a0fefe9a2a0fae6289195e2936ec9c17000.tar.bz2 websocksy-7a1b8a0fefe9a2a0fae6289195e2936ec9c17000.zip |
Implement fixedlength framing
Diffstat (limited to 'plugins/makefile')
-rw-r--r-- | plugins/makefile | 5 |
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: |