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

Makefile « Test « DrawingTest « Test « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96ccddbc3fccc4004c590bc838522e82ca11c6a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
MCS=mcs
NUNIT_FLAGS=/exclude=NotWorking

sources=AssemblyInfo.cs Bitmap.cs Brush.cs Graphics.cs Image.cs Pen.cs Region.cs

DRAWING_TEST_HELPER=DrawingTestHelper.dll
EXOCORTEX=Exocortex.DSP.dll

Test.dll: $(sources) $(DRAWING_TEST_HELPER)
	$(MCS) -t:library $(sources) -r:$(DRAWING_TEST_HELPER) -r:$(EXOCORTEX) -r:nunit.framework -r:System.Drawing -out:Test.dll

$(DRAWING_TEST_HELPER):
	cd ../DrawingTestHelper && make
	cp ../DrawingTestHelper/*.dll .

run-test: Test.dll
	MONO_PATH="../../../../../class/lib/default::$(MONO_PATH)" /home/andrews/monobuild/mono/runtime/mono-wrapper --debug ../../../../../class/lib/default/nunit-console.exe Test.dll $(NUNIT_FLAGS)