aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2017-11-16 13:11:07 +0100
committerAnton Khirnov <anton@khirnov.net>2017-12-29 15:29:52 +0100
commit56b797850884656ae28eef80560563ccf42db007 (patch)
tree341d1142c2387e0c7af9af675aebfe0682da6717 /Makefile
parent0007a0b0c11fa7c12b228883453368f105a4324b (diff)
Add the generic non-linear solver layer.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6affc77..14ad028 100644
--- a/Makefile
+++ b/Makefile
@@ -9,10 +9,12 @@ OBJS = basis.o \
cpu.o \
cpuid.o \
log.o \
+ nlsolve.o \
pssolve.o \
threadpool.o \
-TESTPROGS = pssolve
+TESTPROGS = nlsolve \
+ pssolve
TESTPROGS := $(addprefix tests/,$(TESTPROGS))