mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 03:15:35 +00:00
d60309616b
* makefile, */Makefile.in: Packaging fix from Robert McQueen (a.k.a. Robot101). svn path=/trunk/gtk-sharp/; revision=6455
21 lines
386 B
Makefile
21 lines
386 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 -o pango-sharp.dll --recurse '*.cs'
|
|
|
|
clean:
|
|
rm -f *.dll
|
|
rm -f generated/*
|
|
|
|
install: all
|
|
cp pango-sharp.dll $(DESTDIR)@prefix@/lib
|
|
|