Fix compile flags and libraries.
This commit is contained in:
parent
41decbabe7
commit
2a1223d0f7
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
CC = gcc
|
||||
CXX = g++
|
||||
CFLAGS = -g -O3 -Wall -std=c++0x
|
||||
LIBS =
|
||||
CFLAGS = -g -O3 -Wall -std=c++0x -pthread
|
||||
LIBS = -lpthread
|
||||
LDFLAGS = -g
|
||||
|
||||
OBJECTS = Conf.o Log.o Network.o StopWatch.o Thread.o Timer.o UDPSocket.o Utils.o YSFReflector.o
|
||||
|
@ -16,4 +16,4 @@ YSFReflector: $(OBJECTS)
|
|||
|
||||
clean:
|
||||
$(RM) YSFReflector *.o *.d *.bak *~
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue