aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-08-25 13:26:40 +0200
committercbdev <cb@cbcdn.com>2019-08-25 13:26:40 +0200
commit4256eaae74f6f27167f84e2d469deaa3da3403bc (patch)
tree34183a1fb1d0579a152def9a96850805e8b002a3 /makefile
parentfadc42453aca482a9db4f5c92adf58d43d87cdc7 (diff)
downloadwebsocksy-4256eaae74f6f27167f84e2d469deaa3da3403bc.tar.gz
websocksy-4256eaae74f6f27167f84e2d469deaa3da3403bc.tar.bz2
websocksy-4256eaae74f6f27167f84e2d469deaa3da3403bc.zip
Fix minor bugs
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/makefile b/makefile
index 0e0dead..19bf31a 100644
--- a/makefile
+++ b/makefile
@@ -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