Ryujinx-GtkSharp/gtk/Makefile.in

22 lines
637 B
Makefile
Raw Normal View History

MCS=mcs
DESTDIR=
all: linux
windows:
$(CSC) /unsafe /target:library /r:../glib/glib-sharp.dll /r:../pango/pango-sharp.dll /r:../atk/atk-sharp.dll /r:../gdk/gdk-sharp.dll /r:../gdk/gdk-imaging-sharp.dll /out:gtk-sharp.dll /recurse:*.cs
linux: gtk-sharp.dll
gtk-sharp.dll: *.cs generated/*.cs
$(MCS) --unsafe --target library -r System.Drawing -L ../glib -L ../pango -L ../atk -L ../gdk -r glib-sharp.dll -r pango-sharp.dll -r atk-sharp.dll -r gdk-sharp.dll -o gtk-sharp.dll --recurse '*.cs'
clean:
rm -f *.dll
rm -rf generated
install: all
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp gtk-sharp.dll $(DESTDIR)@prefix@/lib