mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 16:15:39 +00:00
f4ca73fd5d
* atk/Makefile.am: include Object.custom. * atk/glue/object.c: glue to override class methods. * atk/glue/Makefile.am: include object.c. (Patch reviewed by mkestner) svn path=/trunk/gtk-sharp/; revision=99178
23 lines
573 B
Makefile
23 lines
573 B
Makefile
lib_LTLIBRARIES = libatksharpglue-2.la
|
|
|
|
libatksharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libatksharpglue_2_la_SOURCES = \
|
|
object.c \
|
|
util.c \
|
|
vmglueheaders.h
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libatksharpglue_2_la_LIBADD = $(ATK_LIBS)
|
|
|
|
INCLUDES = $(ATK_CFLAGS) $(GTK_SHARP_VERSION_CFLAGS) -I$(top_srcdir)
|
|
|
|
libatksharpglue.dll: $(libatksharpglue_2_la_OBJECTS) libatksharpglue.rc libatksharpglue.def
|
|
./build-dll libatksharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|