mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 20:05:38 +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
565 B
Makefile
24 lines
565 B
Makefile
lib_LTLIBRARIES = libatksharpglue-3.la
|
|
|
|
libatksharpglue_3_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libatksharpglue_3_la_SOURCES = \
|
|
misc.c \
|
|
util.c \
|
|
vmglueheaders.h
|
|
|
|
nodist_libatksharpglue_3_la_SOURCES = generated.c
|
|
|
|
# Adding a new glue file?
|
|
|
|
libatksharpglue_3_la_LIBADD = $(ATK_LIBS)
|
|
|
|
INCLUDES = $(ATK_CFLAGS) $(GTK_SHARP_VERSION_CFLAGS) -I$(top_srcdir)
|
|
|
|
libatksharpglue.dll: $(libatksharpglue_3_la_OBJECTS) libatksharpglue.rc libatksharpglue.def
|
|
./build-dll libatksharpglue-3 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = win32dll.c
|