aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-07-26 18:39:53 +0200
committerAnton Khirnov <anton@khirnov.net>2020-07-26 18:39:53 +0200
commit29f5b628317bcf83ddc5bfeaec92108b6bb1e89d (patch)
tree60b476d9a073045e3bc1cf5729b47174d04f7701 /Makefile
parente6180b82d89d69846cfdd7881dd067ff38ea6a79 (diff)
Switch to external threadpool library.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 457489d..fae7da1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
TARGET = libteukolskydata.so
CFLAGS = -std=c99 -D_XOPEN_SOURCE=700 -fPIC -g -I.
-TARGET_LDFLAGS = -Wl,--version-script=libteukolskydata.v -shared -lm -llapacke -pthread
+TARGET_LDFLAGS = -Wl,--version-script=libteukolskydata.v -shared -lm -llapacke -lthreadpool
TEST_LIBS = -lm -llapacke -lcblas -lpthread
CC = cc
@@ -14,7 +14,6 @@ OBJS = basis.o \
nlsolve.o \
pssolve.o \
td_constraints.o \
- threadpool.o \
TESTPROGS = nlsolve \
pssolve