2002-04-25 09:17:54 +00:00
|
|
|
lib_LTLIBRARIES = libgtksharpglue.la
|
|
|
|
|
2002-07-08 14:52:20 +00:00
|
|
|
BASESOURCES = \
|
2002-08-11 22:48:00 +00:00
|
|
|
adjustment.c \
|
2002-04-25 09:17:54 +00:00
|
|
|
value.c \
|
2002-06-24 20:38:48 +00:00
|
|
|
fileselection.c \
|
2002-07-11 13:18:36 +00:00
|
|
|
dialog.c \
|
|
|
|
colorseldialog.c \
|
2002-06-20 01:45:13 +00:00
|
|
|
error.c \
|
2002-06-26 Rachel Hestilow <hestilow@ximian.com>
* 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
2002-06-26 08:36:05 +00:00
|
|
|
event.c \
|
2002-07-19 07:54:33 +00:00
|
|
|
slist.c \
|
2002-08-03 22:24:37 +00:00
|
|
|
paned.c \
|
|
|
|
style.c \
|
2002-08-08 04:48:41 +00:00
|
|
|
type.c \
|
2002-08-12 19:14:44 +00:00
|
|
|
widget.c
|
2002-04-25 09:17:54 +00:00
|
|
|
|
2002-08-12 19:14:44 +00:00
|
|
|
GNOMESOURCES = \
|
|
|
|
canvasitem.c \
|
|
|
|
canvaspoints.c \
|
|
|
|
program.c
|
|
|
|
|
|
|
|
# fixme: Makefile.am = THE SUCK
|
2002-07-06 00:51:45 +00:00
|
|
|
if ENABLE_GNOME
|
2002-08-12 19:14:44 +00:00
|
|
|
|
|
|
|
if ENABLE_GLADE
|
2002-07-06 00:51:45 +00:00
|
|
|
libgtksharpglue_la_SOURCES = \
|
2002-07-08 14:52:20 +00:00
|
|
|
$(BASESOURCES) \
|
2002-08-12 19:14:44 +00:00
|
|
|
$(GNOMESOURCES) \
|
|
|
|
gladexml.c
|
2002-07-06 00:51:45 +00:00
|
|
|
#
|
|
|
|
else
|
2002-08-12 19:14:44 +00:00
|
|
|
libgtksharpglue_la_SOURCES = \
|
|
|
|
$(BASESOURCES) \
|
|
|
|
$(GNOMESOURCES) \
|
|
|
|
#
|
|
|
|
endif
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
if ENABLE_GLADE
|
|
|
|
libgtksharpglue_la_SOURCES = \
|
|
|
|
$(BASESOURCES) \
|
|
|
|
gladexml.c
|
|
|
|
else
|
2002-07-06 00:51:45 +00:00
|
|
|
libgtksharpglue_la_SOURCES = \
|
2002-07-08 14:52:20 +00:00
|
|
|
$(BASESOURCES)
|
2002-07-06 00:51:45 +00:00
|
|
|
endif
|
|
|
|
|
2002-08-12 19:14:44 +00:00
|
|
|
endif
|
|
|
|
|
2002-07-06 00:51:45 +00:00
|
|
|
INCLUDES = @BASE_DEPENDENCIES_CFLAGS@ -I$(top_srcdir)
|
|
|
|
|
|
|
|
|
2002-04-25 09:17:54 +00:00
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
|
|
./build-dll libgtksharpglue 0.1
|
|
|
|
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
|