source: examples/scaling_tests/daisychain/likes_python/Makefile @ 446b3ce

mei_rt2mei_rt2_fix_1
Last change on this file since 446b3ce 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: 446 bytes
Line 
1
2
3TEST=likes_0 likes_10 likes_20
4TIMING=likes_30 likes_40 likes_50 likes_100 likes_150 likes_200
5#TIMING=likes_200
6
7.PHONY : test timing plot
8
9test: $(TEST)
10
11timing: $(TIMING)
12
13likes_0 :
14        @./run_one 0
15likes_10 :
16        @./run_one 10
17likes_20 :
18        @./run_one 20
19
20clean: 
21        @rm -rf likes_* run_plot plot timing
22
23$(TIMING):
24        @./run_one $(subst likes_,,$@)
25
26plot:
27        @make clean
28        cp ../../plotting/run_plot .
29        @make -s test
30        @make -s timing
31        @./run_plot likes
Note: See TracBrowser for help on using the repository browser.