Ryujinx-GtkSharp/generator/makefile
Joe Shaw e966ffb7f7 2002-04-18 Joe Shaw <joe@assbarn.com>
* */makefile: Allow a different MCS to be passed in on the make
	command line.

svn path=/trunk/gtk-sharp/; revision=3902
2002-04-18 21:46:56 +00:00

17 lines
319 B
Makefile

MCS=mcs
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."