mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 04:45:37 +00:00
89afb3f49f
* generator/BoxedGen.cs: don't generate glue dependencies. * glib/*.cs: remove glibsharpglue usage except thread.c. * glib/glue/*.c: kill all but thread.c. need glib 2.20 to kill it eventually. * pango/Attr*.cs: kill glue usage. * pango/glue/*.c: kill all but generated.c. it's next. * gtk/TreeIter.custom: kill a dumb glibsharpglue usage. svn path=/trunk/gtk-sharp/; revision=121880
20 lines
489 B
Makefile
20 lines
489 B
Makefile
lib_LTLIBRARIES = libglibsharpglue-2.la
|
|
|
|
libglibsharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libglibsharpglue_2_la_SOURCES = \
|
|
thread.c
|
|
|
|
# Adding a new glue file?
|
|
|
|
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 = win32dll.c
|