mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 20:35:30 +00:00
fc9daa9420
svn path=/trunk/gtk-sharp/; revision=8727
21 lines
364 B
Makefile
Executable file
21 lines
364 B
Makefile
Executable file
MCS=mcs
|
|
DESTDIR=
|
|
|
|
all: linux
|
|
|
|
windows:
|
|
$(CSC) /unsafe /target:library /r:../glib/glib-sharp.dll /out:gst-sharp.dll /recurse:*.cs
|
|
|
|
linux: gst-sharp.dll
|
|
|
|
gst-sharp.dll: *.cs
|
|
$(MCS) --unsafe --target library -r glib-sharp.dll -o gst-sharp.dll --recurse '*.cs'
|
|
|
|
clean:
|
|
rm -f *.dll
|
|
rm -rf generated
|
|
|
|
install: all
|
|
cp gst-sharp.dll $(DESTDIR)@prefix@/lib || exit 1
|
|
|