mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 16:15:40 +00:00
d1a6c8bd62
* gtkdotnet/makefile.win32 : fixed references to build on Win32 svn path=/trunk/gtk-sharp/; revision=38864
10 lines
282 B
Plaintext
10 lines
282 B
Plaintext
ASSEMBLY=gtk-dotnet.dll
|
|
|
|
all: windows
|
|
|
|
windows:
|
|
$(CSC) /unsafe /nowarn:0660,0661 /target:library /r:../glib/glib-sharp.dll /r:../pango/pango-sharp.dll /r:../atk/atk-sharp.dll /r:../gdk/gdk-sharp.dll /r:../gtk/gtk-sharp.dll /out:$(ASSEMBLY) /recurse:*.cs
|
|
|
|
clean:
|
|
rm -f $(ASSEMBLY)
|