aboutsummaryrefslogtreecommitdiffstats
path: root/test/makefile
diff options
context:
space:
mode:
authorastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-09-24 15:26:00 +0000
committerastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-09-24 15:26:00 +0000
commit998693b0bbbaae72beefb5f0fb6351ca839b06da (patch)
treea07848c39215e38a8e5d83ea256863f256aba012 /test/makefile
parentec066c34fea88f9bcbdf3b9280a2747672fa2ef6 (diff)
downloadopt-utilities-998693b0bbbaae72beefb5f0fb6351ca839b06da.tar.bz2
git-svn-id: file:///home/svn/opt_utilities@73 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'test/makefile')
-rw-r--r--test/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/makefile b/test/makefile
index e850e82..94d223d 100644
--- a/test/makefile
+++ b/test/makefile
@@ -1,10 +1,13 @@
-targets=test_optimizer
+targets=test_optimizer many_dims
all:$(targets)
test_optimizer:test_optimizer.cpp
$(CXX) $< -o $@ -I .. -O3 -g
+many_dims:many_dims.cpp
+ $(CXX) $< -o $@ -I .. -O3 -g
+
clean:
rm -f $(targets) *.o *~