7c31e5f7cb
* makefile : add linux build. * generator/makefile : add linux build. svn path=/trunk/gtk-sharp/; revision=2839
15 lines
317 B
Makefile
15 lines
317 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 /recurse:*.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."
|