mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 16:35:32 +00:00
28049f1c2b
* generator/SignalHandler.cs : switch to 2.0 libs * generator/SymbolTable.cs : switch to 2.0 libs * glib/Object.cs : switch to 2.0 libs * glib/SList.cs : switch to 2.0 libs * glib/Value.cs : switch to 2.0 libs * gtk/Application.cs : switch to 2.0 libs svn path=/trunk/gtk-sharp/; revision=3468
16 lines
308 B
Makefile
16 lines
308 B
Makefile
|
|
all:
|
|
@echo "You must use 'make windows' or 'make linux'."
|
|
@echo "'make unix' is broken for now."
|
|
|
|
windows:
|
|
$(CSC) /unsafe /out:codegen.exe *.cs
|
|
./codegen gtkapi.xml
|
|
|
|
linux:
|
|
mcs --unsafe -o codegen.exe -r System.Xml.dll *.cs
|
|
mono ./codegen.exe gtkapi.xml
|
|
|
|
unix:
|
|
@echo "'make unix' is broken for now."
|