]> rtime.felk.cvut.cz Git - wvtest.git/blob - Makefile
wvtestrun: Do not use colors on dumb terminals
[wvtest.git] / Makefile
1
2 all:
3         @echo "There's nothing to build here except the tests."
4         @echo
5         @echo "Try: make test"
6         
7 runtests:
8         $(MAKE) -C sh runtests
9         $(MAKE) -C python runtests
10         $(MAKE) -C dotnet runtests
11         $(MAKE) -C cpp runtests
12         
13         
14 test:
15         ./wvtestrun $(MAKE) runtests
16
17 clean::
18         rm -f *~ .*~
19         $(MAKE) -C sh clean
20         $(MAKE) -C python clean
21         $(MAKE) -C dotnet clean
22         $(MAKE) -C cpp clean