21cd2dfc14
* Thread.cs: Add GLib.Thread.Supported, should be checked to avoid doing Thread.Init() twice (Mono runtime initialises GLib threads itself, MS runtime doesn't) * glue/thread.c: g_thread_supported() is a macro, so needs glue * glue/Makefile.am: * glue/makefile.win32: Update makefiles with new glue file. svn path=/trunk/gtk-sharp/; revision=54926
28 lines
653 B
Makefile
28 lines
653 B
Makefile
lib_LTLIBRARIES = libglibsharpglue-2.la
|
|
|
|
libglibsharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libglibsharpglue_2_la_SOURCES = \
|
|
error.c \
|
|
list.c \
|
|
object.c \
|
|
slist.c \
|
|
type.c \
|
|
unichar.c \
|
|
value.c \
|
|
valuearray.c \
|
|
thread.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libglibsharpglue_2_la_LIBADD = $(GLIB_LIBS)
|
|
|
|
INCLUDES = $(GLIB_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
|