Revision: 1142
http://loki-lib.svn.sourceforge.net/loki-lib/?rev=1142&view=rev
Author: rich_sposato
Date: 2011-10-13 18:37:58 +0000 (Thu, 13 Oct 2011)
Log Message:
-----------
Updated make file to compile ThreadPool and use pthreads library.
Modified Paths:
--------------
trunk/test/SafeFormat/Makefile
Modified: trunk/test/SafeFormat/Makefile
===================================================================
--- trunk/test/SafeFormat/Makefile 2011-10-07 07:06:01 UTC (rev 1141)
+++ trunk/test/SafeFormat/Makefile 2011-10-13 18:37:58 UTC (rev 1142)
@@ -1,9 +1,10 @@
include ../Makefile.common
BIN := main$(BIN_SUFFIX)
-SRC := main.cpp
+SRC := main.cpp ThreadPool.cpp
OBJ := $(SRC:.cpp=.o)
CXXFLAGS := $(CXXWARNFLAGS) -g -fexpensive-optimizations -O3
+LDLIBS += -lpthread
.PHONY: all clean
all: $(BIN)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|