144a0f9d20
* generator/CallbackGen.cs : implement new IAccessor iface so that callback fields on structs can now be accessed. * generator/ClassBase.cs : remove/abstract some methods incorrectly located here. * generator/ClassGen.cs : implement methods previously inherited from ClassBase incorrectly. * generator/HandleBase.cs : new base class for native ptr wrappers. Implements new IAccessor interface and code moved from ClassBase. * generator/IAccessor.cs : new iface to generate field/prop accessors. * generator/InterfaceGen.cs : derive from new ObjectBase. * generator/LPGen.cs : implement IAccessor. * generator/LPUGen.cs : implement IAccessor. * generator/ObjectBase.cs : new base class for Object/Iface types. * generator/ObjectGen.cs : derive from new ObjectBase. * generator/OpaqueGen.cs : derive from HandleBase. * generator/StructField.cs : refactor Generate method using new IAccessor interface. * */*.custom : add obsolete impls for some existing c_cased struct field accessors that are now StudlyNamed. svn path=/trunk/gtk-sharp/; revision=46878
64 lines
1.5 KiB
Makefile
64 lines
1.5 KiB
Makefile
SUBDIRS = . glue
|
|
|
|
if ENABLE_GNOME
|
|
pkg = gnome
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = gnome-sharp-2.0.pc
|
|
else
|
|
pkg =
|
|
endif
|
|
|
|
INCLUDE_API = ../pango/pango-api.xml ../atk/atk-api.xml ../gdk/gdk-api.xml ../gtk/gtk-api.xml ../art/art-api.xml ../gnomevfs/gnome-vfs-api.xml
|
|
METADATA = Gnome.metadata
|
|
SYMBOLS =
|
|
references = ../glib/glib-sharp.dll ../pango/pango-sharp.dll ../atk/atk-sharp.dll ../gdk/gdk-sharp.dll ../gtk/gtk-sharp.dll ../art/art-sharp.dll ../gnomevfs/gnome-vfs-sharp.dll
|
|
glue_includes = gnome.h,libgnomeprint/gnome-print.h,libgnomeprint/gnome-print-paper.h
|
|
|
|
sources = \
|
|
BonoboUIVerb.cs \
|
|
IconData.cs \
|
|
IconTheme.cs \
|
|
Modules.cs \
|
|
PanelAppletFactory.cs
|
|
|
|
customs = \
|
|
About.custom \
|
|
App.custom \
|
|
DateEdit.custom \
|
|
CanvasBpath.custom \
|
|
CanvasClipgroup.custom \
|
|
Canvas.custom \
|
|
CanvasEllipse.custom \
|
|
CanvasGroup.custom \
|
|
CanvasItem.custom \
|
|
CanvasLine.custom \
|
|
CanvasPathDef.custom \
|
|
CanvasPixbuf.custom \
|
|
CanvasPoints.custom \
|
|
CanvasPolygon.custom \
|
|
CanvasRect.custom \
|
|
CanvasRE.custom \
|
|
CanvasRichText.custom \
|
|
CanvasShape.custom \
|
|
CanvasText.custom \
|
|
CanvasWidget.custom \
|
|
Druid.custom \
|
|
DruidPageEdge.custom \
|
|
Font.custom \
|
|
FontFamily.custom \
|
|
GPFontEntry.custom \
|
|
IconList.custom \
|
|
IconTextItem.custom \
|
|
PanelApplet.custom \
|
|
Print.custom \
|
|
PrintContext.custom \
|
|
PrintDialog.custom \
|
|
PrintJob.custom \
|
|
Program.custom \
|
|
Scores.custom \
|
|
UIInfo.custom
|
|
|
|
add_dist = gnome-sharp-2.0.pc.in
|
|
|
|
include ../Makefile.include
|
|
|