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