2002-04-18 21:46:56 +00:00
|
|
|
MCS=mcs
|
2002-03-02 12:04:46 +00:00
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
all:
|
2002-03-02 12:04:46 +00:00
|
|
|
@echo "You must use 'make windows' or 'make linux'."
|
2002-01-04 02:02:28 +00:00
|
|
|
@echo "'make unix' is broken for now."
|
|
|
|
|
|
|
|
windows:
|
2002-03-28 21:16:43 +00:00
|
|
|
$(CSC) /unsafe /out:codegen.exe *.cs
|
2002-02-08 23:56:27 +00:00
|
|
|
./codegen gtkapi.xml
|
2002-01-04 02:02:28 +00:00
|
|
|
|
2002-03-02 12:04:46 +00:00
|
|
|
linux:
|
2002-04-18 21:46:56 +00:00
|
|
|
$(MCS) --unsafe -o codegen.exe -r System.Xml.dll *.cs
|
2002-03-02 12:04:46 +00:00
|
|
|
mono ./codegen.exe gtkapi.xml
|
|
|
|
|
2002-01-04 02:02:28 +00:00
|
|
|
unix:
|
|
|
|
@echo "'make unix' is broken for now."
|