mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 23:25:36 +00:00
1e97a1046f
Complete the major version jump. Gtk# 3 and 2 are now both installable within the same prefix. * */glue/Makefile.am: Produce *sharpglue-3 gluelibs. * *.custom, *.cs: pinvoke the new glue library. * *-2.0.pc.in: Rename to *-3.0.pc.in. svn path=/trunk/gtk-sharp/; revision=140941
24 lines
571 B
Makefile
24 lines
571 B
Makefile
lib_LTLIBRARIES = libgdksharpglue-3.la
|
|
|
|
libgdksharpglue_3_la_SOURCES = \
|
|
dragcontext.c \
|
|
device.c \
|
|
vmglueheaders.h
|
|
|
|
nodist_libgdksharpglue_3_la_SOURCES = generated.c
|
|
|
|
# Adding a new glue file?
|
|
|
|
libgdksharpglue_3_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgdksharpglue_3_la_LIBADD = $(GTK_LIBS)
|
|
|
|
INCLUDES = $(GTK_CFLAGS) $(GTK_SHARP_VERSION_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgdksharpglue.dll: $(libgdksharpglue_3_la_OBJECTS) libgdksharpglue.rc libgdksharpglue.def
|
|
./build-dll libgdksharpglue-3 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = win32dll.c
|