Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makefile « nunit « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08c53250447fceeadab00b9afb45c7eb3e785e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all: NUnitConsole.exe
linux: NUnitConsole.exe
windows: NUnitConsole.exe

NUnitConsole.exe: NUnitCore.dll
	(cd src/NUnitConsole; csc /nologo /target:exe /out:../../NUnitConsole.exe *.cs /r:../../NUnitCore.dll)

NUnitCore.dll:
	(cd src/NUnitCore; csc /nologo /target:library /out:../../NUnitCore.dll *.cs)

clean:
	rm -f NUnitCore.dll NUnitConsole.exe