diff options
author | cbdev <cb@cbcdn.com> | 2019-05-26 16:02:29 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-05-26 16:02:29 +0200 |
commit | a8233d97936eeed545ea763c0ace1eb4f87219f9 (patch) | |
tree | a15bdfbc91226bbb94052817e9fa15decc1abbc6 /makefile | |
parent | 4c6833d470eda4be02b4dfb32cdeba9d93c67f43 (diff) | |
download | websocksy-a8233d97936eeed545ea763c0ace1eb4f87219f9.tar.gz websocksy-a8233d97936eeed545ea763c0ace1eb4f87219f9.tar.bz2 websocksy-a8233d97936eeed545ea763c0ace1eb4f87219f9.zip |
Basic plugin loading
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,7 +1,9 @@ -CFLAGS=-g -Wall -Wpedantic +PLUGINPATH=plugins/ + +CFLAGS=-g -Wall -Wpedantic -DPLUGINS=\"$(PLUGINPATH)\" LDLIBS=-lnettle -OBJECTS=builtins.o network.o websocket.o +OBJECTS=builtins.o network.o websocket.o plugin.o all: websocksy |