mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-12 17:15:36 +00:00
ab2f05fa77
* configure.in : remove atk/glue/Makefile * atk/Makefile.am : comment out subdirs for now * atk/makefile.win32 : don't build glue * */glue/Makefile.am : remove generated.c from sources * */glue/makefile.win32 : remove generated.c from sources * generator/ObjectGen.cs : disable vm glue generation for now. svn path=/trunk/gtk-sharp/; revision=24850
24 lines
568 B
Makefile
24 lines
568 B
Makefile
lib_LTLIBRARIES = libgdksharpglue.la
|
|
|
|
libgdksharpglue_la_SOURCES = \
|
|
dragcontext.c \
|
|
event.c \
|
|
selection.c \
|
|
vmglueheaders.h
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libgdksharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
libgdksharpglue_la_LIBADD = $(BASE_DEPENDENCIES_LIBS)
|
|
|
|
INCLUDES = $(BASE_DEPENDENCIES_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgdksharpglue.dll: $(libgdksharpglue_la_OBJECTS) libgdksharpglue.rc libgdksharpglue.def
|
|
./build-dll libgdksharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|