mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 06:45:43 +00:00
b9cee94a37
* gnome/Canvas.custom : PixelsPerUnit prop. * gnome/Gnome.metadata : hide Canvas.SetPixelsPerUnit. * gnome/glue/Makefile.am : get_pixels_per_unit. * gnome/glue/canvas.c : get_pixels_per_unit. * gtk/Container.custom : OnForall virtual method impl. * gtk/glue/Makefile.am : add container.c * gtk/glue/container.c : virtual method glue for forall. * gtk/glue/makefile.win32 : add container.o svn path=/trunk/gtk-sharp/; revision=26962
31 lines
609 B
Makefile
31 lines
609 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_GNOME
|
|
TARGET = libgnomesharpglue.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libgnomesharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
libgnomesharpglue_la_SOURCES = \
|
|
canvas.c \
|
|
canvasitem.c \
|
|
canvaspoints.c \
|
|
canvas-proxy.c \
|
|
canvas-proxy.h \
|
|
canvas-proxy-marshal.c \
|
|
canvas-proxy-marshal.h \
|
|
program.c \
|
|
#
|
|
|
|
libgnomesharpglue_la_LIBADD = $(GNOME_LIBS)
|
|
|
|
INCLUDES = $(GNOME_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgnomesharpglue.dll: $(libgnomesharpglue_la_OBJECTS) libgnomesharpglue.rc libgnomesharpglue.def
|
|
./build-dll libgnomesharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|