mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 20:55:35 +00:00
a5b70aa2f9
* samples/GtkDemo/*.cs: make it compile patch from Yves Kurz <ml_yves@magnific.ch> svn path=/trunk/gtk-sharp/; revision=21925
11 lines
191 B
Makefile
11 lines
191 B
Makefile
|
|
CSC = mcs
|
|
|
|
DLLS = /r:gtk-sharp.dll /r:glib-sharp.dll /r:pango-sharp.dll /r:gdk-sharp.dll /r:System.Drawing.dll
|
|
|
|
all: *.cs
|
|
$(CSC) -g /out:GtkDemo.exe *.cs $(DLLS)
|
|
|
|
clean:
|
|
rm -f GtkDemo.exe
|