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

Makefile « DrawingTestHelper « DrawingTest « Test « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd4551c6398d8f75d7b094359090c3d64a1fa29e (plain)
1
2
3
4
5
6
7
8
9
10
MCS=mcs
sources=AssemblyInfo.cs DrawingTest.cs
EXOCORTEX=Exocortex.DSP.dll

DrawingTestHelper.dll: $(sources) $(EXOCORTEX)
	$(MCS) -t:library $(sources) -r:System.Windows.Forms -r:System.Drawing -r:$(EXOCORTEX) -r:nunit.framework -out:DrawingTestHelper.dll

$(EXOCORTEX):
	cd ../Exocortex.DSP/ && make
	cp ../Exocortex.DSP/*.dll .