mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 08:15:43 +00:00
3f76288572
* glib/Makefile.in : rm -rf generated on make clean target * gnome/CanvasProxy.cs : add missing Signals hash. svn path=/trunk/gtk-sharp/; revision=6833
21 lines
325 B
Makefile
Executable file
21 lines
325 B
Makefile
Executable file
MCS=mcs
|
|
DESTDIR=
|
|
|
|
all: linux
|
|
|
|
windows:
|
|
$(CSC) /unsafe /target:library /out:glib-sharp.dll /recurse:*.cs
|
|
|
|
linux: glib-sharp.dll
|
|
|
|
glib-sharp.dll: *.cs
|
|
$(MCS) --unsafe --target library -o glib-sharp.dll --recurse '*.cs'
|
|
|
|
clean:
|
|
rm -f *.dll
|
|
rm -rf generated
|
|
|
|
install: all
|
|
cp glib-sharp.dll $(DESTDIR)@prefix@/lib || exit 1
|
|
|