]> rtime.felk.cvut.cz Git - wvtest.git/blob - dotnet/Makefile
2a5be018c5b4da1556afb78671c8dec272f256c1
[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.pl $(MAKE) runtests
17
18 clean::
19         rm -f *~ t/*~ .*~ *.E t/*.E *.d t/*.d t/*.exe t/*.mdb
20