diff options
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 |