mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 22:55:28 +00:00
d944e97bf2
* configure.in : add test for System.Drawing. expand gtkdotnet. * Makefile.am : add gtkdotnet. * makefile.win32 : add gtkdotnet. * gtkdotnet/* : new .Net extensions assembly. Moved the sample sysdraw.cs Graphics class in here under the Gtk.DotNet namespace. * sample/sysdraw.cs : moved to gtkdotnet/Graphics.cs. * sample/drawing-sample.exe.config.in : killed. * sample/DrawingSample.cs : use Gtk.DotNet.Graphics. * sample/Makefile.am : make drawing-sample.exe build conditional on gtk-dotnet presence. svn path=/trunk/gtk-sharp/; revision=38745
21 lines
476 B
Plaintext
Executable file
21 lines
476 B
Plaintext
Executable file
DIRS=generator parser glib pango atk gdk gtk glade gtkdotnet
|
|
ROOT=/cygdrive/$(subst \,/,$(subst :\,/,$(SYSTEMROOT)))
|
|
CSC=$(ROOT)/microsoft.net/framework/v1.0.3705/csc.exe /d:WIN32
|
|
|
|
all: windows
|
|
|
|
windows:
|
|
for i in $(DIRS); do \
|
|
(cd $$i; CSC="$(CSC)" make -f makefile.win32) || exit 1;\
|
|
done;
|
|
|
|
clean:
|
|
for i in $(DIRS); do \
|
|
(cd $$i; make -f makefile.win32 clean) || exit 1;\
|
|
done;
|
|
|
|
release: clean windows
|
|
mkdir lib
|
|
find $(DIRS) -iname "*.dll" -exec cp \{\} lib \;
|
|
|