]> rtime.felk.cvut.cz Git - wvtest.git/blob - dotnet/Makefile
Rename wvtestrunner.pl to wvtestrunner.
[wvtest.git] / dotnet / Makefile
1 all:
2         @echo "Try: make test"
3         @false
4         
5 include wvtestrules.mk
6
7 CPPFLAGS=-I.
8
9 t/test.exe: wvtest.cs wvtestmain.cs t/wvtest.t.cs.E
10         gmcs /out:$@ /debug $^
11
12 runtests: t/test.exe
13         cd t && mono --debug test.exe
14         
15 test:
16         ../wvtestrunner $(MAKE) runtests
17
18 clean::
19         rm -f *~ t/*~ .*~ *.E t/*.E *.d t/*.d t/*.exe t/*.mdb
20