mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 03:45:28 +00:00
e059803b19
* pango/Layout.custom: Add Size get property and add some nicer overloads to avoid explicit passing in the string length svn path=/trunk/gtk-sharp/; revision=10231
22 lines
449 B
Makefile
22 lines
449 B
Makefile
MCS=mcs
|
|
DESTDIR=
|
|
|
|
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.dll -r System.Drawing -o pango-sharp.dll --recurse '*.cs'
|
|
|
|
clean:
|
|
rm -f *.dll
|
|
rm -rf generated
|
|
|
|
install: all
|
|
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
|
|
cp pango-sharp.dll $(DESTDIR)@prefix@/lib
|
|
|