Ryujinx-GtkSharp/atk/Makefile.in

22 lines
498 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 /out:atk-sharp.dll /recurse:*.cs
linux: atk-sharp.dll
atk-sharp.dll: generated/*.cs
$(MCS) --unsafe -nowarn:0660,0661 --target library -L ../glib -L ../pango -r glib-sharp.dll -r pango-sharp.dll -o atk-sharp.dll --recurse '*.cs'
clean:
rm -f *.dll
rm -rf generated
install: all
../mkinstalldirs $(DESTDIR)@prefix@/lib && \
cp atk-sharp.dll $(DESTDIR)@prefix@/lib