mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:55:27 +00:00
02c9fb725c
* configure.in, makefile, makefile.win32: add gnome. * doc/index.html, netdoc.xsl: Add gnome. * gdk/Event.cs: New manual wrap for GdkEvent. * generator/ClassBase.cs: Add methods GetProperty, GetPropertyRecursively, GetMethodRecursively. Move Parent property here from ObjectGen.cs. Pass this pointer into Property. * generator/Ctor.cs: Generate docs. * generator/Method.cs, Property.cs: Tag method as "new" if a Method/Property with the same name is found in the class hierarchy. * generator/SignalHandler.cs: Correctly wrap complex signal argument types. Add gnome directory. * generator/SymbolTable.cs: Add manually wrapped types hash (contains GLib.GSList and Gdk.Event). Add method IsManuallyWrapped. * glib/SList.cs: Add constructor from IntPtr. * glue/slist.c, glue/event.c: Added (field accessor glue). * glue/Makefile.am: Update. * parser/Gtk.metadata: Add new signal renames for new signals exposed by GdkEvent changes. * parser/README, parser/build.pl: Add libgnome, libgnomecanvas, libgnomeui. * parser/gapi2xml.pl: Handle literal-length array parameters, and NULL property doc strings. * sample/: Add new test GnomeHelloWorld.cs. * gnome/: Added. * parser/Gnome.metadata: Added. svn path=/trunk/gtk-sharp/; revision=5461
21 lines
533 B
Plaintext
21 lines
533 B
Plaintext
TARGETS = glib pango atk gdk gtk gnome
|
|
output_files = $(TARGETS:=-sharp-docs.html)
|
|
input_files = $(TARGETS:=-sharp-docs.xml)
|
|
stage1_files = $(TARGETS:=-sharp-docs-stage1.xml)
|
|
stage2_files = $(TARGETS:=-sharp-docs-stage2.xml)
|
|
|
|
all: $(output_files)
|
|
|
|
stage1: $(stage1_files)
|
|
|
|
clean:
|
|
rm -f $(output_files) $(stage1_files) $(stage2_files) introspect.exe
|
|
|
|
$(stage1_files): %-docs-stage1.xml: %-docs.xml netdoc_pp.pl $(input_files)
|
|
./netdoc_pp.pl $< > $@
|
|
|
|
$(output_files): %.html: %-stage2.xml netdoc.xsl
|
|
xsltproc netdoc.xsl $< > $@
|
|
|
|
|