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

makefile « Gtk « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e67531432d6c5b36b8da812825428fa3add6c312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CSC=csc 
SWFF=/r:gtk-sharp.dll /r:glib-sharp.dll /noconfig /r:System.dll /r:System.Drawing.dll /nowarn:169

SOURCES = \
	Application.cs		\
	ContainerControl.cs	\
	Control.cs		\
	Form.cs 		\
	ScrollableControl.cs

all: demo.exe

demo.exe: demo.cs System.Windows.Forms.dll
	$(CSC) demo.cs /r:System.Windows.Forms.dll

System.Windows.Forms.dll: $(SOURCES)
	$(CSC) $(SWFF) /target:library /out:System.Windows.Forms.dll $(SOURCES)