source: tests/scaling_tests/daisychain/likes_python/Makefile.am

Last change on this file was 831da18, checked in by Mei <mei@…>, 11 years ago

1) getting ready to for 0.1.6

  • Property mode set to 100644
File size: 538 bytes
Line 
1#
2# daisychain/likes_python
3#
4
5include  ../../../abac.mk
6
7TEST=likes_0 likes_10 likes_20
8TIMING=likes_30 likes_40 likes_50 likes_100 likes_150 likes_200
9
10.PHONY : test clean timing plot
11all: test
12
13test: $(TEST)
14
15timing: $(TIMING)
16
17likes_0 :
18        $(MY_ENV) ./run_one 0
19likes_10 :
20        @$(MY_ENV) ./run_one 10
21likes_20 :
22        @$(MY_ENV) ./run_one 20
23
24clean:
25        @rm -rf likes_* run_plot plot timing
26
27$(TIMING):
28        @$(MY_ENV) ./run_one $(subst likes_,,$@)
29
30plot:
31        @make clean
32        cp ../../plotting/run_plot .
33        @make -s test
34        @make -s timing
35        @./run_plot likes
Note: See TracBrowser for help on using the repository browser.