mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 17:55:35 +00:00
07f41ef1c3
* */Makefile.in : Add clean targets. Add -L parms. svn path=/trunk/gtk-sharp/; revision=4400
19 lines
301 B
Makefile
Executable file
19 lines
301 B
Makefile
Executable file
MCS=mcs
|
|
|
|
all: linux
|
|
|
|
windows:
|
|
$(CSC) /unsafe /target:library /out:glib-sharp.dll /recurse:*.cs
|
|
|
|
linux: glib-sharp.dll
|
|
|
|
glib-sharp.dll: *.cs generated/*.cs
|
|
$(MCS) --unsafe --target library -o glib-sharp.dll --recurse *.cs
|
|
|
|
clean:
|
|
rm -f *.dll
|
|
|
|
install: all
|
|
cp glib-sharp.dll @prefix@/lib || exit 1
|
|
|