mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 17:25:37 +00:00
07f41ef1c3
* */Makefile.in : Add clean targets. Add -L parms. svn path=/trunk/gtk-sharp/; revision=4400
22 lines
364 B
Makefile
22 lines
364 B
Makefile
MCS=mcs
|
|
|
|
all: linux
|
|
|
|
windows: *.cs
|
|
$(CSC) /unsafe /out:codegen.exe *.cs
|
|
./codegen gtkapi.xml
|
|
|
|
linux: generated-stamp
|
|
|
|
generated-stamp: codegen.exe gtkapi.xml
|
|
mono ./codegen.exe gtkapi.xml && touch generated-stamp
|
|
|
|
clean:
|
|
rm -f *.exe
|
|
|
|
install: all
|
|
@echo "Nothing to install in generator."
|
|
|
|
codegen.exe: *.cs
|
|
$(MCS) --unsafe -o codegen.exe -r System.Xml *.cs
|