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

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

nant.exe: NAnt.exe
	-cp NAnt.exe nant.exe

NAnt.exe: makefile src/*.cs src/Attributes/*.cs src/Tasks/*.cs src/Util/*.cs
	csc /out:NAnt.exe /recurse:*.cs 

NAnt_mono.exe: makefile
	csc /out:NAnt_mono.exe /nostdlib /noconfig /recurse:*.cs /lib:../class/lib /r:corlib.dll /r:System.Xml.dll /r:System.dll /nowarn:1595

clean:
	rm -f NAnt_mono.exe