From 4256eaae74f6f27167f84e2d469deaa3da3403bc Mon Sep 17 00:00:00 2001 From: cbdev Date: Sun, 25 Aug 2019 13:26:40 +0200 Subject: Fix minor bugs --- makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'makefile') 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 -- cgit v1.2.3