Add -DMONGOOSE_ENABLE_THREADS to Makefile

This commit is contained in:
Sergey Lyubka 2015-03-06 09:25:19 +00:00
parent a434bab767
commit 716d524f9b

View File

@ -2,7 +2,7 @@
# All rights reserved
PROG = multi_threaded_server
CFLAGS = -W -Wall -I../.. -pthread -g -O0 $(CFLAGS_EXTRA)
CFLAGS = -W -Wall -I../.. -pthread -g -O0 -DMONGOOSE_ENABLE_THREADS $(CFLAGS_EXTRA)
SOURCES = $(PROG).c ../../mongoose.c
$(PROG): $(SOURCES)