From 9e9d9b6881c3eff3a722d196798b8fdd92ca2786 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 18 Oct 2016 11:14:07 +0100 Subject: [PATCH] Fix compile flags and libraries. --- YSFParrot/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/YSFParrot/Makefile b/YSFParrot/Makefile index 9becb31..ca00226 100644 --- a/YSFParrot/Makefile +++ b/YSFParrot/Makefile @@ -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 = 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 *~ - \ No newline at end of file +