source: examples/scaling_tests/haystack/fruit_python/Makefile @ b4b0d0a

mei_rt2
Last change on this file since b4b0d0a was 6f383ee, checked in by Mei <mei@…>, 12 years ago

1) update couple of Makefile in examples directory that is too
gnu

  • Property mode set to 100644
File size: 428 bytes
Line 
1
2TEST=fruit_0 fruit_10 fruit_20
3TIMING=fruit_30 fruit_40 fruit_50 fruit_100 fruit_150 fruit_200
4
5.PHONY : clean test timing plot
6
7test: $(TEST)
8timing: $(TIMING)
9
10clean: 
11        @rm -rf fruit_* timing plot run_plot
12
13fruit_0 :
14        @./run_one 0
15fruit_10 :
16        @./run_one 10
17fruit_20 :
18        @./run_one 20
19
20$(TIMING):
21        @./run_one $(subst fruit_,,$@)
22
23plot:
24        @make clean
25        @cp ../../plotting/run_plot .
26        @make test
27        @make timing
28        @./run_plot fruit
29
Note: See TracBrowser for help on using the repository browser.