diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,11 @@ CC = gcc -CFLAGS = -Wall -Wextra -std=c11 -fwrapv -fPIC +CFLAGS = -Wall -Wextra -std=c11 -fwrapv -fPIC -pthread ifneq ($(DEBUG),) CFLAGS += -g else CFLAGS += -O2 endif -LDFLAGS = -ldl +LDFLAGS = -ldl -pthread BIN = cserver PLUGINDIR = plugins |