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

Makefile « Exocortex.DSP « DrawingTest « Test « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2a620007219680152a734b490331c2a83a73345 (plain)
1
2
3
4
5
6
7
8
9
10
MCS=mcs
sources=src/AssemblyInfo.cs src/Complex.cs src/ComplexArray.cs src/ComplexF.cs src/ComplexMath.cs src/ComplexStats.cs src/Fourier.cs src/FourierDirection.cs

.SUFFIXES: .cs .exe .dll

all: Exocortex.DSP.dll

Exocortex.DSP.dll: $(sources)
	$(MCS) -t:library $(sources) -out:Exocortex.DSP.dll