Fix compile flags and libraries for Solaris.
This commit is contained in:
parent
02e126604f
commit
3c0227707e
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 = -lsocket
|
||||
CFLAGS = -g -O3 -Wall -std=c++0x -pthread
|
||||
LIBS = -lsocket -lpthread
|
||||
LDFLAGS = -g
|
||||
|
||||
OBJECTS = Log.o Network.o Parrot.o StopWatch.o Thread.o Timer.o UDPSocket.o Utils.o YSFParrot.o
|
||||
|
@ -16,4 +16,4 @@ YSFParrot: $(OBJECTS)
|
|||
|
||||
clean:
|
||||
$(RM) YSFParrot *.o *.d *.bak *~
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue