aboutsummaryrefslogtreecommitdiffstats
path: root/test/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/makefile')
-rw-r--r--test/makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/makefile b/test/makefile
index 94d223d..761475c 100644
--- a/test/makefile
+++ b/test/makefile
@@ -1,4 +1,4 @@
-targets=test_optimizer many_dims
+targets=test_optimizer many_dims test_fitter
all:$(targets)
@@ -8,6 +8,8 @@ test_optimizer:test_optimizer.cpp
many_dims:many_dims.cpp
$(CXX) $< -o $@ -I .. -O3 -g
+test_fitter:test_fitter.cpp
+ $(CXX) $< -o $@ -I .. -O3 -g
clean:
rm -f $(targets) *.o *~