diff options
author | cbdev <cb@cbcdn.com> | 2019-08-25 13:26:40 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-08-25 13:26:40 +0200 |
commit | 4256eaae74f6f27167f84e2d469deaa3da3403bc (patch) | |
tree | 34183a1fb1d0579a152def9a96850805e8b002a3 /makefile | |
parent | fadc42453aca482a9db4f5c92adf58d43d87cdc7 (diff) | |
download | websocksy-4256eaae74f6f27167f84e2d469deaa3da3403bc.tar.gz websocksy-4256eaae74f6f27167f84e2d469deaa3da3403bc.tar.bz2 websocksy-4256eaae74f6f27167f84e2d469deaa3da3403bc.zip |
Fix minor bugs
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,10 +1,10 @@ .PHONY: all clean plugins -PLUGINPATH?=plugins/ +PLUGINPATH ?= plugins/ -CFLAGS=-g -Wall -Wpedantic -DPLUGINS=\"$(PLUGINPATH)\" -LDLIBS=-lnettle -ldl +CFLAGS += -g -Wall -Wpedantic -DPLUGINS=\"$(PLUGINPATH)\" +LDLIBS = -lnettle -ldl -OBJECTS=builtins.o network.o websocket.o plugin.o config.o +OBJECTS = builtins.o network.o websocket.o plugin.o config.o all: websocksy |