source: tests/scaling_tests/daisychain/Makefile.am @ 2d56f83

abac0-leakabac0-mei
Last change on this file since 2d56f83 was 2d56f83, checked in by Mei <mei@…>, 11 years ago

1) overhaul the tests directory that now we can regression test against
a build directory or a installed setup

  • Property mode set to 100644
File size: 313 bytes
Line 
1#
2# daisychain
3#
4
5DIRECTORY=likes_python
6SUBDIRS=$(DIRECTORY)
7
8.PHONY : runcheck clean
9all: runcheck
10
11clean:
12        @for i in $(DIRECTORY); do \
13        here=`pwd`; \
14        cd $$i; \
15        make clean; \
16        cd $$here;\
17        done;
18
19runcheck:
20        @for i in $(DIRECTORY); do \
21          here=`pwd`; \
22          cd $$i; \
23          make -s test; \
24          cd $$here;\
25        done;
Note: See TracBrowser for help on using the repository browser.