mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 09:05:33 +00:00
1129bd2e78
* */Makefile.in : remove generated source in clean target. svn path=/trunk/gtk-sharp/; revision=5004
20 lines
363 B
Makefile
20 lines
363 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
|
|
rm -f generated/*
|
|
|
|
install: all
|
|
cp pango-sharp.dll @prefix@/lib
|
|
|