source: examples/scaling_tests/Makefile @ 671c065

mei_rt2mei_rt2_fix_1
Last change on this file since 671c065 was bf68132, checked in by Mei <mei@…>, 12 years ago

1) get example directory to work with yap with use_malloc option
2) swap in new performance graphs

  • Property mode set to 100644
File size: 748 bytes
Line 
1
2
3DIRECTORY=daisychain haystack
4PLOT=haystack/fruit_python daisychain/likes_python
5
6.PHONY : runcheck clean plot check
7runcheck: $(DIRECTORY)
8
9clean:
10        @for i in $(DIRECTORY); do \
11        here=`pwd`; \
12        cd $$i; \
13        make clean; \
14        cd $$here; \
15        done; 
16        rm -rf allout.tmp
17
18runcheck: 
19        @echo 'running libabac SCALING testing...'
20        @for i in $(DIRECTORY); do \
21        here=`pwd`; \
22        printf "\n ==> RUN on %s\n" "$$i" >> allout.tmp; \
23        cd $$i; \
24        make -s runcheck >> ../allout.tmp 2>/dev/null; \
25        cd $$here; \
26        done; 
27        @if test -f allout.tmp && test `diff -q allout.save allout.tmp |wc -l ` -eq 0 ; \
28        then echo "   PASSED"; \
29        else echo "   ERROR:got changes!!!"; \
30        fi
31
32plot:
33        @for i in $(PLOT); do \
34        here=`pwd`; \
35        cd $$i; \
36        make -s plot; \
37        cd $$here; \
38        done;
39
Note: See TracBrowser for help on using the repository browser.