source: examples/example_scripts/Makefile @ 33a9212

mei_rt2mei_rt2_fix_1
Last change on this file since 33a9212 was f3421a0, checked in by Mei <mei@…>, 12 years ago

1) add more missing Makefile

  • Property mode set to 100644
File size: 596 bytes
Line 
1
2DIRECTORY=c perl python
3
4.PHONY : runcheck clean
5runcheck: $(DIRECTORY)
6
7clean:
8        @for i in $(DIRECTORY); do \
9        here=`pwd`; \
10        cd $$i; \
11        printf "\n ==> CLEANING on %s\n" "$$i"; \
12        make clean; \
13        cd $$here; \
14        done 
15        @rm -rf allout.tmp
16
17runcheck:
18        @echo 'running libabac SCRIPT testing...'
19        @for i in $(DIRECTORY); do \
20        here=`pwd`; \
21        cd $$i; \
22        printf "\n ==> RUN on %s\n" "$$i" >> ../allout.tmp ; \
23        ./run_test 1 >> ../allout.tmp 2>& 1; \
24        cd $$here; \
25        done 
26        @if test `diff -q allout.save allout.tmp |wc -l ` -eq 0 ; \
27        then echo "   PASSED"; \
28        else echo "   ERROR:got changes!!!"; \
29        fi
30
Note: See TracBrowser for help on using the repository browser.