2002-02-20 Ravi Pratap <ravi@ximian.com>
[mono.git] / mcs / nunit / makefile
1 all: NUnitConsole.exe
2 linux: NUnitConsole.exe
3 windows: NUnitConsole.exe
4
5 NUnitConsole.exe: NUnitCore.dll
6         (cd src/NUnitConsole; csc /nologo /target:exe /out:../../NUnitConsole.exe *.cs /r:../../NUnitCore.dll)
7
8 NUnitCore.dll:
9         (cd src/NUnitCore; csc /nologo /target:library /out:../../NUnitCore.dll *.cs)
10
11 clean:
12         rm -f NUnitCore.dll NUnitConsole.exe