aboutsummaryrefslogtreecommitdiffstats
path: root/example/Makefile
diff options
context:
space:
mode:
authorastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-08-29 10:26:50 +0000
committerastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-08-29 10:26:50 +0000
commite1be7dc1247d604ea8c914ee1ec01b0b009cdb98 (patch)
tree5d944579807f2e9dbd5265113120bf73da415467 /example/Makefile
parent13c74917ecea5c151120678aff05edcc4ea682d5 (diff)
downloadopt-utilities-e1be7dc1247d604ea8c914ee1ec01b0b009cdb98.tar.bz2
git-svn-id: file:///home/svn/opt_utilities@56 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'example/Makefile')
-rw-r--r--example/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/example/Makefile b/example/Makefile
index 24fc4f0..dc05276 100644
--- a/example/Makefile
+++ b/example/Makefile
@@ -1,8 +1,13 @@
-target=test_optimizer
+target=test_optimizer test_fitter
+
+all:$(target)
test_optimizer:test_optimizer.cpp
- g++ -o $@ $< -I ../ -O2
+ g++ -o $@ $< -I ../ -O2 -g
+
+test_fitter:test_fitter.cpp
+ g++ -o $@ $< -I ../ -O2 -g
clean:
rm -f $(target)