aboutsummaryrefslogtreecommitdiffstats
path: root/test/makefile
diff options
context:
space:
mode:
authorastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-12-17 13:35:02 +0000
committerastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-12-17 13:35:02 +0000
commiteeafd6e502bc60da664de3cf0eb9251f349df228 (patch)
tree42282436277a2ced2afc899e1d95d08dd50262da /test/makefile
parent0f296dc20152cb3f442fc3abcbf369e4ece4164d (diff)
downloadopt-utilities-eeafd6e502bc60da664de3cf0eb9251f349df228.tar.bz2
git-svn-id: file:///home/svn/opt_utilities@102 ed2142bd-67ad-457f-ba7c-d818d4011675
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 *~