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

Makefile « ictool « tools « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27fae41ae6166b28df9cdef6920b20b11d99b57c (plain)
1
2
3
4
5
6
7
8
9
10
CSC=csc.exe
CSCFLAGS=/nologo /debug+ /debug:full 

all: ictool.exe

ictool.exe: ictool.cs depgraph.cs peer.cs
	$(CSC) $(CSCFLAGS) /out:ictool.exe ictool.cs depgraph.cs peer.cs

clean:
	rm -f *.exe *.pdb *.dll