mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 09:45:35 +00:00
dc9046526c
TargetEntry[], so you can use methods like TargetList.AddTextTargets() in situations where you need a TargetEntry[] rather than a TargetList. * gtk/glue/targetlist.c: glue for that svn path=/trunk/gtk-sharp/; revision=48006
34 lines
778 B
Makefile
34 lines
778 B
Makefile
lib_LTLIBRARIES = libgtksharpglue-2.la
|
|
|
|
libgtksharpglue_2_la_SOURCES = \
|
|
adjustment.c \
|
|
cellrenderer.c \
|
|
clipboard.c \
|
|
colorseldialog.c \
|
|
container.c \
|
|
nodestore.c \
|
|
object.c \
|
|
selectiondata.c \
|
|
style.c \
|
|
targetlist.c \
|
|
vmglueheaders.h \
|
|
widget.c
|
|
|
|
nodist_libgtksharpglue_2_la_SOURCES = generated.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libgtksharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgtksharpglue_2_la_LIBADD = $(GTK_LIBS)
|
|
|
|
INCLUDES = $(GTK_CFLAGS) $(GTK_SHARP_VERSION_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_2_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
./build-dll libgtksharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|