mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 15:15:39 +00:00
66c0ec1d43
* generator/CodeGenerator.cs : call ObjectGen.GenerateMapper * generator/Method.cs : Remove the if null workaround * generator/ObjectGen.cs : build a hash of object types. (GenerateMapper): generate the GtkSharp.ObjectManager class. * glib/Object.cs : use ObjectManager.CreateObject. * glue/type.c : helper for typename lookup. svn path=/trunk/gtk-sharp/; revision=6526
35 lines
585 B
Makefile
35 lines
585 B
Makefile
lib_LTLIBRARIES = libgtksharpglue.la
|
|
|
|
BASESOURCES = \
|
|
value.c \
|
|
fileselection.c \
|
|
dialog.c \
|
|
colorseldialog.c \
|
|
error.c \
|
|
event.c \
|
|
slist.c \
|
|
paned.c \
|
|
style.c \
|
|
type.c \
|
|
widget.c \
|
|
canvasitem.c
|
|
|
|
if ENABLE_GNOME
|
|
libgtksharpglue_la_SOURCES = \
|
|
$(BASESOURCES) \
|
|
program.c \
|
|
#
|
|
else
|
|
libgtksharpglue_la_SOURCES = \
|
|
$(BASESOURCES)
|
|
endif
|
|
|
|
INCLUDES = @BASE_DEPENDENCIES_CFLAGS@ -I$(top_srcdir)
|
|
|
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
./build-dll libgtksharpglue 0.1
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|